/* ============================================
    CSS VARIABLES & ROOT CONFIGURATION
============================================ */
:root {
    /* Color Palette */
    --primary-bg: #D6C7A2;
    --secondary-bg: #E8DCC0;
    --tertiary-bg: #F5F0E6;
    --dark-navy: #22334F;
    --dark-navy-light: #2d4062;
    --dark-navy-deep: #1a2538;
    --accent-gold: #C8AC6E;
    --accent-gold-light: #D4BE8A;
    --accent-gold-dark: #B89A5A;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(34, 51, 79, 0.08);
    --shadow-md: 0 4px 16px rgba(34, 51, 79, 0.12);
    --shadow-lg: 0 8px 32px rgba(34, 51, 79, 0.16);
    --shadow-xl: 0 16px 48px rgba(34, 51, 79, 0.2);
    --shadow-gold: 0 8px 24px rgba(200, 172, 110, 0.3);
    
    /* Typography */
    --font-Mawzoon: 'Mawzoon', sans-serif;
    --font-primary: 'Jozoor', sans-serif;
    --font-secondary: 'IBM Plex Sans Arabic', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
    GLOBAL RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}
@font-face{
    font-family: "Jozoor";
    src: url('../fonts/JozoorFont.otf') format('opentype');
}
@font-face{
    font-family: "Mawzoon";
    src: url('../fonts/Mawzoon-Normal.otf') format('opentype');
}
.mawzoon{
    font-family: var(--font-Mawzoon);
}
.jozoor{
    font-family: var(--font-primary);
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--dark-navy);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Selection Color */
::selection {
    background: var(--accent-gold);
    color: var(--dark-navy);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--dark-navy);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--tertiary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 6px;
    border: 2px solid var(--tertiary-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-dark);
}


/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    width: fit-content;
}

:dir(rtl) .language-switcher {
    left: 30px;
}

:dir(ltr) .language-switcher {
    right: 30px;
}

.language-switcher-toggle {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 
                0 2px 8px rgba(102, 126, 234, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 65px;
    height: 50px;
}

.language-switcher-toggle::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.language-switcher-toggle:hover::before {
    opacity: 1;
}

.language-switcher-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.25);
}

.language-switcher-toggle:active {
    transform: translateY(-1px) scale(0.98);
}

.language-switcher-toggle[aria-expanded="true"] {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(102, 126, 234, 0.2);
}

.language-switcher-toggle .flag-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chevron-icon {
    color: #667eea;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.65;
    flex-shrink: 0;
}

.language-switcher-toggle:hover .chevron-icon {
    opacity: 1;
    color: #5568d3;
}

.language-switcher-toggle[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: #5568d3;
}

.language-menu {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 24px rgba(102, 126, 234, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(102, 126, 234, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(12px) scale(0.95);
    transform-origin: bottom center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    min-width: 140px;
}

.language-menu::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-right: 1.5px solid rgba(102, 126, 234, 0.2);
    border-bottom: 1.5px solid rgba(102, 126, 234, 0.2);
    z-index: -1;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: all;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.language-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.04));
    padding-left: 22px;
}

.language-option:hover::before {
    transform: translateX(0);
}

.language-option:active {
    transform: scale(0.98);
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.08));
}

.language-option .flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.language-option:hover .flag-icon {
    border-color: rgba(102, 126, 234, 0.4);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.language-label {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

.language-option:hover .language-label {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 20px;
    }
    
    :dir(rtl) .language-switcher {
        left: 20px;
    }
    
    :dir(ltr) .language-switcher {
        right: 20px;
    }
    
    .language-switcher-toggle {
        height: 46px;
        min-width: 60px;
        padding: 10px 14px;
    }
    
    .language-switcher-toggle .flag-icon {
        width: 24px;
        height: 24px;
    }
    
    .language-option {
        padding: 12px 16px;
    }
    
    .language-option .flag-icon {
        width: 26px;
        height: 26px;
    }
    
    .language-label {
        font-size: 13px;
    }
}

/* Animation for menu items */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-menu.show .language-option {
    animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.language-menu.show .language-option:nth-child(1) {
    animation-delay: 0.05s;
}

.language-menu.show .language-option:nth-child(2) {
    animation-delay: 0.1s;
}

/* ============================================
    NAVIGATION BAR - ADVANCED
============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-deep) 100%);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(34, 51, 79, 0.98);
    box-shadow: var(--shadow-xl);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: transform var(--transition-base);
    position: relative;
    margin-right: 0;
    margin-left: 20px;
}

@media(max-width:767px){
    .navbar-brand img{
        width: 60px;
    }
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem !important;
    position: relative;
    transition: all var(--transition-base);
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: rgba(200, 172, 110, 0.1);
    border-radius: 8px;
    transition: width var(--transition-base);
    z-index: -1;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(200, 172, 110, 0.15);
}

/* Hamburger Menu Enhancement */
.navbar-toggler {
    border: 2px solid var(--accent-gold);
    padding: 0.5rem 0.8rem;
    transition: all var(--transition-base);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(200, 172, 110, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C8AC6E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
    HERO SECTION - CINEMATIC
============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
       
        url('../assets/herobg.webp') center/cover no-repeat fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 172, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 172, 110, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--dark-navy-deep));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 172, 110, 0.15);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
    backdrop-filter: blur(10px);
}
:dir(rtl) .hero-badge {
    font-size: 0.9rem;
}
:dir(ltr) .hero-badge {
    font-size: 0.7rem;
}
.hero-title {
    font-family: var(--font-primary);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
:dir(rtl) .hero-title{
    font-size: clamp(2rem, 6vw, 3rem);

}
:dir(rtl) .hero-title span {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-size: clamp(2.5rem, 6vw, 5rem);

}
:dir(ltr) .hero-title span {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-size: clamp(2.5rem, 6vw, 4rem);

}
:dir(ltr) .hero-title{
    font-size: clamp(1.5rem, 6vw, 2.5rem);

}
.hero-description {
    font-family: var(--font-secondary);    
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
:dir(rtl) .hero-description{
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}
:dir(ltr) .hero-description{
    font-size: clamp(.9rem, 2vw, 1.2rem);
}
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ============================================
    BUTTON SYSTEM - PROFESSIONAL
============================================ */
.btn-custom {
    position: relative;
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
    letter-spacing: 0.3px;
    z-index: 1;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--dark-navy);
    box-shadow: 0 8px 24px rgba(200, 172, 110, 0.4);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    z-index: -1;
    transition: opacity var(--transition-base);
    opacity: 0;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 172, 110, 0.5);
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-primary-custom:active {
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--accent-gold);
    box-shadow: 0 8px 24px rgba(200, 172, 110, 0.2);
}

.btn-secondary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    z-index: -1;
    transition: transform var(--transition-base);
    transform: scaleX(0);
    transform-origin: right;
}

.btn-secondary-custom:hover {
    color: var(--dark-navy);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 172, 110, 0.4);
}

.btn-secondary-custom:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================
    SECTION ARCHITECTURE
============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.section-bg-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
    pointer-events: none;
}

.section-bg-decoration.top-left {
    top: -200px;
    left: -200px;
    background: var(--accent-gold);
}

.section-bg-decoration.bottom-right {
    bottom: -200px;
    right: -200px;
    background: var(--dark-navy);
}

/* ============================================
    ABOUT SECTION - PREMIUM LAYOUT
============================================ */
.about-section {
    background: linear-gradient(135deg, #FAFBFD 0%, #F0F3F8 50%, #E8EDF5 100%);
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

/* Animated Background Decorations */
.section-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.section-bg-decoration.top-left {
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 172, 110, 0.15) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

.section-bg-decoration.bottom-right {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 51, 79, 0.08) 0%, transparent 70%);
    animation: float 30s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(30px, -30px) scale(1.05);
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Pattern Overlay */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(200, 172, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 51, 79, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* About Content Grid */
.about-content {
    display: grid;
    gap: 5rem;
    align-items: center;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    opacity: 0;
    animation: fadeInLeft 1s ease-out 0.2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Image Frame Effect */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(200, 172, 110, 0.3);
    border-radius: 32px;
    z-index: 3;
    transition: border-color var(--transition-smooth);
}

.about-image-wrapper:hover::after {
    border-color: var(--accent-gold);
}

/* Gradient Overlay */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(200, 172, 110, 0.25) 0%, 
        rgba(34, 51, 79, 0.15) 50%,
        transparent 100%);
    z-index: 2;
    transition: opacity var(--transition-smooth);
}

.about-image-wrapper:hover::before {
    opacity: 0.3;
}

.about-image-wrapper img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 1;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Experience Badge */
.about-image-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, rgba(34, 51, 79, 0.95) 0%, rgba(34, 51, 79, 0.98) 100%);
    color: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(200, 172, 110, 0.3);
    z-index: 4;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-smooth);
    min-width: 180px;
}

.about-image-wrapper:hover .about-image-badge {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-gold);
}

.about-image-badge h4 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.about-image-badge p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Text Content */
.about-text-content {
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.4s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Header */
.section-header {
    margin-bottom: 2.5rem;
}

.section-header.text-start {
    text-align: right;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.2rem;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, rgba(200, 172, 110, 0.1), transparent);
    border-radius: 50px;
}

.section-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--dark-navy);
    line-height: 1.3;
    margin-bottom: 0;
}

/* Paragraphs */
.about-text-content > p {
    font-family: var(--font-secondary);
    font-size: 1.12rem;
    line-height: 2.1;
    color: rgba(34, 51, 79, 0.8);
    margin-bottom: 1.8rem;
    font-weight: 500;
    position: relative;
   
}
:dir(rtl) .about-text-content > p{
    padding-right: 1.5rem;
}
:dir(ltr) .about-text-content > p{
    padding-left: 1.5rem;
}
.about-text-content > p::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: linear-gradient(180deg, var(--accent-gold), transparent);
    border-radius: 2px;
}
:dir(rtl) .about-text-content > p::before{
    right: 0;   
}
:dir(ltr) .about-text-content > p::before{
    left: 0;   
}
.about-text-content > p:first-of-type {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(34, 51, 79, 0.9);
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Gradient Background on Hover */
.about-feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(200, 172, 110, 0.08) 0%, 
        rgba(34, 51, 79, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-feature-item:hover::before {
    opacity: 1;
}

.about-feature-item:hover {
    background: var(--white);
    border-color: var(--accent-gold);
    transform: translateX(-8px);
    box-shadow: var(--shadow-lg);
}

/* Icon Wrapper */
.about-feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(200, 172, 110, 0.25);
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.about-feature-item:hover .about-feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(200, 172, 110, 0.4);
}

.about-feature-icon {
    font-size: 1.6rem;
    color: var(--dark-navy);
    transition: transform var(--transition-base);
}

.about-feature-item:hover .about-feature-icon {
    transform: scale(1.1);
}

/* Feature Text */
.about-feature-text {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color var(--transition-base);
}

.about-feature-item:hover .about-feature-text {
    color: var(--dark-navy);
}

/* Stats Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-image-badge h4 {
    animation: countUp 0.6s ease-out 0.8s backwards;
}

.about-image-badge p {
    animation: countUp 0.6s ease-out 1s backwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-text-content {
        animation: fadeInUp 1s ease-out 0.4s forwards;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about-content {
        gap: 3rem;
    }

    .about-image-wrapper img {
        height: 450px;
    }

    .about-image-badge {
        bottom: 25px;
        right: 25px;
        padding: 1.5rem 2rem;
    }

    .about-image-badge h4 {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-feature-item {
        padding: 1.25rem 1.5rem;
    }

    .about-feature-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .about-feature-icon {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text-content > p {
        font-size: 1.05rem;
    }
}

/* Accessibility */
.about-feature-item:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
    VISION MISSION VALUES - MODERN CARDS
============================================ */
.vmv-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--secondary-bg) 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.vmv-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 172, 110, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.vmv-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 51, 79, 0.03) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1.5rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.section-subtitle::before {
    right: 100%;
    transform: translateY(-50%);
}

.section-subtitle::after {
    left: 100%;
    transform: translateY(-50%) scaleX(-1);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: rgba(34, 51, 79, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* VMV Grid */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .vmv-grid {
        gap: 2.5rem;
    }
}

/* VMV Card */
.vmv-card {
    position: relative;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.vmv-card:nth-child(1) { animation-delay: 0.1s; }
.vmv-card:nth-child(2) { animation-delay: 0.2s; }
.vmv-card:nth-child(3) { animation-delay: 0.3s; }

/* Gradient Background Effect */
.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(200, 172, 110, 0.03) 0%, 
        rgba(34, 51, 79, 0.02) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

/* Decorative Elements */
.vmv-card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(200, 172, 110, 0.08) 0%, transparent 60%);
    transition: transform var(--transition-slow);
    pointer-events: none;
}

.vmv-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.vmv-card:hover::before {
    opacity: 1;
}

.vmv-card:hover::after {
    transform: scale(1.3) rotate(45deg);
}

/* Icon Wrapper */
.vmv-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 12px 28px rgba(200, 172, 110, 0.25);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vmv-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.vmv-card:hover .vmv-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 16px 36px rgba(200, 172, 110, 0.4);
}

.vmv-card:hover .vmv-icon-wrapper::before {
    opacity: 1;
}

.vmv-icon {
    font-size: 2.75rem;
    color: var(--dark-navy);
    transition: transform var(--transition-base);
    position: relative;
    z-index: 1;
}

.vmv-card:hover .vmv-icon {
    transform: scale(1.1);
}

/* Content */
.vmv-content {
    position: relative;
    z-index: 1;
}

.vmv-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.vmv-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transition: width var(--transition-smooth);
}

.vmv-card:hover .vmv-title::after {
    width: 60%;
}

.vmv-text {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(34, 51, 79, 0.8);
    font-weight: 500;
}

/* Decorative Number Badge */
.vmv-badge {
    position: absolute;
    top: 2rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(200, 172, 110, 0.1), rgba(200, 172, 110, 0.05));
    border: 2px solid rgba(200, 172, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-gold);
    transition: all var(--transition-base);
}
:dir(rtl) .vmv-badge{
    left: 2rem;
}
:dir(ltr) .vmv-badge{
    right: 2rem;
}
.vmv-card:hover .vmv-badge {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--dark-navy);
    border-color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vmv-section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .vmv-card {
        padding: 2.5rem 2rem;
    }

    .vmv-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .vmv-icon {
        font-size: 2.25rem;
    }

    .vmv-title {
        font-size: 1.6rem;
    }

    .vmv-text {
        font-size: 1rem;
    }

    .vmv-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Accessibility */
.vmv-card:focus-within {
    outline: 3px solid var(--accent-gold);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================
    SERVICES SECTION - ADVANCED GRID
============================================ */
/* ============================================
   OPTIMIZED SERVICES SECTION
   ============================================ */
.services-section {
            background: linear-gradient(135deg, #FAFBFD 0%, #F0F3F8 50%, #E8EDF5 100%);
            position: relative;
            padding: 7rem 0;
            overflow: hidden;
        }

        .section-bg-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            z-index: 0;
            pointer-events: none;
            will-change: transform;
        }

        .section-bg-decoration.top-left {
            top: -20%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(200, 172, 110, 0.2) 0%, transparent 70%);
            animation: float 30s ease-in-out infinite;
        }

        .section-bg-decoration.bottom-right {
            bottom: -20%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(34, 51, 79, 0.1) 0%, transparent 70%);
            animation: float 35s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { 
                transform: translate(0, 0);
            }
            50% { 
                transform: translate(30px, -30px);
            }
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-subtitle {
            display: inline-block;
            font-family: var(--font-secondary);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
            padding: 0 1.5rem;
        }

        .section-subtitle::before,
        .section-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-gold));
        }

        .section-subtitle::before {
            right: 100%;
            transform: translateY(-50%);
        }

        .section-subtitle::after {
            left: 100%;
            transform: translateY(-50%) scaleX(-1);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-description {
            font-family: var(--font-secondary);
            font-size: 1.15rem;
            color: rgba(34, 51, 79, 0.75);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            position: relative;
            background: var(--white);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            will-change: transform;
            contain: layout style paint;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
            border-radius: 28px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        /* Icon Header - NEW */
        .service-icon-header {
            position: relative;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, 
                rgba(34, 51, 79, 0.03) 0%, 
                rgba(200, 172, 110, 0.05) 100%);
            overflow: hidden;
        }

        .service-icon-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, 
                rgba(200, 172, 110, 0.1) 0%, 
                transparent 70%);
            transform: translate(-50%, -50%);
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-icon-header::before {
            transform: translate(-50%, -50%) scale(1.2);
        }

        .service-main-icon {
            position: relative;
            z-index: 2;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, 
                var(--accent-gold) 0%, 
                var(--accent-gold-dark) 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(200, 172, 110, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: rotate(-5deg);
        }

        .service-card:hover .service-main-icon {
            transform: rotate(0deg) scale(1.1);
            box-shadow: 0 15px 50px rgba(200, 172, 110, 0.5);
            background: linear-gradient(135deg, 
                rgba(34, 51, 79, 0.98) 0%, 
                rgba(34, 51, 79, 0.95) 100%);
        }

        .service-main-icon i {
            font-size: 3.5rem;
            color: var(--dark-navy);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-main-icon i {
            transform: scale(1.05);
            color: var(--accent-gold);
        }

        /* Service Content */
        .service-content {
            padding: 2.75rem 2.5rem;
            position: relative;
        }

        .service-content::before {
            content: '';
            position: absolute;
            top: 0;
            right: 2.5rem;
            left: 2.5rem;
            height: 3px;
            background: linear-gradient(90deg, 
                var(--accent-gold) 0%, 
                transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-content::before {
            opacity: 1;
        }

        .service-title {
            font-size: 1.65rem;
            font-weight: 800;
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            line-height: 1.35;
            transition: color 0.3s ease;
        }

        .service-text {
            font-family: var(--font-secondary);
            font-size: 1.05rem;
            line-height: 1.95;
            color: rgba(34, 51, 79, 0.8);
            margin-bottom: 1.75rem;
            font-weight: 500;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            background: rgba(200, 172, 110, 0.08);
        }

        .service-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .service-card:hover .service-link {
            gap: 0.9rem;
            color: var(--white);
        }

        .service-link:hover::before {
            opacity: 1;
        }

        .service-link i {
            transition: transform 0.3s ease;
        }

        .service-link:hover i {
            transform: translateX(-3px);
        }

        .service-number {
            position: absolute;
            top: 1.5rem;
            left: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, 
                rgba(200, 172, 110, 0.12) 0%, 
                rgba(200, 172, 110, 0.06) 100%);
            border: 2px solid rgba(200, 172, 110, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 3;
            will-change: transform;
        }

        .service-card:hover .service-number {
            transform: rotate(360deg) scale(1.1);
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
            color: var(--dark-navy);
            border-color: var(--accent-gold-light);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 4rem 0;
            }

            .container {
                padding: 0 1.5rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card {
                border-radius: 24px;
            }

            .service-icon-header {
                height: 180px;
            }

            .service-main-icon {
                width: 100px;
                height: 100px;
            }

            .service-main-icon i {
                font-size: 3rem;
            }

            .service-content {
                padding: 2.25rem 2rem;
            }

            .service-title {
                font-size: 1.5rem;
            }

            .service-text {
                font-size: 1rem;
            }

            .service-number {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .section-bg-decoration {
                display: none;
            }
        }

        .service-card:focus-within {
            outline: 3px solid var(--accent-gold);
            outline-offset: 4px;
        }

        .service-link:focus-visible {
            outline: 3px solid var(--accent-gold);
            outline-offset: 4px;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
/* ============================================
    PARTNERS SECTION - PREMIUM SHOWCASE
============================================ */
.partners-section {
    background: var(--white);
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: linear-gradient(135deg, var(--tertiary-bg) 0%, var(--secondary-bg) 100%);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(200, 172, 110, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-smooth);
}

.partner-card:hover::before {
    width: 300px;
    height: 300px;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.partner-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: filter var(--transition-base);
    position: relative;
    z-index: 1;
}


/* ============================================
    FOOTER - COMPREHENSIVE
============================================ */
.footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-deep) 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 172, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 172, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 400px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-base);
    position: relative;
}

.footer-link i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.footer-link:hover {
    color: var(--accent-gold);
    transform: translateX(-5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    transform: translateX(-5px);
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon i {
    font-size: 1.3rem;
    color: var(--dark-navy);
}

.footer-contact-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 1.05rem;
}

.footer-contact-content a:hover {
    color: var(--accent-gold);
}

.footer-contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.footer-bottom p {
    margin: 0;
}

/* ============================================
    ANIMATIONS & KEYFRAMES
============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
    RESPONSIVE DESIGN - MOBILE FIRST
============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper img {
        height: 450px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-custom {
        width: 100%;
        padding: 1rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .hero-badge {        
        padding: 0.5rem 1rem;
    }
    :dir(rtl) .hero-badge {
        font-size: 0.75rem;
    }
    :dir(ltr) .hero-badge {
        font-size: 0.6rem;
    }
    .section-header {
        margin-bottom: 3rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .service-image-wrapper {
        height: 220px;
    }
}

/* ============================================
    UTILITY CLASSES
============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.position-relative {
    position: relative;
}

.z-index-10 {
    z-index: 10;
}

/* ============================================
    PERFORMANCE OPTIMIZATIONS
============================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}