/* 
 * Groupe Oubaha - Main Stylesheet
 * ------------------------------------------------------------------
 * Enterprise Premium 2026 - Fully Responsive
 */

@import 'variables.css';
@import 'reset.css';
@import 'typography.css';

/* ============================================
   BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-surface-base);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: 100%;
    max-width: var(--layout-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--layout-gutter);
    }
}

.section {
    padding: var(--space-section-mobile) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-section-tablet) 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-section-desktop) 0;
    }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    height: var(--topbar-height);
    background-color: var(--color-accent-gold);
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    font-weight: 500;
    display: none;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar-icon {
    width: 14px;
    height: 14px;
    color: white;
    flex-shrink: 0;
}

.top-bar-left {
    display: none;
}

@media (min-width: 1024px) {
    .top-bar-left {
        display: flex;
    }
}

.top-bar-right {
    margin-left: auto;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity var(--motion-duration-fast) var(--motion-ease-out);
}

.top-bar-link:hover {
    opacity: 1;
}

.top-bar span {
    font-size: 11px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    height: var(--header-height);
    background-color: var(--color-surface-base);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all var(--motion-duration-normal) var(--motion-ease-out);
    border-bottom: 1px solid var(--color-border-subtle);
}

.header.sticky-nav {
    position: sticky;
    top: 0;
}

.header.scrolled {
    height: 65px;
    box-shadow: var(--shadow-medium);
    border-bottom-color: transparent;
}

.logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    transition: height var(--motion-duration-normal) var(--motion-ease-out);
}

@media (min-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

.header.scrolled .logo-img {
    height: 35px;
}

/* Navigation */
.nav {
    display: none;
}

@media (min-width: 768px) {
    .nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-anim {
    text-decoration: none;
    color: var(--color-text-primary);
    font-size: var(--text-nav);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link-anim::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-gold);
    transition: all var(--motion-duration-normal) var(--motion-ease-out);
    transform: translateX(-50%);
}

.nav-link-anim:hover::after,
.nav-link-anim.active::after {
    width: 100%;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--motion-duration-fast) var(--motion-ease-out);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background-color: var(--color-surface-base);
    min-width: 220px;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    border-top: 2px solid var(--color-accent-gold);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    color: var(--color-accent-gold);
    background-color: var(--color-surface-heritage);
    padding-left: 24px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all var(--motion-duration-normal) var(--motion-ease-out);
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: #ffffff;
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #ffffff;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--motion-duration-normal) var(--motion-ease-out);
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation - Full Screen Overlay */
@media (max-width: 767px) {
    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 100px var(--space-lg) var(--space-xl);
        justify-content: flex-start;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
    }

    .nav-list>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active .nav-list>li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav.active .nav-list>li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav.active .nav-list>li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav.active .nav-list>li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav.active .nav-list>li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-list>li:last-child {
        border-bottom: none;
    }

    .nav-link-anim {
        display: flex;
        width: 100%;
        padding: 20px 0;
        font-size: 18px;
        font-weight: 500;
        color: #ffffff;
        justify-content: center;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .nav-link-anim:hover,
    .nav-link-anim.active {
        color: var(--color-accent-gold);
    }

    .nav-link-anim::after {
        display: none;
    }

    /* Mobile Dropdown */
    .dropdown {
        position: relative;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .dropdown-icon {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(255, 255, 255, 0.05) !important;
        width: 100%;
        min-width: unset !important;
        border-radius: 8px;
        margin: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
        margin: 10px 0;
    }

    .dropdown-menu li {
        border-bottom: none !important;
        text-align: center;
    }

    .dropdown-menu li a {
        display: block !important;
        padding: 16px 20px !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-align: center !important;
        transition: all 0.3s ease;
        white-space: normal !important;
        word-wrap: break-word;
    }

    .dropdown-menu li a:hover {
        color: var(--color-accent-gold) !important;
        background: rgba(198, 161, 110, 0.1) !important;
        padding-left: 20px !important;
    }

    /* Mobile menu close button positioning */
    .mobile-toggle.active {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
    }

    .mobile-toggle.active .hamburger-line {
        background-color: #ffffff;
    }
}

/* Hide mobile overlay when using full-screen nav */
@media (max-width: 767px) {
    .mobile-overlay {
        display: none;
    }
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: none;
}

.mobile-nav-footer {
    display: none;
}

@media (max-width: 767px) {
    .mobile-nav-header {
        display: flex;
        justify-content: center;
        margin-bottom: var(--space-xl);
        padding-bottom: var(--space-lg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-nav-logo {
        display: block;
    }

    .mobile-nav-logo img {
        height: 50px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .mobile-nav-footer {
        display: block;
        margin-top: auto;
        padding-top: var(--space-xl);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-nav-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .mobile-contact-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobile-contact-link:hover {
        color: var(--color-accent-gold);
    }

    .mobile-contact-link i {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 var(--space-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--motion-duration-normal) var(--motion-ease-out);
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
}

@media (min-width: 768px) {
    .btn {
        min-height: 52px;
        padding: 0 var(--space-lg);
    }
}

.btn-touch {
    min-width: 44px;
    min-height: 44px;
}

.btn-lg {
    min-height: 56px;
    padding: 0 var(--space-xl);
    font-size: 14px;
}

.btn-primary {
    background-color: var(--color-accent-gold);
    color: white;
    border-color: var(--color-accent-gold);
}

.btn-primary:hover {
    background-color: var(--color-accent-gold-dark);
    border-color: var(--color-accent-gold-dark);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-border-strong);
}

.btn-outline:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-slider {
        height: calc(100vh - var(--header-height) - var(--topbar-height));
        min-height: 600px;
        max-height: 900px;
    }
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1726533765393-eaa145150d76?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-bg-2 {
    background-image: url('https://images.unsplash.com/photo-1664437333697-3bb8567f2380?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-bg-3 {
    background-image: url('https://plus.unsplash.com/premium_photo-1661881436846-5a0f53025711?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.05);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.5) 100%);
}

.hero-slide-content {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 10;
    padding: var(--space-md);
}

.hero-overline {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-gold-light);
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.3s;
}

@media (min-width: 768px) {
    .hero-overline {
        font-size: 13px;
        letter-spacing: 0.25em;
        margin-bottom: var(--space-md);
    }
}

.hero-slide.active .hero-overline {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 7vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.5s;
}

@media (min-width: 768px) {
    .hero-title {
        margin-bottom: var(--space-md);
    }
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.text-gold {
    color: var(--color-accent-gold);
}

.text-gold-light {
    color: var(--color-accent-gold-light);
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.7s;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 17px;
        margin-bottom: var(--space-lg);
    }
}

.hero-slide.active .hero-description {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.9s;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        gap: var(--space-md);
    }
}

.hero-slide.active .hero-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.hero-progress-bar {
    height: 100%;
    background-color: var(--color-accent-gold);
    width: 0;
    transition: width 0.1s linear;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

@media (min-width: 768px) {
    .hero-slider-nav {
        bottom: 40px;
    }

    .hero-nav-dot {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-nav-dot::before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .hero-nav-dot:hover::before {
        background-color: rgba(255, 255, 255, 0.7);
        transform: scale(1.2);
    }

    .hero-nav-dot.active::before {
        background-color: var(--color-accent-gold);
        transform: scale(1.3);
    }

    /* Hero Arrows */
    .hero-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 20;
    }

    @media (min-width: 1024px) {
        .hero-arrow {
            display: flex;
        }
    }

    .hero-arrow:hover {
        background-color: var(--color-accent-gold);
        border-color: var(--color-accent-gold);
        transform: translateY(-50%) scale(1.1);
    }

    .hero-arrow-prev {
        left: 30px;
    }

    .hero-arrow-next {
        right: 30px;
    }

    .hero-arrow i {
        width: 24px;
        height: 24px;
    }

    /* Scroll Indicator */
    .hero-scroll-indicator {
        position: absolute;
        bottom: 30px;
        right: 30px;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        z-index: 20;
    }

    @media (min-width: 1024px) {
        .hero-scroll-indicator {
            display: flex;
        }
    }

    .hero-scroll-indicator span {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        writing-mode: vertical-rl;
    }

    .scroll-line {
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, var(--color-accent-gold), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {

        0%,
        100% {
            opacity: 0.3;
            transform: scaleY(0.8);
        }

        50% {
            opacity: 1;
            transform: scaleY(1);
        }
    }

    /* ============================================
   ABOUT SECTION
   ============================================ */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        align-items: center;
    }

    @media (min-width: 1024px) {
        .about-grid {
            grid-template-columns: 1.3fr 1fr;
            gap: calc(var(--space-xl) * 2);
        }
    }

    .about-image-col {
        order: 2;
    }

    @media (min-width: 1024px) {
        .about-image-col {
            order: 1;
        }
    }

    .about-image-wrapper {
        position: relative;
        padding: var(--space-md);
        background: linear-gradient(145deg, #ffffff 0%, var(--color-surface-heritage) 50%, #ffffff 100%);
        border-radius: 8px;
        box-shadow:
            0 25px 50px -12px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(198, 161, 110, 0.1);
    }

    @media (min-width: 768px) {
        .about-image-wrapper {
            padding: var(--space-lg);
        }
    }

    @media (min-width: 1024px) {
        .about-image-wrapper {
            padding: var(--space-xl);
            margin-left: -40px;
        }
    }

    .about-image-wrapper::before {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border: 2px solid var(--color-accent-gold);
        border-radius: 12px;
        opacity: 0.2;
        pointer-events: none;
    }

    .about-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        display: block;
        margin: 0 auto;
        transition: transform 0.5s ease;
    }

    @media (min-width: 1024px) {
        .about-image {
            max-width: 100%;
        }
    }

    .about-image-wrapper:hover .about-image {
        transform: scale(1.02);
    }

    .about-image-badge {
        position: absolute;
        bottom: -20px;
        right: 20px;
        background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
        color: white;
        padding: var(--space-md) var(--space-lg);
        text-align: center;
        box-shadow: 0 10px 30px rgba(198, 161, 110, 0.4);
        border-radius: 4px;
    }

    @media (min-width: 768px) {
        .about-image-badge {
            bottom: -25px;
            right: 40px;
            padding: var(--space-md) var(--space-xl);
        }
    }

    .badge-year {
        display: block;
        font-family: var(--font-serif);
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
    }

    @media (min-width: 768px) {
        .badge-year {
            font-size: 42px;
        }
    }

    .badge-text {
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-top: 6px;
        opacity: 0.9;
    }

    @media (min-width: 768px) {
        .badge-text {
            font-size: 11px;
        }
    }

    .about-content-col {
        padding-top: 0;
        order: 1;
    }

    @media (min-width: 1024px) {
        .about-content-col {
            order: 2;
            padding-left: var(--space-md);
        }
    }

    /* About Image Showcase - Centered Large Image */
    .about-image-showcase {
        margin: var(--space-xl) 0;
        display: flex;
        justify-content: center;
    }

    @media (min-width: 768px) {
        .about-image-showcase {
            margin: calc(var(--space-xl) * 1.5) 0;
        }
    }

    .about-image-showcase .about-image-wrapper {
        max-width: 900px;
        width: 100%;
        padding: var(--space-lg);
        margin: 0;
    }

    @media (min-width: 768px) {
        .about-image-showcase .about-image-wrapper {
            padding: var(--space-xl) calc(var(--space-xl) * 1.5);
        }
    }

    @media (min-width: 1024px) {
        .about-image-showcase .about-image-wrapper {
            padding: calc(var(--space-xl) * 1.5) calc(var(--space-xl) * 2);
        }
    }

    .about-image-showcase .about-image {
        max-width: 100%;
        width: 100%;
    }

    /* About Bottom Grid */
    .about-bottom-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        align-items: center;
        padding-top: var(--space-lg);
        border-top: 1px solid var(--color-border-subtle);
    }

    @media (min-width: 768px) {
        .about-bottom-grid {
            grid-template-columns: 1.5fr 1fr;
            gap: var(--space-xl);
        }
    }

    .about-text-block p {
        color: var(--color-text-secondary);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
        .about-text-block p {
            font-size: 16px;
        }
    }

    .about-text-block p:last-child {
        margin-bottom: 0;
    }

    .about-bottom-grid .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        background: var(--color-surface-heritage);
        padding: var(--space-lg);
        border-radius: 8px;
    }

    @media (min-width: 768px) {
        .about-bottom-grid .about-stats {
            grid-template-columns: 1fr;
            gap: var(--space-lg);
            padding: var(--space-xl);
        }
    }

    .about-bottom-grid .stat-item {
        text-align: center;
    }

    @media (min-width: 768px) {
        .about-bottom-grid .stat-item {
            text-align: left;
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }
    }

    @media (min-width: 768px) {
        .about-bottom-grid .stat-number {
            min-width: 80px;
        }
    }

    .section-title {
        font-family: var(--font-serif);
        font-size: clamp(24px, 4vw, 38px);
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }

    .about-text p {
        margin-bottom: var(--space-sm);
        color: var(--color-text-secondary);
        font-size: 15px;
        line-height: 1.8;
    }

    @media (min-width: 768px) {
        .about-text p {
            font-size: 16px;
        }
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
        border-top: 1px solid var(--color-border-subtle);
    }

    @media (min-width: 480px) {
        .about-stats {
            gap: var(--space-lg);
        }
    }

    .stat-item {
        text-align: center;
    }

    @media (min-width: 768px) {
        .stat-item {
            text-align: left;
        }
    }

    .stat-number {
        font-family: var(--font-serif);
        font-size: clamp(28px, 5vw, 42px);
        font-weight: 700;
        color: var(--color-accent-gold);
        line-height: 1;
        display: block;
    }

    .stat-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-text-muted);
        margin-top: var(--space-xs);
        display: block;
    }

    @media (min-width: 768px) {
        .stat-label {
            font-size: 11px;
        }
    }

    /* ============================================
   SECTION HEADERS
   ============================================ */
    .section-header {
        margin-bottom: var(--space-lg);
    }

    @media (min-width: 768px) {
        .section-header {
            margin-bottom: var(--space-xl);
        }
    }

    .section-subtitle {
        max-width: 650px;
        margin: var(--space-sm) auto 0;
        color: var(--color-text-secondary);
        font-size: 15px;
        line-height: 1.7;
    }

    @media (min-width: 768px) {
        .section-subtitle {
            font-size: 16px;
            margin-top: var(--space-md);
        }
    }

    /* ============================================
   HERITAGE SECTION
   ============================================ */
    .heritage-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    @media (min-width: 640px) {
        .heritage-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .heritage-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }
    }

    .heritage-card {
        text-align: center;
        padding: var(--space-lg);
        background: white;
        border-radius: var(--border-radius-sm);
        box-shadow: var(--shadow-soft);
        transition: all 0.4s ease;
    }

    @media (min-width: 768px) {
        .heritage-card {
            padding: var(--space-xl) var(--space-lg);
        }
    }

    .heritage-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-medium);
    }

    .heritage-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto var(--space-md);
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--color-accent-gold-light) 0%, var(--color-accent-gold) 100%);
        border-radius: 50%;
    }

    @media (min-width: 768px) {
        .heritage-icon {
            width: 80px;
            height: 80px;
        }
    }

    .heritage-icon i {
        width: 32px;
        height: 32px;
        color: white;
    }

    @media (min-width: 768px) {
        .heritage-icon i {
            width: 36px;
            height: 36px;
        }
    }

    .heritage-card h3 {
        font-family: var(--font-serif);
        font-size: 22px;
        margin-bottom: var(--space-sm);
        color: var(--color-text-primary);
    }

    @media (min-width: 768px) {
        .heritage-card h3 {
            font-size: 24px;
        }
    }

    .heritage-card p {
        color: var(--color-text-muted);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    @media (min-width: 768px) {
        .heritage-card p {
            font-size: 15px;
        }
    }

    /* ============================================
   SUBSIDIARIES SECTION
   ============================================ */
    .subsidiaries-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    @media (min-width: 640px) {
        .subsidiaries-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .subsidiaries-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }
    }

    .subsidiary-card {
        position: relative;
        padding: var(--space-lg);
        background: white;
        border: 1px solid var(--color-border-subtle);
        transition: all 0.4s ease;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .subsidiary-card {
            padding: var(--space-xl);
        }
    }

    .subsidiary-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--color-accent-gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .subsidiary-card:hover::before {
        transform: scaleX(1);
    }

    .subsidiary-card:hover {
        box-shadow: var(--shadow-medium);
        transform: translateY(-4px);
    }

    .subsidiary-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: var(--space-md);
    }

    .subsidiary-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    @media (min-width: 768px) {
        .subsidiary-icon {
            width: 70px;
            height: 70px;
        }
    }

    .subsidiary-icon.oubaha-fils {
        background: linear-gradient(135deg, #c6a16e 0%, #a08040 100%);
    }

    .subsidiary-icon.gar {
        background: linear-gradient(135deg, #4a9c4a 0%, #2d6b2d 100%);
    }

    .subsidiary-icon.immobilier {
        background: linear-gradient(135deg, #6b8cae 0%, #4a6b8c 100%);
    }

    .subsidiary-icon i {
        width: 28px;
        height: 28px;
        color: white;
    }

    @media (min-width: 768px) {
        .subsidiary-icon i {
            width: 32px;
            height: 32px;
        }
    }

    .subsidiary-badge {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-accent-gold);
        background: var(--color-surface-heritage);
        padding: 6px 12px;
        border-radius: 20px;
    }

    .subsidiary-card h3 {
        font-family: var(--font-serif);
        font-size: 20px;
        margin-bottom: var(--space-sm);
        color: var(--color-text-primary);
    }

    @media (min-width: 768px) {
        .subsidiary-card h3 {
            font-size: 22px;
        }
    }

    .subsidiary-card p {
        color: var(--color-text-muted);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
        .subsidiary-card p {
            font-size: 15px;
        }
    }

    .subsidiary-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-accent-gold);
        text-decoration: none;
        transition: all 0.3s ease;
        min-height: 44px;
    }

    .subsidiary-link:hover {
        gap: 12px;
        color: var(--color-accent-gold-dark);
    }

    .subsidiary-link i {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }

    .subsidiary-link:hover i {
        transform: translateX(4px);
    }

    /* ============================================
   COMMITMENT SECTION
   ============================================ */
    .commitment-section {
        position: relative;
        overflow: hidden;
    }

    .commitment-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1663583336745-bcc9d0f8213f?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .commitment-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.90) 0%, rgba(45, 45, 45, 0.85) 50%, rgba(26, 26, 26, 0.90) 100%);
    }

    .commitment-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 50%, rgba(198, 161, 110, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(198, 161, 110, 0.05) 0%, transparent 50%);
    }

    .commitment-content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .commitment-title {
        font-family: var(--font-serif);
        font-size: clamp(22px, 4vw, 38px);
        line-height: 1.3;
        color: white;
        margin-bottom: var(--space-md);
    }

    .commitment-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: var(--space-lg);
    }

    @media (min-width: 768px) {
        .commitment-text {
            font-size: 17px;
        }
    }

    /* ============================================
   BRANDS MARQUEE (LOGO STRIP)
   ============================================ */
    .brands-marquee {
        border-top: 1px solid var(--color-border-subtle);
        border-bottom: 1px solid var(--color-border-subtle);
        background-color: var(--color-surface-base);
        padding: var(--space-md) 0;
    }

    .brands-marquee .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    @media (min-width: 768px) {
        .brands-marquee {
            padding: var(--space-lg) 0;
        }
    }

    .brands-marquee-inner {
        overflow: hidden;
        position: relative;
    }

    .brands-marquee-inner::before,
    .brands-marquee-inner::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        pointer-events: none;
        z-index: 1;
    }

    .brands-marquee-inner::before {
        left: 0;
        background: linear-gradient(to right, var(--color-surface-base), transparent);
    }

    .brands-marquee-inner::after {
        right: 0;
        background: linear-gradient(to left, var(--color-surface-base), transparent);
    }

    .brands-track {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
        will-change: transform;
    }

    .brands-track.brands-track-ready {
        animation: brands-scroll 40s linear infinite;
    }

    .brand-logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 var(--space-md);
        height: 80px;
        min-width: 120px;
        opacity: 0.7;
        transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    }

    .brand-logo:hover {
        opacity: 1;
        transform: translateY(-3px);
    }

    .brand-logo img {
        max-height: 70%;
        max-width: 100%;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
    }

    @media (min-width: 768px) {
        .brand-logo {
            height: 100px;
            min-width: 140px;
        }
    }

    @keyframes brands-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* ============================================
   FOOTER
   ============================================ */
    .footer {
        background-color: var(--color-surface-alt);
        padding: var(--space-xl) 0 var(--space-md);
    }

    @media (min-width: 768px) {
        .footer {
            padding: calc(var(--space-xl) * 1.5) 0 var(--space-lg);
        }
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    @media (min-width: 640px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .footer-grid {
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: var(--space-xl);
        }
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    @media (min-width: 1024px) {
        .footer-brand {
            grid-column: auto;
        }
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        margin-bottom: var(--space-md);
    }

    .footer-description {
        color: var(--color-text-muted);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: var(--space-md);
        max-width: 300px;
    }

    .footer-social {
        display: flex;
        gap: var(--space-sm);
    }

    .social-link {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-surface-base);
        border-radius: 50%;
        color: var(--color-text-secondary);
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: var(--color-accent-gold);
        color: white;
        transform: translateY(-3px);
    }

    .social-link i {
        width: 20px;
        height: 20px;
    }

    .footer-title {
        font-family: var(--font-sans);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--color-text-primary);
        margin-bottom: var(--space-md);
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: var(--space-xs);
    }

    .footer-link {
        display: inline-flex;
        align-items: center;
        min-height: 36px;
        color: var(--color-text-muted);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-link:hover {
        color: var(--color-accent-gold);
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: var(--space-sm);
        color: var(--color-text-muted);
        text-decoration: none;
        font-size: 14px;
        line-height: 1.5;
        transition: color 0.3s ease;
        min-height: 44px;
        padding: var(--space-xs) 0;
    }

    .contact-item:hover {
        color: var(--color-accent-gold);
    }

    .contact-icon {
        width: 18px;
        height: 18px;
        color: var(--color-accent-gold);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-bottom {
        margin-top: var(--space-xl);
        padding-top: var(--space-md);
        border-top: 1px solid var(--color-border-subtle);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        text-align: center;
    }

    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
        }
    }

    .copyright {
        font-size: 12px;
        color: var(--color-text-muted);
        letter-spacing: 0.05em;
    }

    .footer-legal {
        display: flex;
        gap: var(--space-md);
    }

    .legal-link {
        font-size: 12px;
        color: var(--color-text-muted);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .legal-link:hover {
        color: var(--color-accent-gold);
    }

    /* ============================================
   UTILITIES
   ============================================ */
    .flex {
        display: flex;
    }

    .flex-col {
        flex-direction: column;
    }

    .items-center {
        align-items: center;
    }

    .justify-between {
        justify-content: space-between;
    }

    .justify-center {
        justify-content: center;
    }

    .text-center {
        text-align: center;
    }

    .h-full {
        height: 100%;
    }

    .w-full {
        width: 100%;
    }

    .gap-xs {
        gap: var(--space-xs);
    }

    .gap-sm {
        gap: var(--space-sm);
    }

    .gap-md {
        gap: var(--space-md);
    }

    .gap-lg {
        gap: var(--space-lg);
    }

    .mb-sm {
        margin-bottom: var(--space-sm);
    }

    .mb-md {
        margin-bottom: var(--space-md);
    }

    .mb-lg {
        margin-bottom: var(--space-lg);
    }

    .mb-xl {
        margin-bottom: var(--space-xl);
    }

    .mt-md {
        margin-top: var(--space-md);
    }

    .mt-lg {
        margin-top: var(--space-lg);
    }

    .mt-xl {
        margin-top: var(--space-xl);
    }

    .py-md {
        padding-top: var(--space-md);
        padding-bottom: var(--space-md);
    }

    .p-lg {
        padding: var(--space-lg);
    }

    .bg-heritage {
        background-color: var(--color-surface-heritage);
    }

    .bg-white {
        background-color: var(--color-surface-base);
    }

    .bg-alt {
        background-color: var(--color-surface-alt);
    }

    .bg-light {
        background-color: #f5f5f7;
    }

    /* ============================================
   OUBAHA & FILS SPECIALTIES GRID
   ============================================ */
    .specialties-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-top: var(--space-xl);
    }

    @media (min-width: 640px) {
        .specialties-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .specialties-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    /* Specialty card styles integrated below */

    @media (min-width: 768px) {
        .specialty-card-title {
            font-size: 22px;
        }

        .specialty-card-text {
            font-size: 15px;
        }
    }

    /* ============================================
   404 ERROR PAGE
   ============================================ */
    .error-section {
        position: relative;
        min-height: calc(100vh - var(--header-height) - 200px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--space-xl) 0;
    }

    .error-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-surface-heritage);
    }

    .error-content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 500px;
    }

    .error-code {
        display: block;
        font-family: var(--font-serif);
        font-size: clamp(100px, 20vw, 180px);
        font-weight: 700;
        color: var(--color-accent-gold);
        line-height: 1;
        opacity: 0.3;
        margin-bottom: var(--space-md);
    }

    .error-content h1 {
        font-family: var(--font-serif);
        font-size: clamp(28px, 5vw, 42px);
        margin-bottom: var(--space-md);
    }

    .error-content p {
        color: var(--color-text-muted);
        font-size: 16px;
        margin-bottom: var(--space-lg);
    }

    .error-actions {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }

    @media (min-width: 480px) {
        .error-actions {
            flex-direction: row;
            justify-content: center;
        }
    }

    /* ============================================
   ANIMATIONS
   ============================================ */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s var(--motion-ease-out),
            transform 0.8s var(--motion-ease-out);
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ============================================
   CONTACT PAGE
   ============================================ */

    /* Contact Hero */
    .contact-hero {
        position: relative;
        padding: calc(var(--space-xl) * 1.5) 0;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .contact-hero {
            padding: calc(var(--space-xl) * 2) 0;
        }
    }

    .contact-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
    }

    .contact-hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom,
                rgba(26, 26, 26, 0.85) 0%,
                rgba(26, 26, 26, 0.75) 50%,
                rgba(26, 26, 26, 0.9) 100%);
    }

    .contact-hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .contact-hero-title {
        font-family: var(--font-serif);
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 700;
        color: white;
        margin-bottom: var(--space-md);
        line-height: 1.1;
    }

    .contact-hero-subtitle {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        margin-bottom: 0;
    }

    @media (min-width: 768px) {
        .contact-hero-subtitle {
            font-size: 18px;
        }
    }

    /* Contact Cards Section */
    .contact-cards-section {
        margin-top: -40px;
        position: relative;
        z-index: 20;
        padding-bottom: var(--space-xl);
    }

    .contact-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    @media (min-width: 480px) {
        .contact-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .contact-cards {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .contact-card {
        background: white;
        padding: var(--space-lg);
        text-align: center;
        box-shadow: var(--shadow-medium);
        border-radius: var(--border-radius-sm);
        text-decoration: none;
        color: inherit;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--color-accent-gold-light) 0%, var(--color-accent-gold) 100%);
        border-radius: 50%;
        margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
        .contact-card-icon {
            width: 70px;
            height: 70px;
        }
    }

    .contact-card-icon i {
        width: 28px;
        height: 28px;
        color: white;
    }

    @media (min-width: 768px) {
        .contact-card-icon i {
            width: 32px;
            height: 32px;
        }
    }

    .contact-card h3 {
        font-family: var(--font-sans);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--color-text-muted);
        margin-bottom: var(--space-xs);
    }

    .contact-card-value {
        font-family: var(--font-serif);
        font-size: 18px;
        font-weight: 600;
        color: var(--color-text-primary);
        margin-bottom: 4px;
    }

    @media (min-width: 768px) {
        .contact-card-value {
            font-size: 20px;
        }
    }

    .contact-card-secondary {
        font-size: 14px;
        color: var(--color-text-muted);
        margin-bottom: var(--space-sm);
    }

    .contact-card-action {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-accent-gold);
        margin-top: auto;
        padding-top: var(--space-sm);
        border-top: 1px solid var(--color-border-subtle);
        width: 100%;
        transition: color 0.3s ease;
    }

    .contact-card:hover .contact-card-action {
        color: var(--color-accent-gold-dark);
    }

    .contact-card-status {
        font-size: 12px;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 20px;
        margin-top: auto;
    }

    .contact-card-status.open {
        background: rgba(74, 156, 74, 0.1);
        color: #2d6b2d;
    }

    .contact-card-status.closed {
        background: rgba(200, 50, 50, 0.1);
        color: #8b2020;
    }

    /* Contact Main Section */
    .contact-main-section {
        background: var(--color-surface-heritage);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    @media (min-width: 1024px) {
        .contact-grid {
            grid-template-columns: 1.2fr 1fr;
            gap: var(--space-xl);
        }
    }

    /* Contact Form */
    .contact-form-wrapper {
        background: white;
        padding: var(--space-lg);
        border-radius: var(--border-radius-sm);
        box-shadow: var(--shadow-soft);
    }

    @media (min-width: 768px) {
        .contact-form-wrapper {
            padding: var(--space-xl);
        }
    }

    .contact-form-header {
        margin-bottom: var(--space-lg);
    }

    .contact-form-header h2 {
        font-family: var(--font-serif);
        font-size: clamp(24px, 4vw, 32px);
        margin-bottom: var(--space-sm);
    }

    .contact-form-header p {
        color: var(--color-text-muted);
        font-size: 15px;
        margin-bottom: 0;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    @media (min-width: 640px) {
        .form-row {
            grid-template-columns: 1fr 1fr;
        }
    }

    .form-group {
        margin-bottom: var(--space-md);
    }

    .form-label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-text-secondary);
        margin-bottom: var(--space-xs);
    }

    .form-input {
        width: 100%;
        padding: var(--space-sm) var(--space-md);
        font-family: var(--font-sans);
        font-size: 15px;
        color: var(--color-text-primary);
        background-color: var(--color-surface-base);
        border: 2px solid var(--color-border-subtle);
        border-radius: var(--border-radius-sm);
        transition: all var(--motion-duration-fast) var(--motion-ease-out);
        outline: none;
        min-height: 48px;
    }

    .form-input:focus {
        border-color: var(--color-accent-gold);
        box-shadow: 0 0 0 4px rgba(198, 161, 110, 0.1);
    }

    .form-input::placeholder {
        color: var(--color-text-muted);
    }

    .form-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 20px;
        padding-right: 44px;
        cursor: pointer;
    }

    .form-textarea {
        min-height: 140px;
        resize: vertical;
    }

    .btn-submit {
        width: 100%;
        gap: var(--space-sm);
        margin-top: var(--space-sm);
    }

    .btn-submit i {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .btn-submit:hover i {
        transform: translateX(4px);
    }

    /* Contact Info Wrapper */
    .contact-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
    }

    .contact-map-container {
        border-radius: var(--border-radius-sm);
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        background: var(--color-surface-alt);
    }

    .contact-map-container iframe {
        display: block;
        width: 100%;
        height: 250px;
    }

    @media (min-width: 768px) {
        .contact-map-container iframe {
            height: 300px;
        }
    }

    .contact-info-box {
        background: white;
        padding: var(--space-lg);
        border-radius: var(--border-radius-sm);
        box-shadow: var(--shadow-soft);
    }

    @media (min-width: 768px) {
        .contact-info-box {
            padding: var(--space-xl);
        }
    }

    .contact-info-box h3 {
        font-family: var(--font-serif);
        font-size: 24px;
        margin-bottom: var(--space-xs);
    }

    .info-description {
        color: var(--color-text-muted);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-md);
        border-bottom: 1px solid var(--color-border-subtle);
    }

    .info-list {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .info-item {
        display: flex;
        gap: var(--space-sm);
    }

    .info-item i {
        width: 24px;
        height: 24px;
        color: var(--color-accent-gold);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .info-item strong {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--color-text-primary);
        margin-bottom: 4px;
    }

    .info-item span {
        font-size: 14px;
        color: var(--color-text-muted);
        line-height: 1.5;
    }

    .info-social {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: var(--space-md);
        border-top: 1px solid var(--color-border-subtle);
    }

    .info-social>span {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-text-muted);
    }

    .social-links {
        display: flex;
        gap: var(--space-sm);
    }

    .contact-info-wrapper .social-link {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-surface-alt);
        border-radius: 50%;
        color: var(--color-text-secondary);
        transition: all 0.3s ease;
    }

    .contact-info-wrapper .social-link:hover {
        background: var(--color-accent-gold);
        color: white;
        transform: translateY(-3px);
    }

    .contact-info-wrapper .social-link i {
        width: 20px;
        height: 20px;
    }

    /* ============================================
   ANIMATIONS
   ============================================ */

    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }

        .fade-up {
            opacity: 1;
            transform: none;
        }
    }

    /* ============================================
   PRODUCT CARDS (Oubaha & Fils)
   ============================================ */

    .specialties-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-top: var(--space-xl);
    }

    @media (min-width: 768px) {
        .specialties-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .specialties-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
    }

    .specialty-card {
        background-color: white;
        border-radius: 2px;
        /* Sharper, more corporate */
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.03);
        position: relative;
    }

    .specialty-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .specialty-card-image {
        position: relative;
        width: 100%;
        padding-top: 65%;
        /* Aspect ratio for premium feeling */
        background-color: #f0f0f0;
        overflow: hidden;
    }

    .specialty-card-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .specialty-card-body {
        padding: 32px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .specialty-card-title {
        font-family: var(--font-serif);
        font-size: 26px;
        /* Larger title */
        font-weight: 500;
        color: var(--color-text-primary);
        margin-bottom: 8px;
        letter-spacing: -0.01em;
    }

    .specialty-card-brands {
        margin-bottom: 24px;
        display: flex;
        align-items: baseline;
        gap: 8px;
        font-size: 13px;
        color: var(--color-text-secondary);
    }

    .specialty-card-brands strong {
        color: var(--color-accent-gold);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    /* Details Section (Hidden by default) */
    .specialty-card-details {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
    }

    .specialty-card-details.active {
        opacity: 1;
    }

    .details-content {
        padding-top: 20px;
        padding-bottom: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        margin-top: 20px;
    }

    .specialty-card-label {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--color-text-tertiary);
        margin-bottom: 12px;
        letter-spacing: 0.1em;
    }

    /* Product Pills */
    .product-pills {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .product-pills li {
        font-size: 13px;
        font-weight: 500;
        color: var(--color-text-secondary);
        background-color: rgba(0, 0, 0, 0.03);
        padding: 6px 14px;
        border-radius: 100px;
        /* Full pill shape */
        transition: background-color 0.2s ease;
    }

    .specialty-card:hover .product-pills li {
        background-color: rgba(198, 161, 110, 0.1);
        /* Gold tint on hover */
        color: var(--color-text-primary);
    }

    /* "Voir plus" Button */
    .btn-view-more {
        margin-top: auto;
        background: none;
        border: none;
        padding: 10px 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        color: var(--color-text-primary);
        font-family: var(--font-sans);
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: color 0.3s ease;
        border-top: 1px solid transparent;
    }

    .btn-view-more:hover {
        color: var(--color-accent-gold);
    }

    .view-more-dots {
        display: flex;
        gap: 4px;
    }

    .view-more-dots span {
        width: 4px;
        height: 4px;
        background-color: var(--color-accent-gold);
        border-radius: 50%;
        display: block;
        transition: all 0.3s ease;
        opacity: 0.5;
    }

    .btn-view-more:hover .view-more-dots span {
        opacity: 1;
    }

    .btn-view-more:hover .view-more-dots span:nth-child(1) {
        transform: scale(1.2);
    }

    .btn-view-more:hover .view-more-dots span:nth-child(2) {
        transform: scale(1.2);
        transition-delay: 0.1s;
    }

    .btn-view-more:hover .view-more-dots span:nth-child(3) {
        transform: scale(1.2);
        transition-delay: 0.2s;
    }
}