/* ============================================
   YA HALA VALET - CORPORATE DESIGN SYSTEM
   Ultra-Luxury Saudi Government Style
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Brand Colors - LOCKED */
    --primary-navy: #1a2332;
    --primary-charcoal: #2c3540;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d98e;
    --secondary-gray: #8b8680;
    --text-white: #ffffff;
    --text-soft-gray: #e5e5e5;
    --bg-dark: #0f1419;
    --bg-overlay: rgba(26, 35, 50, 0.95);

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Typography */
    --font-primary: 'Tajawal', 'Inter', -apple-system, sans-serif;
    --font-secondary: 'Inter', -apple-system, sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.25);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RTL Support */
body[dir="rtl"] {
    font-family: 'Tajawal', -apple-system, sans-serif;
}

body[dir="ltr"] {
    font-family: 'Inter', -apple-system, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ========== TYPOGRAPHY SYSTEM ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-soft-gray);
}

/* ========== LAYOUT UTILITIES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    /* Prevent animations from causing horizontal scroll */
}

/* Custom Scrollbar - Luxury Style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* Custom Selection - Gold */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--text-white);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-white);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.section-title:hover h2::after {
    width: 100px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    /* STRICT HEIGHT LOCK - Header will NOT grow */
    height: 92px;
    max-height: 92px;
    /* Luxury gold divider */
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Sticky header on scroll */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.nav-container {
    display: flex;
    justify-content: center;
    /* Centered since no logo */
    align-items: center;
    /* Height matches header exactly */
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    /* Prevent container from expanding */
    max-height: 92px;
    /* ALLOW LOGO TO OVERFLOW */
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition-fast);
    /* Allow logo to extend beyond header */
    height: auto;
    max-height: none;
}

.header-logo {
    /* HIDDEN - Logo now in hero section */
    display: none;
}



.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--primary-navy);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    /* Prevent menu from shrinking logo */
    flex-shrink: 1;
}

.nav-menu a {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
    /* Prevent menu text from overpowering logo */
    flex-shrink: 1;
    color: var(--text-white);
    /* Premium English font with better letter spacing */
    letter-spacing: 0.02em;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Enhanced font for English language - Premium Outfit Font */
html[lang="en"] .nav-menu a {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    /* Luxury gold underline for active menu */
    box-shadow: 0 1px 4px rgba(212, 175, 55, 0.3);
}

.lang-switcher {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
    margin-left: var(--spacing-md);
    padding-left: var(--spacing-md);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

body[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: var(--spacing-md);
    padding-left: 0;
    padding-right: var(--spacing-md);
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Hero starts exactly after header */
    padding-top: 92px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 35, 50, 0.92) 0%,
            rgba(44, 53, 64, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
    /* Perfect centering */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Logo - Elegant & Centered */
.hero-logo-container {
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Golden Frame - Dynamic Rotating Arcs */
.hero-logo-container::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border: 2px solid transparent;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    border-radius: 50%;
    animation: rotateFrame 8s linear infinite;
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.hero-logo-container::after {
    content: '';
    position: absolute;
    width: 290px;
    height: 290px;
    border: 1px solid transparent;
    border-left: 1px solid var(--accent-gold-light);
    border-right: 1px solid var(--accent-gold-light);
    border-radius: 50%;
    animation: rotateFrame 12s linear infinite reverse;
    opacity: 0.4;
}

/* Third Outer Ring for extra depth */
.hero-logo-container {
    padding: 45px;
}

@keyframes rotateFrame {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-logo {
    height: 180px;
    /* Adjusted to fit the frame perfectly */
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 18px rgba(212, 175, 55, 0.45)) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease;
    z-index: 5;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.6)) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.6));
}

@media (max-width: 768px) {
    .hero-logo-container::before {
        width: 140px;
        height: 140px;
    }

    .hero-logo-container::after {
        width: 155px;
        height: 155px;
    }

    .hero-logo {
        height: 120px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-sm);
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-soft-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-navy);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold-light);
    color: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

/* ========== CARDS ========== */
.card-grid {
    display: grid;
    /* 3-column layout with wider cards for detailed content */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.card {
    background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-navy));
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    /* More padding for detailed content */
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    min-height: 400px;
    /* Minimum height to accommodate text */
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.card:hover::before {
    transform: scaleX(1);
}

/* Professional Service Photography */
.card-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.3), rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card:hover .card-image::after {
    opacity: 1;
}

/* Keep icon styling for other sections */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-navy);
}

.card h3 {
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--text-soft-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Service Detail Styling */
.service-detail-ar {
    margin-top: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-soft-gray);
    text-align: right;
    direction: rtl;
    display: none;
    /* Hidden by default */
}

.service-subtitle-en {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: var(--spacing-xs);
    display: none;
    /* Hidden by default */
}

.service-detail-en {
    margin-top: var(--spacing-sm);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-soft-gray);
    text-align: left;
    direction: ltr;
    display: none;
    /* Hidden by default */
}

/* Show Arabic content when language is Arabic */
html[lang="ar"] .service-detail-ar {
    display: block;
}

/* Show English content when language is English */
html[lang="en"] .service-subtitle-en,
html[lang="en"] .service-detail-en {
    display: block;
}

/* ========== ABOUT SECTION ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-box {
    padding: var(--spacing-md);
    transition: var(--transition-smooth);
    border-radius: var(--radius-md);
    background: rgba(44, 53, 64, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(44, 53, 64, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.stat-label {
    color: var(--text-soft-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ========== VISION & MISSION ========== */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.vm-card {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.6), rgba(44, 53, 64, 0.8));
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.vm-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.vm-card:hover::before {
    opacity: 1;
}

/* Executive Label - Luxury Typography */
.vm-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(212, 175, 55, 0.6);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

/* Subtle Gold Divider */
.vm-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: var(--spacing-md) auto;
    position: relative;
    z-index: 1;
}



.vm-card h3 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.vm-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    color: var(--text-soft-gray);
}

/* ========== WHY CHOOSE US (LUXURY REDESIGN) ========== */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.why-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.why-block {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.why-block:last-child {
    border-bottom: none;
}

.why-block h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-block p {
    color: var(--text-soft-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Thin gold divider under section title */
#why .section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 15px auto 0;
    opacity: 0.6;
}

/* RTL Specific adjustments for Why Section */
body[dir="rtl"] .why-block h3 {
    text-align: right;
}

body[dir="rtl"] .why-block p {
    text-align: right;
}

/* ========== DOWNLOAD CTA SECTION - PROFESSIONAL CORPORATE DESIGN ========== */
.download-cta-section {
    margin-top: calc(var(--spacing-xl) * 1.5);
    background: linear-gradient(135deg,
            rgba(26, 35, 50, 0.6) 0%,
            rgba(44, 53, 64, 0.4) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.download-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.5) 50%,
            transparent 100%);
}

.download-cta-content {
    padding: calc(var(--spacing-xl) * 1.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    position: relative;
}

.download-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: var(--transition-smooth);
}

.download-cta-section:hover .download-icon {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.4);
}

.download-cta-section:hover .download-icon::after {
    opacity: 1;
    inset: -8px;
}

.download-cta-section h3 {
    color: var(--accent-gold);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.download-cta-section p {
    color: var(--text-soft-gray);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin: 0;
    max-width: 650px;
}

.btn-download-corporate {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
    text-decoration: none;
    margin-top: var(--spacing-sm);
}

.btn-download-corporate svg {
    transition: var(--transition-smooth);
}

.btn-download-corporate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-download-corporate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-download-corporate:hover::before {
    width: 300px;
    height: 300px;
}

.btn-download-corporate:hover svg {
    transform: translateY(2px);
}

.download-file-info {
    display: inline-block;
    font-size: 0.875rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .download-cta-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .download-icon {
        width: 64px;
        height: 64px;
    }

    .download-icon svg {
        width: 36px;
        height: 36px;
    }

    .btn-download-corporate {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .why-image {
        height: 350px;
    }
}

/* ========== PARTNERS (LUXURY SHOWCASE) ========== */
.partners-showcase {
    margin-top: var(--spacing-xl);
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.partners-full-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
    filter: brightness(0.9);
}

.partners-full-img:hover {
    filter: brightness(1);
}

/* ========== CONTACT SECTION - 2026 LUXURY SPLIT SURFACE ========== */
.contact-split-surface {
    position: relative;
    padding: calc(var(--spacing-xl) * 2) 0;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: calc(var(--spacing-xl) * 3);
    align-items: flex-start;
}

/* LEFT COLUMN: Text & Info */
.contact-text-side {
    padding-top: var(--spacing-lg);
}

.section-title-left {
    margin-bottom: calc(var(--spacing-xl) * 1.5);
}

.section-title-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 0 1rem 0;
}

.gold-accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.modern-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 90%;
}

.modern-info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-minimal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-minimal h4 {
    color: var(--accent-gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
}

.info-link,
.info-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.info-link:hover {
    color: var(--accent-gold);
}

/* RIGHT COLUMN: Modern Floating Form */
.contact-form-side {
    position: relative;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.input-group-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-group-modern label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

/* 2026 INPUT STYLE: Bottom Border Only */
.input-group-modern input,
.input-group-modern select,
.input-group-modern textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0 1rem 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-family: inherit;
    border-radius: 0;
    /* Remove default radius */
    transition: all 0.3s ease;
}

.input-group-modern input:focus,
.input-group-modern select:focus,
.input-group-modern textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
    box-shadow: 0 1px 0 0 var(--accent-gold);
}

.input-group-modern select {
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--accent-gold) 50%),
        linear-gradient(135deg, var(--accent-gold) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px,
        5px 5px;
    background-repeat: no-repeat;
    appearance: none;
}

/* Fix for Dropdown Options Visibility */
.input-group-modern select option {
    background-color: var(--primary-charcoal);
    color: var(--text-white);
    padding: 10px;
}

/* RTL Support for Select Arrow */
body[dir="rtl"] .input-group-modern select {
    background-position: 20px calc(1em + 2px), 15px calc(1em + 2px);
}

.input-group-modern textarea {
    min-height: 40px;
    resize: none;
    overflow: hidden;
}

/* BUTTON: 2026 Gold Style */
.btn-2026-gold {
    margin-top: 1rem;
    background: var(--accent-gold);
    color: var(--primary-navy);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    /* Soft rounded corners */
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    align-self: flex-start;
    min-width: 200px;
}

.btn-2026-gold:hover {
    transform: translateY(-2px);
    background: #c5a02c;
    /* Subtle darken */
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-text-side {
        text-align: center;
        padding-top: 0;
    }

    .gold-accent-line {
        margin: 0 auto 1.5rem;
    }

    .modern-info-list {
        align-items: center;
        gap: 2rem;
    }

    .info-minimal {
        align-items: center;
    }

    .modern-form {
        gap: 1.5rem;
    }
}



/* ========== FOOTER ========== */
/* ========== FOOTER (LUXURY REFINEMENT) ========== */
.footer {
    background: var(--primary-navy);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns for desktop symmetry */
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: flex-start;
}

.footer-logo-container {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    /* Center logo in column */
}

body[dir="rtl"] .footer-logo-container {
    justify-content: flex-start;
    /* Keep to the right for RTL branding */
}

.footer-logo {
    height: 90px;
    width: auto;
    display: block;
}

.footer-bio {
    color: var(--text-soft-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 350px;
    text-align: inherit;
}

.footer-section h3 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

/* Quick Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-soft-gray);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Contact Info Styling Refinement */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: var(--spacing-md);
}

.contact-line {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}



.contact-line .label {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

body[dir="rtl"] .contact-line .label {
    min-width: 110px;
}

.contact-line .value {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-stack {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Monochrome Social Links */
.social-links-monochrome {
    display: flex;
    gap: 20px;
    margin-top: var(--spacing-md);
    justify-content: flex-start;
}

body[dir="rtl"] .social-links-monochrome {
    justify-content: flex-start;
    /* Ensure consistency in RTL */
}

body[dir="rtl"] .footer-section {
    text-align: right;
}

.social-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    opacity: 0.5;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Footer Bottom Divider */
.footer-divider {
    height: 1px;
    background: var(--accent-gold);
    width: 100%;
    opacity: 0.15;
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-soft-gray);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-bio {
        margin: 0 auto;
    }

    .footer-links a::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links-monochrome {
        justify-content: center;
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {

    .about-content,
    .vision-mission-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* MOBILE HEADER HEIGHT LOCK */
    .header {
        height: 76px;
        max-height: 76px;
    }

    /* Mobile Logo - Optimal and clear */
    .header-logo {
        height: 46px;
        min-height: 42px !important;
        max-height: 46px !important;
        /* Prevent mobile logo shrinking */
        flex-shrink: 0 !important;
    }

    .nav-container {
        max-height: 76px;
    }

    .logo {
        max-height: 76px;
    }



    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--bg-overlay);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-lg);
        transition: var(--transition-smooth);
        backdrop-filter: blur(10px);
        overflow-y: auto;
        /* Allow scrolling if menu is long */
    }

    body[dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
    }

    .nav-menu.active {
        left: 0;
    }

    body[dir="rtl"] .nav-menu.active {
        left: auto;
        right: 0;
    }

    .nav-menu a {
        font-size: 1.25rem;
        padding: var(--spacing-sm) 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 0;
        margin-bottom: var(--spacing-md);
        order: -1;
        /* Move to top on mobile */
        width: 100%;
        justify-content: center;
        padding-bottom: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body[dir="rtl"] .lang-switcher {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .hero-logo {
        height: 140px;
        /* Appropriately large but mobile-friendly */
    }
}

@media (max-width: 480px) {

    /* Extra Small Mobile Logo */
    .header-logo {
        height: 44px;
    }

    :root {
        font-size: 14px;
    }

    .container,
    .container-wide {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        min-height: 80vh;
    }

    .card {
        padding: var(--spacing-md);
    }

    .vm-card {
        padding: var(--spacing-md);
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

.bg-dark {
    background: var(--bg-dark);
}

.bg-charcoal {
    background: var(--primary-charcoal);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-navy);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    z-index: 999;
}

body[dir="rtl"] .scroll-top {
    right: auto;
    left: 30px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* ========== WHATSAPP FLOATING WIDGET ========== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    z-index: 998;
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: pulse-whatsapp-gold 2s infinite;
}

@keyframes pulse-whatsapp-gold {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 4px 24px rgba(212, 175, 55, 0.7), 0 0 0 8px rgba(212, 175, 55, 0.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

body[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 90px;
        right: 20px;
    }

    body[dir="rtl"] .whatsapp-float {
        right: auto;
        left: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Site Name - Visible only on mobile */
.mobile-site-name {
    display: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

@media (max-width: 991px) {
    .mobile-site-name {
        display: block;
    }

    .nav-container {
        justify-content: space-between !important;
        /* Force space between name and burger */
    }

    /* Center Footer Contact Info on Mobile */
    .contact-line {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    /* Hide Stats on Mobile */
    .about-stats {
        display: none !important;
    }

    /* Ensure Footer Section text alignment doesn't conflict */
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}