:root {
    --color-primary: #cc1111;
    --color-secondary: #1a3b6e;
    --color-white: #fff;
    --color-shadow: rgba(0, 0, 0, 0.08);

    --font-body: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    --font-size-sm: 0.82rem;
    --font-size-nav: 0.92rem;

    --spacing-topbar: 7px 40px;
    --spacing-navbar: 10px 40px;
    --spacing-gap-topbar: 32px;
    --spacing-gap-nav: 36px;

    --logo-width: 110px;
    --nav-underline-height: 2px;
    --nav-underline-offset: -3px;
    --transition-color: color 0.2s;
    --transition-underline: width 0.25s ease;
    --shadow-navbar: 0 2px 8px var(--color-shadow);
    --banner-height:   480px;
    --banner-height-md: 260px;
    --banner-height-sm: 130px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Top bar ── */
.topbar {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    padding: var(--spacing-topbar);
    display: flex;
    align-items: center;
    gap: var(--spacing-gap-topbar);
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.topbar-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: var(--color-white);
}
.topbar-item a{
    text-decoration: none;

    color: var(--color-white);
}

/* ── Main nav ── */
.navbar {
    background: var(--color-white);
    padding: var(--spacing-navbar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-navbar);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}
.logo img {
    width:164px;
    height: 100px;
}
.logo-img {
    width:164px;
    height: 130px;
}
.logo-svg {
    width: var(--logo-width);
    height: auto;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-gap-nav);
    list-style: none;
}
.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-nav);
    text-decoration: none;
    color: var(--color-secondary);
    letter-spacing: 0.02em;
    transition: var(--transition-color);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: var(--nav-underline-offset);
    width: 0;
    height: var(--nav-underline-height);
    background: var(--color-primary);
    transition: var(--transition-underline);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active,
.nav-links a:hover { color: var(--color-primary); }

/* nav icon — hidden on desktop */
.nav-icon {
    display: none;
    flex-shrink: 0;
    width: 20px; height: 20px;
}
.nav-icon svg { width: 100%; height: 100%; }

/* CTA button (Espace Client) — desktop */
.nav-cta a {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 8px 20px;
    border-radius: 4px;
    border: 2px solid var(--color-primary);
    transition: background 0.25s, color 0.25s !important;
}
.nav-cta a::after { display: none !important; }
.nav-cta a:hover {
    background: transparent !important;
    color: var(--color-primary) !important;
}

/* ── Hamburger — hidden on desktop ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px; height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s;
    transform-origin: center;
}
.hamburger[aria-expanded="true"] span { background: var(--color-primary); }
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0; transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Backdrop ── */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* ════════════════════════════
   MOBILE  ≤ 768px
════════════════════════════ */
@media (max-width: 768px) {

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 20px;
    }

    .navbar { padding: 10px 20px; }

    /* show hamburger */
    .hamburger { display: flex; }

    /* drawer */
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        z-index: 1000;
        box-shadow: -6px 0 32px rgba(0,0,0,0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }

    /* drawer header band */
    .nav-links::before {
        content: '';
        display: block;
        height: 6px;
        background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
        flex-shrink: 0;
    }

    /* drawer logo row */
    .nav-links::after {
        content: 'AYAM DELIVERY';
        display: block;
        font-family: var(--font-heading);
        font-weight: 900;
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        color: var(--color-secondary);
        padding: 20px 24px 16px;
        border-bottom: 1px solid #eef0f6;
        flex-shrink: 0;
    }

    /* nav items */
    .nav-links li { width: 100%; }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 15px 24px;
        font-size: 0.95rem;
        color: var(--color-secondary);
        border-bottom: 1px solid #f2f4f9;
        border-radius: 0;
        transition: background 0.2s, color 0.2s, padding-left 0.2s;
    }
    .nav-links a::after { display: none; }

    .nav-links a:hover,
    .nav-links a.active {
        background: #fff5f5;
        color: var(--color-primary);
        padding-left: 30px;
    }
    .nav-links a.active {
        border-left: 3px solid var(--color-primary);
        font-weight: 700;
    }

    /* show icons on mobile */
    .nav-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px; height: 34px;
        border-radius: 8px;
        background: #f2f4f9;
        flex-shrink: 0;
        transition: background 0.2s;
    }
    .nav-links a:hover .nav-icon,
    .nav-links a.active .nav-icon {
        background: rgba(204,17,17,0.1);
        color: var(--color-primary);
    }

    /* CTA button — full width on mobile */
    .nav-cta { padding: 16px 24px; border-bottom: none !important; }
    .nav-cta a {
        display: flex;
        justify-content: center;
        background: var(--color-primary) !important;
        color: var(--color-white) !important;
        border-radius: 6px;
        padding: 13px 20px;
        border-left: none !important;
        font-weight: 700;
    }
    .nav-cta a:hover {
        background: #a80e0e !important;
        padding-left: 20px !important;
    }
    .nav-cta .nav-icon {
        background: rgba(255,255,255,0.2) !important;
        color: white !important;
    }

    /* contact info inside drawer */
    .nav-links li.nav-drawer-contact {
        padding: 20px 24px;
        border-top: 1px solid #eef0f6;
        margin-top: auto;
    }
    .nav-drawer-contact p {
        font-family: var(--font-body);
        font-size: 0.8rem;
        color: #999;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }
    .nav-drawer-contact p svg {
        width: 14px; height: 14px;
        flex-shrink: 0;
        fill: var(--color-primary);
    }
}

@media (max-width: 480px) {
    .nav-links { width: 100%; }
}
/* ── Drawer header (logo + close) ── */
.nav-close-item { list-style: none; }

.nav-drawer-header {
    display: none; /* caché sur desktop */
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eef0f6;
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-drawer-logo svg {
    width: 110px;
    height: auto;
    display: block;
}

/* ── Close button ── */
.nav-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #eef0f6;
    background: #f8f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-secondary);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s,
    color 0.2s, transform 0.2s;
}
.nav-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: rotate(90deg);
}
.nav-close svg {
    width: 18px;
    height: 18px;
}

/* ── Show drawer header on mobile only ── */
@media (max-width: 768px) {
    .nav-drawer-header {
        display: flex;
    }
}
/* ── Hamburger button ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 100;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile breakpoint ── */
@media (max-width: 768px) {

    /* Top bar: stack items vertically, center them */
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 20px;
    }

    /* Navbar: keep logo + hamburger on one row */
    .navbar {
        flex-wrap: wrap;
        padding: 10px 20px;
        position: relative;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Nav menu: hidden by default, slides down when open */
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        background: var(--color-white);
        border-top: 2px solid var(--color-primary);
        padding: 8px 0 12px;
        margin-top: 8px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 16px;
        font-size: 0.95rem;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-links a.active,
    .nav-links a:hover {
        background: #fff5f5;
        color: var(--color-primary);
    }
}


/* ══════════════════════════════════════
   SECTION : About / Express Delivery
══════════════════════════════════════ */
.about-section {
    padding: 80px 40px;
    background: var(--color-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ── Left image ── */
.about-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-image:hover img {
    transform: scale(1.03);
}

/* ── Right content ── */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1.25;
}
.about-title .highlight {
    color: var(--color-secondary);   /* same deep blue, bold already */
}

.about-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.85;
    text-align: justify;
}
.about-text strong {
    color: #111;
    font-weight: 700;
}

/* ── Checklist ── */
.about-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}
.about-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    color: #222;
}
.check-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
}
.check-icon svg {
    width: 100%;
    height: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-image {
        max-height: 360px;
    }
    .about-section {
        padding: 50px 24px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 36px 16px;
    }
    .about-title {
        font-size: 1.4rem;
    }
}


/* ══════════════════════════════════════
   SECTION : Valeurs
══════════════════════════════════════ */
.values-section {
    padding: 90px 40px;
    background: #f8f9fc;
    position: relative;
    overflow: hidden;
}

/* light decorative blob */
.values-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,17,17,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

/* ══ TOP : text + image ══ */
.values-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Intro text ── */
.values-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.values-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 20px;
    padding: 5px 16px;
    width: fit-content;
}

.values-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1.2;
}
.values-title span {
    color: var(--color-primary);
}

.values-text {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: #555;
    line-height: 1.85;
}

.values-btn {
    display: inline-block;
    width: fit-content;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 13px 30px;
    border-radius: 4px;
    border: 2px solid var(--color-primary);
    transition: background 0.25s, color 0.25s;
}
.values-btn:hover {
    background: transparent;
    color: var(--color-primary);
}

/* ── Visual (image + badge) ── */
.values-visual {
    position: relative;
    border-radius: 8px;
    overflow: visible;
}
.values-visual img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* floating badge */
.values-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 8px;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 6px 24px rgba(26,59,110,0.28);
    min-width: 110px;
}
.badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}
.badge-number sup {
    font-size: 1rem;
    vertical-align: super;
}
.badge-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    text-align: center;
}

/* ══ BOTTOM : 4 cards ══ */
.values-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 36px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 4px 18px var(--color-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* entry animation */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease,
    box-shadow 0.3s ease;
}
.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.value-card:nth-child(2) { transition-delay: 0.1s; }
.value-card:nth-child(3) { transition-delay: 0.2s; }
.value-card:nth-child(4) { transition-delay: 0.3s; }

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}

/* icon circle */
.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.value-card:hover .value-icon {
    background: var(--color-secondary);
}
.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    transition: color 0.3s;
}
.value-card:hover .value-icon svg {
    color: var(--color-white);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-secondary);
}
.value-card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .values-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .values-top    { grid-template-columns: 1fr; gap: 40px; }
    .values-visual img { height: 260px; }
    .values-badge  { bottom: -16px; left: 12px; }
    .values-section { padding: 60px 24px; }
}
@media (max-width: 480px) {
    .values-cards  { grid-template-columns: 1fr; }
    .values-section { padding: 48px 16px; }
}


/* ══════════════════════════════════════
   SECTION : Stats
══════════════════════════════════════ */
.stats-section {
    background: linear-gradient(
        135deg,
        var(--color-secondary) 0%,
        #cc1111 100%
    );
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
}

/* subtle decorative circle top-left */
.stats-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
/* subtle decorative circle bottom-right */
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* ── Each stat card ── */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    color: var(--color-white);

    /* entry animation (triggered by JS) */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }
.stat-item:nth-child(4) { transition-delay: 0.3s; }

/* ── Icon circle ── */
.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    transition: background 0.3s, border-color 0.3s;
}
.stat-item:hover .stat-icon {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.9);
}
.stat-icon svg {
    width: 34px;
    height: 34px;
}

/* ── Number ── */
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

/* ── Label ── */
.stat-label {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.80);
}

/* ── Divider between items (desktop) ── */
.stat-item + .stat-item {
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 40px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .stat-item + .stat-item {
        border-left: none;
        padding-left: 0;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.15);
        padding-right: 32px;
    }
}

@media (max-width: 480px) {
    .stats-section       { padding: 48px 20px; }
    .stats-container     { grid-template-columns: 1fr; gap: 36px; }
    .stat-item + .stat-item,
    .stat-item:nth-child(odd) {
        border: none;
        padding: 0;
    }
    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding-bottom: 28px;
    }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ══════════════════════════════════════
   SECTION : CTA Stockage
══════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    text-align: center;
}

/* ── Background image ── */
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.cta-section:hover .cta-bg img {
    transform: scale(1);
}

/* ── Overlay : deep brand gradient ── */
.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(26, 59, 110, 0.92) 0%, rgb(204 17 17 / 39%) 100%);
}

/* subtle noise texture on top of overlay */
.cta-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.18;
    pointer-events: none;
}

/* ── Content ── */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    color: var(--color-white);

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* tag */
.cta-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 20px;
    padding: 5px 18px;
}

/* title */
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.18;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.cta-title span {
    color: #ffcdd2; /* soft red tint on white bg */
    position: relative;
}
/* underline accent on span */
.cta-title span::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* description */
.cta-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
}

/* buttons row */
.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.cta-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); }

.cta-btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.cta-btn--primary:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.cta-btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.6);
}
.cta-btn--outline:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cta-section  { padding: 72px 24px; }
    .cta-title    { font-size: 1.7rem; }
}
@media (max-width: 480px) {
    .cta-section  { padding: 56px 16px; }
    .cta-actions  { flex-direction: column; width: 100%; }
    .cta-btn      { width: 100%; text-align: center; }
}
.office-google-map-wrapper iframe {
    width: 100%;
    height: 600px;
    margin-top: 20px;
    margin-bottom: 20px;

}
/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: var(--color-secondary);
    color: rgba(255,255,255,0.80);
    font-family: var(--font-body);
}

/* ── Shared container ── */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ══ TOP : 4-column grid ══ */
.footer-top {
    padding: 72px 0 56px;
}
.footer-top .footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr 1.4fr ;
    gap: 48px;
}

/* ── Column headings ── */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* ══ COL 1 : Brand ══ */
.footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo svg {
    width: 130px;
    height: auto;
}
.footer-logo img
{
    width:164px;
    height: 72px;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 280px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}
.social-link svg {
    width: 18px;
    height: 18px;
}

/* ══ COL 2 & 3 : Links ══ */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.92rem;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
}
.footer-links a::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.footer-links a:hover {
    color: var(--color-white);
    gap: 12px;
}
.footer-links a:hover::before {
    transform: scale(1.4);
}

/* ══ COL 4 : Contact ══ */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--color-white);
    line-height: 1.6;
}
.footer-contact a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(204,17,17,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-top: 1px;
}
.contact-icon svg { width: 16px; height: 16px; }

/* ══ BOTTOM BAR ══ */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom strong {
    color: rgba(255,255,255,0.75);
    font-weight: 700;
}

/* ══ Responsive ══ */
@media (max-width: 1024px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 640px) {
    .footer-container         { padding: 0 20px; }
    .footer-top               { padding: 48px 0 36px; }
    .footer-top .footer-container { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner      { flex-direction: column; text-align: center; }
}
/* ══════════════════════════════════════
      PAGE INSCRIPTION
   ══════════════════════════════════════ */
.inscription-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background: #f4f6fb;
}

.inscription-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    width: 100%;
    min-height: 100vh;
}

/* ════════════════════════════
   LEFT PANEL
════════════════════════════ */
.inscription-panel {
    position: relative;
    background: var(--color-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 44px;
}

/* decorative circles */
.inscription-panel::before,
.inscription-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.inscription-panel::before {
    width: 380px; height: 380px;
    top: -120px; right: -100px;
    background: rgba(204,17,17,0.18);
}
.inscription-panel::after {
    width: 260px; height: 260px;
    bottom: -80px; left: -80px;
    background: rgba(255,255,255,0.05);
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
    rgba(26,59,110,0.0) 0%,
    rgba(204,17,17,0.22) 100%);
    z-index: 0;
}

.panel-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    color: var(--color-white);
}

.panel-logo svg { width: 140px; height: auto; }

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1.25;
    color: var(--color-white);
}

.panel-sub {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    margin-top: -16px;
}

.panel-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}
.panel-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.91rem;
    color: rgba(255,255,255,0.82);
}
.perk-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.perk-icon svg { width: 17px; height: 17px; }

/* ════════════════════════════
   RIGHT FORM
════════════════════════════ */
.inscription-form-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px;
    background: #f4f6fb;
    overflow-y: auto;
}

.form-header { margin-bottom: 36px; }
.form-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--color-secondary);
}
.form-sub {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #888;
    margin-top: 6px;
}

/* ── Form layout ── */
.inscription-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 640px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-group--full { grid-column: 1 / -1; }

/* labels */
.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-secondary);
}
.form-group label span { color: var(--color-primary); }

/* input wrapper */
.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    display: flex;
    align-items: center;
    color: #aab;
    pointer-events: none;
    transition: color 0.2s;
}
.input-icon svg { width: 17px; height: 17px; }
.input-icon--top { top: 14px; align-items: flex-start; }

/* inputs & textarea & select */
.inscription-form input,
.inscription-form select,
.inscription-form textarea {
    width: 100%;
    padding: 13px 16px 13px 44px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: #222;
    background: var(--color-white);
    border: 1.5px solid #dde2ee;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.22s, box-shadow 0.22s;
    appearance: none;
    -webkit-appearance: none;
}
.inscription-form textarea { resize: vertical; min-height: 88px; }

.inscription-form input:focus,
.inscription-form select:focus,
.inscription-form textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(26,59,110,0.1);
}
/* icon color on focus */
.inscription-form input:focus ~ .input-icon,
.inscription-form select:focus ~ .input-icon,
.inscription-form textarea:focus ~ .input-icon,
.input-wrap:focus-within .input-icon { color: var(--color-secondary); }

/* invalid state */
.inscription-form input.is-invalid,
.inscription-form select.is-invalid,
.inscription-form textarea.is-invalid {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(204,17,17,0.1);
}

/* select arrow */
.input-wrap--select { position: relative; }
.select-arrow {
    position: absolute;
    right: 14px;
    pointer-events: none;
    color: #aab;
    display: flex;
}
.select-arrow svg { width: 18px; height: 18px; }

/* field errors */
.field-error {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--color-primary);
    min-height: 16px;
}

/* ── Submit button ── */
.form-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 32px;
    margin-top: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.25s, transform 0.2s;
}
.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
    transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.form-submit:hover::before { transform: translateX(100%); }
.form-submit:hover { background: #a80e0e; transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }

.btn-icon svg { width: 18px; height: 18px; }

/* loading state */
.btn-loader {
    display: none;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
.form-submit.loading .btn-text,
.form-submit.loading .btn-icon { display: none; }
.form-submit.loading .btn-loader { display: block; }
.form-submit:disabled { opacity: 0.75; cursor: not-allowed; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Global feedback ── */
.form-feedback {
    display: none;
    padding: 14px 18px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}
.form-feedback.success {
    display: block;
    background: #edfaf1;
    color: #1a7f4b;
    border: 1px solid #b2e8c8;
}
.form-feedback.error {
    display: block;
    background: #fff0f0;
    color: var(--color-primary);
    border: 1px solid #f5c2c2;
}

/* ── Login link ── */
.form-login {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #888;
    text-align: center;
}
.form-login a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}
.form-login a:hover { text-decoration: underline; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
    .inscription-container { grid-template-columns: 340px 1fr; }
    .inscription-form-wrap { padding: 48px 36px; }
}
@media (max-width: 768px) {
    .inscription-container { grid-template-columns: 1fr; }
    .inscription-panel {
        padding: 48px 28px;
        min-height: auto;
    }
    .inscription-form-wrap { padding: 40px 24px; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .inscription-form-wrap { padding: 32px 16px; }
    .form-title { font-size: 1.5rem; }
}
