﻿/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-dark: #0a1628;
    --primary: #0d2137;
    --primary-light: #142d4a;
    --primary-medium: #1a3a5c;

    /* Accent Colors */
    --accent: #c8a45a;
    --accent-light: #d4b76e;
    --accent-dark: #b08d3e;

    /* Secondary Accent */
    --blue-accent: #2980b9;
    --blue-light: #3498db;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #e8e8e8;
    --medium-gray: #999999;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-light: #cccccc;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 6px;
    margin-bottom: 30px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* ===== HEADER ===== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-top-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    color: var(--text-light);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    color: var(--accent) !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    padding: 0 12px;
    border: 1px solid var(--accent);
    border-radius: 2px;
}

.lang-switch:hover {
    background: var(--accent);
    color: var(--primary-dark) !important;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: var(--text-light);
    opacity: 0.7;
}

.social-links a:hover {
    color: var(--accent);
    opacity: 1;
}

/* Main Navigation */
#main-nav {
    background: rgba(13, 33, 55, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#main-nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 63px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-highlight {
    color: var(--accent);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 1;
}

.nav-item>a {
    display: block;
    padding: 26px 16px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: var(--transition-normal);
}

.nav-item>a:hover::after,
.nav-item.active>a::after {
    width: 100%;
}

.nav-item>a:hover {
    color: var(--accent);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--primary);
    border-top: 3px solid var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 14px 25px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.dropdown li a:hover {
    background: rgba(200, 164, 90, 0.1);
    color: var(--accent);
    padding-left: 30px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 22, 40, 0.4) 0%,
            rgba(10, 22, 40, 0.6) 50%,
            rgba(10, 22, 40, 0.8) 100%);
}

/* Decorative grid pattern overlay */
.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(200, 164, 90, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 90, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 35px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Animated underline on slide title */
.slide-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin-top: 25px;
    transition: width 0.6s ease 0.8s;
    width: 0;
}

.slide.active .slide-title::after {
    width: 80px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s, background 0.3s ease, transform 0.3s ease;
}

.slide.active .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 164, 90, 0.3);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 35px;
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

/* Download Profile Button */
.btn-download-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(200, 164, 90, 0.2);
}

.btn-download-profile:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 164, 90, 0.35);
}

.btn-download-profile svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-normal);
}

.btn-download-profile:hover svg {
    transform: translateY(2px);
}

/* Download button in header */
.header-download-btn {
    margin-left: 15px;
    padding: 12px 24px;
    font-size: 12px;
    white-space: nowrap;
}

html[lang="ar"] .header-download-btn,
html[dir="rtl"] .header-download-btn {
    margin-left: 0;
    margin-right: 15px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-normal);
}

.slider-dot::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    display: block;
    transition: var(--transition-normal);
}

.slider-dot.active::after {
    background: var(--accent);
    border-color: var(--accent);
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding);
}

/* ===== WHAT WE OFFER ===== */
.what-we-offer {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.what-we-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(200, 164, 90, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 90, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.what-we-offer .section-intro {
    margin-bottom: 60px;
    text-align: center;
}

.offer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.offer-columns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(200, 164, 90, 0.2), transparent);
}

.offer-column-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(200, 164, 90, 0.15);
}

.offer-column-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.08);
    border: 1px solid rgba(200, 164, 90, 0.2);
    border-radius: 4px;
    color: var(--accent);
}

.offer-column-header h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.offer-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.offer-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.offer-item-header:hover {
    padding-left: 12px;
}

.offer-item-number {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    opacity: 0.6;
    min-width: 22px;
}

.offer-item-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    flex: 1;
    transition: color 0.3s ease;
}

.offer-item-header:hover .offer-item-title {
    color: var(--accent);
}

.offer-item-toggle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 164, 90, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.offer-item.active .offer-item-toggle {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    transform: rotate(45deg);
}

.offer-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 5px 0 42px;
}

.offer-item.active .offer-item-body {
    max-height: 300px;
    padding: 0 5px 20px 42px;
}

.offer-item-body p {
    font-size: 13px;
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 14px;
}

.offer-item-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.offer-item-body ul li {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.3px;
    padding-left: 16px;
    position: relative;
    opacity: 0.8;
}

.offer-item-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.offer-cta-row {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* About Preview */
.about-preview {
    background: var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 164, 90, 0.03) 0%, transparent 70%);
}

.section-intro {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== STAGGERED ANIMATIONS ===== */
.service-card:nth-child(1) {
    animation-delay: 0s;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card:nth-child(5) {
    animation-delay: 0.4s;
}

.service-card:nth-child(6) {
    animation-delay: 0.5s;
}

.service-card:nth-child(7) {
    animation-delay: 0.6s;
}

.service-card:nth-child(8) {
    animation-delay: 0.7s;
}

.project-card:nth-child(1) {
    animation-delay: 0s;
}

.project-card:nth-child(2) {
    animation-delay: 0.1s;
}

.project-card:nth-child(3) {
    animation-delay: 0.2s;
}

.project-card:nth-child(4) {
    animation-delay: 0.3s;
}

.project-card:nth-child(5) {
    animation-delay: 0.4s;
}

.project-card:nth-child(6) {
    animation-delay: 0.5s;
}

.project-card:nth-child(7) {
    animation-delay: 0.6s;
}

.project-card:nth-child(8) {
    animation-delay: 0.7s;
}

.project-card:nth-child(9) {
    animation-delay: 0.8s;
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.15s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ===== NETWORK CANVAS ===== */
.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(200, 164, 90, 0.1);
    border: 1px solid rgba(200, 164, 90, 0.3);
    border-radius: 30px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: badgeFadeIn 1s ease 0.3s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(200, 164, 90, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 8px rgba(200, 164, 90, 0);
    }
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 164, 90, 0.03), transparent, rgba(200, 164, 90, 0.03));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(200, 164, 90, 0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #767676;
    margin-bottom: 15px;
}

.stat-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
    opacity: 0.4;
}

/* ===== VERIFIED SUPPLIERS SECTION ===== */
.verified-suppliers-section {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

.verified-suppliers-section .section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.verified-suppliers-section .section-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary);
}

.verified-suppliers-section .section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Auto-scrolling carousel container */
.suppliers-logos {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

/* Scrolling track */
.suppliers-logos-track {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
    will-change: transform;
}

/* Pause animation on hover */
.suppliers-logos:hover .suppliers-logos-track {
    animation-play-state: paused;
}

/* Keyframe for infinite scroll */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.supplier-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 118px;
    padding: 22px 28px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 0 0 210px;
    overflow: hidden;
}

.supplier-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.supplier-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.supplier-logo-item:hover .supplier-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .verified-suppliers-section {
        padding: 60px 0;
    }
    
    .verified-suppliers-section .section-title {
        font-size: 24px;
    }
    
    .suppliers-logos-track {
        gap: 18px;
        animation-duration: 20s;
    }
    
    .supplier-logo-item {
        width: 155px;
        height: 92px;
        flex-basis: 155px;
        padding: 18px 20px;
    }
    
    .supplier-logo {
        max-width: 112px;
        max-height: 46px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--off-white);
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    display: block;
    position: relative;
    overflow: hidden;
    height: 320px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.5s ease;
    z-index: 3;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
    z-index: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.2) 100%);
    z-index: 1;
    transition: var(--transition-normal);
}

.service-card:hover .service-card-bg {
    transform: scale(1.1);
}

.service-card:hover::before {
    background: linear-gradient(to top, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 22, 40, 0.3) 100%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.service-icon {
    margin-bottom: 15px;
    color: var(--accent);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    color: var(--accent-light);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    transition: var(--transition-normal);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: #b8b8b8;
    line-height: 1.6;
    transition: var(--transition-normal);
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.service-card:hover .service-desc {
    max-height: 120px;
    opacity: 1;
    color: var(--white);
    margin-bottom: 15px;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-hover-line {
    display: none;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: var(--white);
    padding: 100px 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 30px;
}

.project-tab {
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.project-tab.active,
.project-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.6) 50%, transparent 100%);
    transform: translateY(0);
    opacity: 1;
    transition: all var(--transition-normal);
}

.project-card:hover .project-info {
    background: linear-gradient(to top, rgba(10, 22, 40, 1) 0%, rgba(10, 22, 40, 0.8) 60%, transparent 100%);
    padding-bottom: 25px;
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-location {
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
}

.project-date {
    color: var(--accent);
    font-size: 14px;
    margin-top: 5px;
    font-weight: 600;
}

.projects-more {
    text-align: center;
    margin-top: 50px;
}

/* ===== SERVICE DESCRIPTIONS (Legacy - Overridden) ===== */


/* ===== STRATEGIC ALLIANCES SECTION ===== */
.alliances-section {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.alliances-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(200, 164, 90, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 90, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

.alliances-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.alliances-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.alliance-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 164, 90, 0.15);
    padding: 45px 40px;
    position: relative;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.alliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.alliance-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 164, 90, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.alliance-card:hover {
    border-color: rgba(200, 164, 90, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.alliance-card:hover::after {
    opacity: 1;
}

.alliance-icon {
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.alliance-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.alliance-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.alliance-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.alliance-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.alliance-capabilities span {
    display: inline-block;
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    border: 1px solid rgba(200, 164, 90, 0.25);
    background: rgba(200, 164, 90, 0.05);
    transition: var(--transition-fast);
}

.alliance-card:hover .alliance-capabilities span {
    border-color: rgba(200, 164, 90, 0.4);
    background: rgba(200, 164, 90, 0.1);
}

/* ===== PEOPLE SECTION ===== */
.people-section {
    background: var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.people-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(200, 164, 90, 0.05));
}

.people-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.people-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.85;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: var(--off-white);
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
}

.news-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.news-card:hover .news-image::after {
    transform: scaleX(1);
}

.news-content {
    padding: 30px;
}

.news-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 12px;
}

.news-content h3 a:hover {
    color: var(--accent);
}

.news-content p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.read-more:hover {
    color: var(--accent-dark);
}

/* ===== FOOTER ===== */
#main-footer {
    background: var(--primary-dark);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 13px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 5px;
}

.contact-info li {
    color: var(--text-light);
    font-size: 13px;
    opacity: 0.7;
}

.footer-contact-details {
    margin-top: 15px;
}

.footer-contact-details p {
    color: var(--text-light);
    font-size: 13px;
    opacity: 0.7;
}

.footer-contact-details a {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.footer-bottom {
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.js-enabled .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

.animate-on-scroll:nth-child(7) {
    transition-delay: 0.6s;
}

.animate-on-scroll:nth-child(8) {
    transition-delay: 0.7s;
}

/* ===== INNER PAGE STYLES ===== */

/* Page Banner */
.page-banner {
    height: 350px;
    background: var(--primary);
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 115px;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(200, 164, 90, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 90, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumbs a {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
}

.breadcrumbs span {
    color: var(--text-light);
    font-size: 13px;
}

.breadcrumbs .separator {
    color: var(--text-light);
    opacity: 0.5;
}

/* Inner Page Layout */
.inner-page-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    padding: 80px 0;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 130px;
    height: fit-content;
}

.sidebar-nav {
    background: var(--off-white);
    border-left: 3px solid var(--accent);
}

.sidebar-nav li a {
    display: block;
    padding: 15px 25px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: var(--primary);
    color: var(--white);
    padding-left: 30px;
}

/* Content Area */
.content-area {
    min-height: 400px;
}

.content-area h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.content-area h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.content-area p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* ===== SERVICES PAGE - INTRO ===== */
.services-page-intro {
    background: var(--off-white);
    padding: 60px 0 20px;
    text-align: center;
}

.services-intro-content {
    max-width: 850px;
    margin: 0 auto;
}

.services-intro-text {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.9;
}

/* ===== SERVICES PAGE - DETAIL CARDS ===== */
.services-detail-section {
    background: var(--off-white);
    padding: 40px 0 80px;
}

.service-detail-card {
    background: var(--white);
    position: relative;
    margin-bottom: 30px;
    padding: 45px 50px 45px 55px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.service-detail-card:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-detail-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
    transition: width 0.4s ease;
}

.service-detail-card:hover .service-detail-accent {
    width: 6px;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.08);
    border: 1px solid rgba(200, 164, 90, 0.2);
    border-radius: 4px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--accent);
    transform: scale(1.05);
}

.service-detail-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-detail-number {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.service-detail-card h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    position: relative;
}

.service-detail-card h2::after {
    display: none;
}

.service-detail-body {
    padding-left: 95px;
}

.service-detail-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--dark-gray);
    margin-bottom: 28px;
}

.service-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.service-detail-card:hover .feature-item {
    color: var(--primary);
}

.feature-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}

.feature-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 90, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover .feature-dot::after {
    opacity: 1;
}

/* ===== SERVICES PAGE - CTA ===== */
.services-cta-section {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(200, 164, 90, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 90, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.services-cta {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.services-cta h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
}

.btn-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 164, 90, 0.35);
}

/* ===== SMALL BUSINESS PACKAGES ===== */
.small-business-service-callout {
    background: var(--off-white);
    padding: 20px 0 45px;
}

.small-business-callout-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border: 1px solid rgba(13, 33, 55, 0.08);
    border-left: 4px solid var(--accent);
    padding: 34px 38px;
    box-shadow: 0 12px 36px rgba(10, 22, 40, 0.06);
}

.small-business-eyebrow,
.small-business-banner-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.small-business-callout-copy h2,
.small-business-intro-copy h2,
.included-panel h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.small-business-callout-copy h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.small-business-callout-copy p,
.small-business-intro-copy p,
.small-business-note p {
    color: var(--dark-gray);
    line-height: 1.85;
}

.small-business-callout-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 220px;
}

.small-business-callout-actions span {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
}

.small-business-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0 8px 22px rgba(200, 164, 90, 0.24);
}

.small-business-link-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(200, 164, 90, 0.35);
}

.small-business-banner {
    min-height: 430px;
    height: auto;
    padding: 190px 0 90px;
    background:
        linear-gradient(rgba(10, 22, 40, 0.78), rgba(10, 22, 40, 0.72)),
        url('../images/projects/photo-1557597774-9d273605dfa9.jpg') center/cover no-repeat;
}

.small-business-banner .page-banner-content {
    max-width: 820px;
}

.small-business-banner h1 {
    max-width: 820px;
}

.small-business-intro,
.small-business-packages,
.small-business-included {
    background: var(--off-white);
}

.small-business-intro {
    padding: 80px 0 50px;
}

.small-business-intro-grid,
.small-business-included-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 40px;
    align-items: start;
}

.small-business-intro-copy h2 {
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 18px;
}

.small-business-proof {
    display: grid;
    gap: 16px;
}

.small-business-proof div {
    background: var(--white);
    border: 1px solid rgba(13, 33, 55, 0.08);
    border-left: 4px solid var(--accent);
    padding: 22px 24px;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.04);
}

.small-business-proof strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 4px;
}

.small-business-proof span {
    color: var(--dark-gray);
    font-size: 13px;
}

.package-summary-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 42px;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 18px 48px rgba(10, 22, 40, 0.16);
}

.package-summary-strip div {
    position: relative;
    padding: 28px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.package-summary-strip div:first-child {
    border-left: 0;
}

.package-summary-strip span {
    display: block;
    margin-bottom: 9px;
    color: var(--accent-light);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-summary-strip strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.25;
}

.package-summary-strip p {
    margin: 0;
    color: var(--text-light);
    font-weight: 700;
}

.package-summary-strip .summary-featured {
    background: rgba(200, 164, 90, 0.16);
    box-shadow: inset 0 4px 0 var(--accent);
}

html[dir="rtl"] .package-summary-strip div,
html[lang="ar"] .package-summary-strip div {
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

html[dir="rtl"] .package-summary-strip div:first-child,
html[lang="ar"] .package-summary-strip div:first-child {
    border-right: 0;
}

.package-visibility-offer {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
    padding: 26px 30px;
    background:
        linear-gradient(135deg, rgba(200, 164, 90, 0.22), rgba(200, 164, 90, 0) 42%),
        var(--primary-dark);
    color: var(--white);
    border: 1px solid rgba(200, 164, 90, 0.35);
    box-shadow: 0 18px 44px rgba(10, 22, 40, 0.18);
}

.package-visibility-offer::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid var(--accent);
    pointer-events: none;
}

.package-visibility-offer span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-visibility-offer strong {
    display: block;
    max-width: 860px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.25;
}

.package-visibility-offer p {
    max-width: 820px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.small-business-packages {
    padding: 40px 0 80px;
}

.package-section-intro {
    max-width: 860px;
    margin-bottom: 38px;
    padding: 34px 38px;
    background: var(--white);
    border: 1px solid rgba(13, 33, 55, 0.08);
    border-top: 4px solid var(--accent);
    box-shadow: 0 14px 34px rgba(10, 22, 40, 0.07);
    text-align: left;
}

.package-section-intro .section-title {
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 14px;
    color: var(--primary);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
}

.package-section-intro .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    background: var(--accent);
}

.package-section-intro .section-subtitle {
    max-width: 760px;
    color: #3f4a56;
    font-size: 16px;
    line-height: 1.8;
}

html[dir="rtl"] .package-section-intro,
html[lang="ar"] .package-section-intro {
    text-align: right;
}

html[dir="rtl"] .package-section-intro .section-title::after,
html[lang="ar"] .package-section-intro .section-title::after {
    left: auto;
    right: 0;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 650px;
    background:
        linear-gradient(180deg, rgba(13, 33, 55, 0.035), rgba(255, 255, 255, 0) 130px),
        var(--white);
    border: 1px solid rgba(13, 33, 55, 0.1);
    border-top: 5px solid var(--primary-light);
    padding: 32px 28px 28px;
    box-shadow: 0 14px 38px rgba(10, 22, 40, 0.07);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(10, 22, 40, 0.13);
    border-top-color: var(--accent);
}

.tier-card-featured {
    border-top-color: var(--accent);
    box-shadow: 0 22px 58px rgba(10, 22, 40, 0.13);
}

.tier-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    padding: 7px 12px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
}

.tier-card-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-right: 88px;
}

.tier-card:not(.tier-card-featured) .tier-card-header h3 {
    padding-right: 0;
}

.tier-card-header p {
    min-height: 80px;
    color: var(--dark-gray);
    line-height: 1.75;
}

.tier-best-for {
    margin: 20px 0;
    padding: 12px 14px;
    background: rgba(200, 164, 90, 0.1);
    border-left: 3px solid var(--accent);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tier-features {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.tier-features li {
    display: flex;
    gap: 10px;
    color: var(--primary-light);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}

.tier-features li::before {
    content: '';
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.tier-price-table {
    margin-top: auto;
    border: 1px solid rgba(13, 33, 55, 0.1);
    background: rgba(245, 245, 245, 0.7);
}

.tier-row {
    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr 1fr;
    gap: 8px;
    align-items: center;
    padding: 12px 14px;
    border-top: 1px solid rgba(13, 33, 55, 0.08);
    color: var(--primary-light);
    font-size: 12px;
}

.tier-row:first-child {
    border-top: 0;
}

.tier-row-head {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.tier-row strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 13px;
}

.old-price {
    color: #8b2635;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #c0392b;
}

.package-summary-strip .old-price {
    display: inline-block;
    margin-right: 8px;
    color: #ffd6d6;
}

html[lang="ar"] .package-summary-strip .old-price,
html[dir="rtl"] .package-summary-strip .old-price {
    margin-right: 0;
    margin-left: 8px;
}

.pricing-note {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    margin-top: 28px;
    padding: 28px 30px;
    background: var(--primary);
    border-left: 4px solid var(--accent);
    box-shadow: 0 18px 44px rgba(10, 22, 40, 0.16);
}

.pricing-note p {
    color: var(--text-light);
    line-height: 1.8;
}

.price-list-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 22px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 3px;
}

.price-list-download:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.consumer-addons {
    margin-top: 36px;
    padding: 34px;
    background: var(--white);
    border: 1px solid rgba(13, 33, 55, 0.08);
    border-top: 4px solid var(--accent);
    box-shadow: 0 14px 34px rgba(10, 22, 40, 0.07);
}

.consumer-addons-header {
    max-width: 850px;
    margin-bottom: 26px;
}

.consumer-addons-header h2 {
    margin: 10px 0 12px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.25;
}

.consumer-addons-header p {
    color: var(--dark-gray);
    line-height: 1.75;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.addon-card {
    display: flex;
    flex-direction: column;
    min-height: 285px;
    padding: 22px;
    background: rgba(245, 245, 245, 0.72);
    border: 1px solid rgba(13, 33, 55, 0.09);
    border-left: 3px solid var(--accent);
}

.addon-card span {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.addon-card h3 {
    margin: 10px 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.25;
}

.addon-card p {
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.65;
}

.addon-card strong {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 22px;
}

.addon-card small {
    display: block;
    margin-top: 8px;
    color: var(--dark-gray);
    font-size: 12px;
    line-height: 1.55;
}

html[lang="ar"] .addon-card,
html[dir="rtl"] .addon-card {
    border-left: 1px solid rgba(13, 33, 55, 0.09);
    border-right: 3px solid var(--accent);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.package-card {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    background: var(--white);
    border: 1px solid rgba(13, 33, 55, 0.08);
    border-top: 4px solid var(--primary-light);
    padding: 30px 26px;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(10, 22, 40, 0.1);
    border-top-color: var(--accent);
}

.package-card-featured {
    border-top-color: var(--accent);
}

.package-count {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.package-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.package-card p {
    color: var(--dark-gray);
    line-height: 1.75;
    min-height: 100px;
}

.package-price {
    margin: 24px 0;
    padding: 18px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.package-price strong {
    font-size: 34px;
    color: var(--primary);
    line-height: 1;
}

.package-card ul {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.package-card li,
.included-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
}

.package-card li::before {
    content: '';
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.small-business-included {
    padding: 0 0 85px;
}

.included-panel,
.small-business-note {
    background: var(--white);
    border: 1px solid rgba(13, 33, 55, 0.08);
    padding: 36px;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.05);
}

.included-panel h2 {
    font-size: 26px;
    margin-bottom: 24px;
}

.included-list {
    display: grid;
    gap: 16px;
}

.small-business-note {
    background: var(--primary);
    color: var(--white);
}

.small-business-note h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.35;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.small-business-note p {
    color: var(--text-light);
    margin-bottom: 26px;
}

.small-business-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.small-business-phone-link {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.small-business-phone-link:hover {
    color: var(--accent-light);
}

.small-business-pop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    width: min(360px, calc(100vw - 32px));
    background: var(--white);
    border: 1px solid rgba(13, 33, 55, 0.12);
    border-left: 4px solid var(--accent);
    box-shadow: 0 18px 55px rgba(10, 22, 40, 0.18);
    padding: 22px 22px 20px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.small-business-pop.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.small-business-pop-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: var(--primary-light);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.small-business-pop-close:hover {
    color: var(--accent);
}

.small-business-pop-kicker {
    display: block;
    padding-right: 34px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.small-business-pop h3 {
    padding-right: 34px;
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.35;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.small-business-pop p {
    color: var(--dark-gray);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.small-business-pop a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border-radius: 3px;
}

.small-business-pop a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

html[lang="ar"] .small-business-pop,
html[dir="rtl"] .small-business-pop {
    right: auto;
    left: 24px;
    direction: rtl;
    text-align: right;
    border-left: 1px solid rgba(13, 33, 55, 0.12);
    border-right: 4px solid var(--accent);
}

html[lang="ar"] .small-business-pop-close,
html[dir="rtl"] .small-business-pop-close {
    right: auto;
    left: 10px;
}

/* Discount Announcement Bar */
.discount-announcement-bar {
    position: sticky;
    top: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 48px 10px 20px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--white);
    border-bottom: 2px solid var(--accent);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.discount-announcement-bar.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.discount-announcement-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    max-width: 1100px;
    text-align: center;
}

.discount-announcement-bar p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.discount-announcement-bar strong {
    color: var(--accent-light);
}

.discount-bar-old {
    opacity: 0.85;
    text-decoration: line-through;
}

.discount-announcement-bar-link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 3px;
    white-space: nowrap;
}

.discount-announcement-bar-link:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}

.discount-announcement-bar-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}

.discount-announcement-bar-close:hover {
    opacity: 1;
    color: var(--accent-light);
}

html[lang="ar"] .discount-announcement-bar,
html[dir="rtl"] .discount-announcement-bar {
    padding: 10px 20px 10px 48px;
    direction: rtl;
}

html[lang="ar"] .discount-announcement-bar-close,
html[dir="rtl"] .discount-announcement-bar-close {
    right: auto;
    left: 12px;
}

/* WhatsApp Float Button */
.whatsapp-float-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    width: min(290px, calc(100vw - 48px));
    padding: 13px 16px;
    background: var(--primary);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(10, 22, 40, 0.22);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 22px;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    transform: rotate(45deg);
}

.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
    color: #fff;
}

html[lang="ar"] .whatsapp-float,
html[dir="rtl"] .whatsapp-float {
    left: auto;
    right: auto;
}

html[lang="ar"] .whatsapp-float-container,
html[dir="rtl"] .whatsapp-float-container {
    left: auto;
    right: 24px;
    align-items: flex-end;
}

html[lang="ar"] .whatsapp-tooltip,
html[dir="rtl"] .whatsapp-tooltip {
    left: auto;
    right: 0;
    direction: rtl;
    text-align: right;
}

html[lang="ar"] .whatsapp-tooltip::after,
html[dir="rtl"] .whatsapp-tooltip::after {
    left: auto;
    right: 22px;
}

html[lang="ar"] .small-business-pop-kicker,
html[dir="rtl"] .small-business-pop-kicker,
html[lang="ar"] .small-business-pop h3,
html[dir="rtl"] .small-business-pop h3 {
    padding-right: 0;
    padding-left: 34px;
}

html[lang="ar"] .tier-badge,
html[dir="rtl"] .tier-badge {
    right: auto;
    left: 20px;
}

html[lang="ar"] .tier-card-header h3,
html[dir="rtl"] .tier-card-header h3 {
    padding-right: 0;
    padding-left: 88px;
}

html[lang="ar"] .tier-card:not(.tier-card-featured) .tier-card-header h3,
html[dir="rtl"] .tier-card:not(.tier-card-featured) .tier-card-header h3 {
    padding-left: 0;
}

html[lang="ar"] .tier-best-for,
html[dir="rtl"] .tier-best-for {
    border-left: 0;
    border-right: 3px solid var(--accent);
}

html[lang="ar"] .pricing-note,
html[dir="rtl"] .pricing-note {
    border-left: 0;
    border-right: 4px solid var(--accent);
}

@media (max-width: 1180px) {
    .tier-grid {
        grid-template-columns: 1fr;
    }

    .tier-card {
        min-height: 0;
    }

    .tier-card-header p {
        min-height: 0;
    }

    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-card {
        min-height: 420px;
    }
}

@media (max-width: 900px) {
    .small-business-callout-inner,
    .small-business-intro-grid,
    .small-business-included-grid {
        grid-template-columns: 1fr;
    }

    .small-business-callout-actions {
        align-items: flex-start;
        min-width: 0;
    }

    .package-summary-strip {
        grid-template-columns: 1fr;
    }

    .package-summary-strip div,
    html[dir="rtl"] .package-summary-strip div,
    html[lang="ar"] .package-summary-strip div {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    .package-summary-strip div:first-child,
    html[dir="rtl"] .package-summary-strip div:first-child,
    html[lang="ar"] .package-summary-strip div:first-child {
        border-top: 0;
    }

    .package-visibility-offer {
        margin-top: 28px;
        padding: 24px 22px;
    }

    .package-visibility-offer strong {
        font-size: 22px;
    }
}

@media (max-width: 1180px) and (min-width: 769px) {
    .logo-img {
        height: 56px;
    }

    .nav-item>a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 11px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 768px) {
    .small-business-service-callout {
        padding: 15px 0 35px;
    }

    .small-business-callout-inner {
        padding: 26px 24px;
        gap: 22px;
    }

    .small-business-callout-copy h2,
    .small-business-intro-copy h2 {
        font-size: 22px;
    }

    .small-business-banner {
        min-height: 330px;
        padding: 130px 0 70px;
    }

    .small-business-intro {
        padding: 55px 0 35px;
    }

    .small-business-packages {
        padding: 35px 0 60px;
    }

    .package-section-intro {
        padding: 28px 24px;
        margin-bottom: 30px;
    }

    .package-section-intro .section-title {
        font-size: 24px;
    }

    .package-section-intro .section-subtitle {
        font-size: 15px;
        line-height: 1.75;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        min-height: 0;
    }

    .package-card p {
        min-height: 0;
    }

    .small-business-included {
        padding-bottom: 60px;
    }

    .included-panel,
    .small-business-note {
        padding: 28px 24px;
    }

    .small-business-note h3,
    .included-panel h2 {
        font-size: 21px;
    }

    .small-business-pop {
        right: 16px;
        bottom: 16px;
        padding: 20px 18px 18px;
    }

    html[lang="ar"] .small-business-pop,
    html[dir="rtl"] .small-business-pop {
        left: 16px;
    }

    .discount-announcement-bar {
        padding: 10px 40px 10px 14px;
    }

    .discount-announcement-bar p {
        font-size: 12px;
    }

    .discount-announcement-bar-inner {
        gap: 8px 12px;
    }

    html[lang="ar"] .discount-announcement-bar,
    html[dir="rtl"] .discount-announcement-bar {
        padding: 10px 14px 10px 40px;
    }

    .whatsapp-float-container {
        bottom: 16px;
        left: 16px;
    }

    .whatsapp-tooltip {
        width: min(260px, calc(100vw - 32px));
        font-size: 12px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
    }

    html[lang="ar"] .whatsapp-float-container,
    html[dir="rtl"] .whatsapp-float-container {
        left: auto;
        right: 16px;
    }

    .pricing-note {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .consumer-addons {
        padding: 28px 24px;
    }

    .consumer-addons-header h2 {
        font-size: 23px;
    }

    .addon-grid {
        grid-template-columns: 1fr;
    }

    .tier-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .tier-row-head {
        display: none;
    }
}

/* Services Page Grid (Legacy - kept for reference) */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 80px 0;
}

.service-page-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.service-page-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.service-page-card:hover .service-page-card-bg {
    transform: scale(1.1);
}

.service-page-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.service-page-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.mv-card {
    padding: 40px;
    background: var(--off-white);
    position: relative;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 40px;
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--light-gray);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info-wrapper {
    padding: 40px;
}

.contact-info-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-info-block p {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.8;
}

.contact-info-block a {
    color: var(--accent);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alliances-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-page-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-card {
        padding: 35px 35px 35px 45px;
    }

    .service-detail-body {
        padding-left: 0;
    }

    .service-detail-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        display: block;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: flex-end;
        padding: 8px 0;
    }

    .top-bar-right {
        gap: 15px;
    }

    .social-links {
        display: none;
    }

    .nav-content {
        height: 65px;
    }

    .header-download-btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        background: var(--primary);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-item>a {
        padding: 16px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        border-top: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        display: none;
    }

    .has-dropdown.mobile-open .dropdown {
        display: block;
    }

    .slide-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 250px;
    }

    /* Disable hover effects on mobile - show content by default */
    .service-desc {
        max-height: none;
        opacity: 0.9;
        margin-bottom: 12px;
    }

    .service-link {
        display: none;
        /* Hide "Learn More" on mobile to prevent overlap */
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-item::after {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .alliances-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        height: 250px;
        margin-top: 65px;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .what-we-offer {
        padding: 60px 0 50px;
    }

    .offer-columns {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .offer-columns::before {
        display: none;
    }

    .offer-item-body ul {
        grid-template-columns: 1fr;
    }

    .section-title,
    .section-title-dark {
        font-size: 22px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 25px 20px 25px 30px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-detail-icon {
        width: 55px;
        height: 55px;
    }

    .service-detail-card h2 {
        font-size: 18px;
    }

    .service-detail-body {
        padding-left: 0;
    }

    .service-detail-features {
        grid-template-columns: 1fr;
    }

    .services-cta h2 {
        font-size: 22px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .offer-column-header h3 {
        font-size: 13px;
    }

    .offer-item-title {
        font-size: 13px;
    }

    .slide-title {
        font-size: 22px;
    }

    .slider-controls {
        bottom: 30px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .container {
        padding: 0 20px;
    }
}


/* ===== ARABIC / RTL SUPPORT ===== */
html[lang="ar"],
html[dir="rtl"] {
    direction: rtl;
}

html[lang="ar"] body,
html[dir="rtl"] body {
    text-align: right;
    font-family: 'Tajawal', 'Cairo', 'Almarai', sans-serif;
}

/* RTL Navigation */
html[lang="ar"] .nav-content,
html[dir="rtl"] .nav-content {
    flex-direction: row-reverse;
}

html[lang="ar"] .nav-menu,
html[dir="rtl"] .nav-menu {
    direction: rtl;
    flex-direction: row;
}

html[lang="ar"] .top-bar-content,
html[dir="rtl"] .top-bar-content {
    flex-direction: row-reverse;
}

html[lang="ar"] .top-bar-left,
html[dir="rtl"] .top-bar-left {
    order: 2;
}

html[lang="ar"] .top-bar-right,
html[dir="rtl"] .top-bar-right {
    order: 1;
}

/* RTL Dropdowns */
html[lang="ar"] .dropdown,
html[dir="rtl"] .dropdown {
    left: auto;
    right: 0;
}

/* RTL Logo */
html[lang="ar"] .logo,
html[dir="rtl"] .logo {
    margin-left: 0;
    margin-right: auto;
}

/* RTL Sections */
html[lang="ar"] .section-intro,
html[dir="rtl"] .section-intro {
    text-align: right;
}

html[lang="ar"] .section-title,
html[lang="ar"] .section-title-dark,
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-title-dark {
    text-align: right;
}

/* RTL Footer */
html[lang="ar"] .footer-grid,
html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[lang="ar"] .footer-col,
html[dir="rtl"] .footer-col {
    text-align: right;
}

/* RTL Buttons and Links */
html[lang="ar"] .btn,
html[dir="rtl"] .btn {
    direction: rtl;
}

/* RTL Lists */
html[lang="ar"] ul,
html[dir="rtl"] ul {
    padding-right: 20px;
    padding-left: 0;
}

/* RTL Mobile Menu */
@media (max-width: 768px) {

    html[lang="ar"] .nav-menu,
    html[dir="rtl"] .nav-menu {
        left: auto;
        right: 0;
        transform: translateX(100%);
    }

    html[lang="ar"] .nav-menu.open,
    html[dir="rtl"] .nav-menu.open {
        transform: translateX(0);
    }
}

/* RTL Offer Items */
html[lang="ar"] .offer-item-body ul li::before,
html[dir="rtl"] .offer-item-body ul li::before {
    left: auto;
    right: 0;
}

html[lang="ar"] .offer-item-body ul li,
html[dir="rtl"] .offer-item-body ul li {
    padding-left: 0;
    padding-right: 16px;
}

html[lang="ar"] .offer-item-header,
html[dir="rtl"] .offer-item-header {
    flex-direction: row-reverse;
}

html[lang="ar"] .offer-column-header,
html[dir="rtl"] .offer-column-header {
    flex-direction: row-reverse;
}

/* RTL Service Cards */
html[lang="ar"] .service-card-content,
html[dir="rtl"] .service-card-content {
    text-align: right;
}

html[lang="ar"] .services-grid,
html[dir="rtl"] .services-grid {
    direction: rtl;
}

/* RTL Stats */
html[lang="ar"] .stat-item::after,
html[dir="rtl"] .stat-item::after {
    right: auto;
    left: 0;
}

/* RTL Breadcrumbs */
html[lang="ar"] .breadcrumbs,
html[dir="rtl"] .breadcrumbs {
    flex-direction: row-reverse;
}

/* RTL Contact Info */
html[lang="ar"] .contact-info,
html[dir="rtl"] .contact-info {
    text-align: right;
}

html[lang="ar"] .contact-grid,
html[dir="rtl"] .contact-grid {
    direction: rtl;
}

/* RTL Sidebar */
html[lang="ar"] .inner-page-content,
html[dir="rtl"] .inner-page-content {
    flex-direction: row-reverse;
}

html[lang="ar"] .sidebar,
html[dir="rtl"] .sidebar {
    border-left: none;
    border-right: 1px solid var(--light-gray);
    padding-left: 0;
    padding-right: 30px;
}

/* RTL Project Cards */
html[lang="ar"] .projects-grid,
html[dir="rtl"] .projects-grid {
    direction: rtl;
}

/* RTL Alliance Cards */
html[lang="ar"] .alliance-card::before,
html[dir="rtl"] .alliance-card::before {
    left: auto;
    right: 0;
}

/* RTL Hero Content */
html[lang="ar"] .slide-content,
html[dir="rtl"] .slide-content {
    text-align: right;
}

html[lang="ar"] .slide-title,
html[dir="rtl"] .slide-title {
    text-align: right;
}

/* RTL Mobile Menu */
@media (max-width: 768px) {

    html[lang="ar"] .nav-menu,
    html[dir="rtl"] .nav-menu {
        transform: translateX(100%);
    }

    html[lang="ar"] .nav-menu.open,
    html[dir="rtl"] .nav-menu.open {
        transform: translateX(0);
    }
}

/* ===== ACCESSIBILITY & SECURITY IMPROVEMENTS ===== */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    right: 0;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 999999;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--primary-dark);
    outline-offset: 2px;
}

/* Focus Indicators - Keyboard Navigation */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Remove default outline only when using mouse */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Touch target minimums */
.mobile-toggle {
    min-height: 44px;
}

.lang-switch {
    min-height: 28px;
}

.footer-social a {
    min-height: 44px;
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
    background-color: #fff8f8;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
}

.form-error-msg {
    color: #c0392b;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-error-msg.visible {
    display: block;
}

/* Preloader - faster */
#preloader {
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* font-display swap fallback */
@font-face {
    font-display: swap;
}

/* Improved color contrast for gray text */
.section-subtitle {
    color: #767676;
}

.service-desc,
.project-location {
    color: #555555;
}

/* Better touch targets on mobile */
@media (max-width: 768px) {

    .nav-menu li a,
    .dropdown li a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 12px 20px;
    }

    .project-tab {
        min-height: 44px;
        padding: 10px 18px;
    }

    .slider-arrow {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Smooth image loading */
img {
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 1rem;
}

/* Security: prevent text selection on decorative elements */
.network-canvas,
.slide-bg,
.service-card-bg {
    user-select: none;
    pointer-events: none;
}

/* Slider Pause Button */
.slider-pause-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.slider-pause-btn:hover,
.slider-pause-btn[aria-pressed="true"] {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

/* Alert / Form Messages */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert[hidden] {
    display: none;
}
/* Arabic navigation cleanup */
html[lang="ar"] .nav-menu,
html[dir="rtl"] .nav-menu {
    direction: rtl;
    flex-direction: row;
}

html[lang="ar"] .header-download-btn,
html[dir="rtl"] .header-download-btn {
    display: none !important;
}
html[lang="ar"] .hero-buttons,
html[dir="rtl"] .hero-buttons {
    justify-content: flex-start;
    direction: rtl;
}

html[lang="ar"] .btn-download-profile:not(.header-download-btn),
html[dir="rtl"] .btn-download-profile:not(.header-download-btn) {
    flex-direction: row-reverse;
}

/* CSP inline style migrations */
.csp-style-001 { margin-top: 60px; }
.csp-style-002 { display: none; padding: 15px; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-radius: 4px; margin-bottom: 20px; }
.csp-style-003 { display: none; padding: 15px; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-radius: 4px; margin-bottom: 20px; }
.csp-style-004 { display:none; }
.csp-style-005 { opacity:1; transform:none; }
.csp-style-006 { border-bottom: none; }
.csp-style-007 { margin-top: 10px; }
.csp-style-008 { border-color: var(--light-gray); color: var(--primary); }
.csp-style-009 { background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a1628 100%); }
.csp-style-010 { background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%); }
.csp-style-011 { background: linear-gradient(135deg, #0a1628 0%, #142d4a 50%, #0a1628 100%); }
.csp-style-012 { background: linear-gradient(135deg, #0d2137 0%, #0a3020 50%, #0d2137 100%); }
.csp-style-013 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%); }
.csp-style-014 { color: var(--dark-gray); max-width: 700px; margin: 0 auto 50px; text-align: center; }
.csp-style-015 { background: linear-gradient(135deg, #0d2137, #1a3a5c); }
.csp-style-016 { background: linear-gradient(135deg, #142d4a, #0d2137); }
.csp-style-017 { background: linear-gradient(135deg, #1a3a5c, #142d4a); }
.csp-style-018 { background: linear-gradient(135deg, #0d2137, #142d4a); }
.csp-style-019 { background: linear-gradient(135deg, #142d4a, #1a3a5c); }
.csp-style-020 { background: linear-gradient(135deg, #1a3a5c, #0d2137); }
.csp-style-021 { text-align: center; max-width: 800px; margin: 0 auto 30px; }
.csp-style-022 { background: linear-gradient(135deg, #1a3a5c, #0d2137); background-size: cover; background-position: center; }
.csp-style-023 { background: linear-gradient(135deg, #142d4a, #1a3a5c); background-size: cover; background-position: center; }
.csp-style-024 { background: linear-gradient(135deg, #0a3020, #142d4a); background-size: cover; background-position: center; }
.csp-style-025 { background: linear-gradient(135deg, #1a1a2e, #16213e); background-size: cover; background-position: center; }
.csp-style-026 { background: linear-gradient(135deg, #0d2137, #0a1628); background-size: cover; background-position: center; }
.csp-style-027 { max-width: 750px; margin: 0 auto 50px; text-align: center; }
.csp-style-028 { background: linear-gradient(135deg, #0a3020, #142d4a); }
.csp-style-029 { padding: 80px 0; }
.csp-style-030 { text-align: center; margin-bottom: 40px; }
.csp-style-031 { max-width: 800px; margin: 0 auto; }
.csp-style-032 { margin-bottom: 50px; flex-wrap: wrap; }
.csp-style-033 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.csp-style-034 { background: linear-gradient(135deg, #0d2137, #0a1628); }
.csp-style-035 { background: linear-gradient(135deg, #16213e, #1a3a5c); }
.csp-style-036 { background: linear-gradient(135deg, #0a1628, #0d2137); }
.csp-style-037 { background: linear-gradient(135deg, #142d4a, #0a3020); }
.csp-style-038 { margin: 20px 0 20px 20px; color: var(--dark-gray); }
.csp-style-039 { margin-bottom: 12px; padding-left: 10px; border-left: 3px solid var(--accent); }
.csp-style-040 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 30px; }
.csp-style-041 { background: var(--off-white); padding: 30px; border-left: 4px solid var(--accent); }
.csp-style-042 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.csp-style-043 { font-size: 14px; color: var(--dark-gray); margin: 0; }
.csp-style-044 { font-size: 12px; color: var(--medium-gray); margin: 8px 0 0 0; font-style: italic; }
.csp-style-045 { background: var(--primary); color: var(--white); padding: 40px; margin-top: 25px; border-radius: 2px; position: relative; }
.csp-style-046 { position: absolute; top: 20px; left: 20px; width: 40px; height: 40px; border-left: 3px solid var(--accent); border-top: 3px solid var(--accent); }
.csp-style-047 { position: absolute; bottom: 20px; right: 20px; width: 40px; height: 40px; border-right: 3px solid var(--accent); border-bottom: 3px solid var(--accent); }
.csp-style-048 { font-style: italic; font-size: 16px; line-height: 1.8; color: var(--text-light); margin: 0; padding: 10px 20px; }
.csp-style-049 { margin-top: 25px; }
.csp-style-050 { opacity:1;transform:none; }
.csp-style-051 { color:#c0392b; }
.csp-style-052 { background: linear-gradient(135deg, #1a3a5c, #0d2137); background-size: cover; background-position: center; }
.csp-style-053 { background: linear-gradient(135deg, #142d4a, #1a3a5c); background-size: cover; background-position: center; }
.csp-style-054 { background: linear-gradient(135deg, #0a3020, #142d4a); background-size: cover; background-position: center; }
.csp-style-055 { background: linear-gradient(135deg, #1a1a2e, #16213e); background-size: cover; background-position: center; }
.csp-style-056 { background: linear-gradient(135deg, #0d2137, #0a1628); background-size: cover; background-position: center; }
.csp-style-057 { margin-bottom: 12px; padding-right: 10px; border-right: 3px solid var(--accent); }
.csp-style-058 { background: var(--off-white); padding: 30px; border-right: 4px solid var(--accent); }
.csp-style-059 { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-right: 3px solid var(--accent); border-top: 3px solid var(--accent); }
.csp-style-060 { position: absolute; bottom: 20px; left: 20px; width: 40px; height: 40px; border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent); }
.csp-style-061 { line-height: 2; }
.csp-style-062 { max-width: 200px; border: 2px solid #ddd; padding: 10px; }
.csp-style-063 { margin-top: 10px; font-size: 12px; }
.csp-style-064 { display: inline-block; background: #0d2137; color: white; padding: 10px 20px; border-radius: 5px; }

/* Arabic 404 page styles */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
}

.error-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}


/* ===== NEWS PAGE STYLES - MODERNIZED ===== */
.news-page-section {
    background: linear-gradient(to bottom, #fafafa 0%, var(--off-white) 100%);
    padding: 80px 0;
}

.news-article {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    margin-bottom: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.news-article:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.news-article.featured {
    border-left: 5px solid var(--accent);
    background: linear-gradient(to right, rgba(200, 164, 90, 0.02) 0%, white 100%);
}

.news-article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.news-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(200, 164, 90, 0.3);
    transition: all 0.3s ease;
}

.news-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 164, 90, 0.4);
}

.news-date {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date::before {
    content: '📅';
    font-size: 0.85rem;
}

.news-article h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.news-article:hover h2 {
    color: var(--accent);
}

.news-meta {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-gray);
    font-weight: 500;
}

.news-content {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
}

.news-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.7;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
    background: rgba(200, 164, 90, 0.03);
    padding: 20px;
    border-radius: 6px;
}

.news-content p {
    margin-bottom: 22px;
}

.news-content em {
    color: var(--medium-gray);
    font-size: 0.95rem;
    font-style: italic;
}

.news-grid-section {
    margin-top: 50px;
}

.news-grid-section .section-subtitle {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* News Card Enhancements */
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.news-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}

.news-card .news-image {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-card .news-content {
    padding: 30px;
}

.news-card .news-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.news-card .news-date::before {
    display: none;
}

.news-card h3 {
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.news-card h3 a {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    display: block;
}

.news-card:hover h3 a {
    color: var(--accent);
}

.news-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.news-card .read-more {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-card .read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.news-card:hover .read-more::after {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .news-article {
        padding: 35px 25px;
        border-radius: 8px;
    }
    
    .news-article h2 {
        font-size: 1.8rem;
    }
    
    .news-article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .news-content {
        font-size: 1rem;
    }
    
    .news-content .lead {
        font-size: 1.1rem;
        padding: 15px;
    }
}
