@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,700;1,800&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ==================== CONFIGURATION GÉNÉRALE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #1f2937;
    background: #eef3f9;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

p, input, textarea, button, label {
    font-family: 'Inter', Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

button, a {
    font: inherit;
}

/* ==================== SECTION HÉRO ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 7, 12, 0.62), rgba(4, 7, 12, 0.5)),
        radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 35%);
    pointer-events: none;
    z-index: -1;
}

.site-intro-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 1;
    transition: opacity 0.75s ease;
}

.site-intro-overlay.hidden {
    display: none;
}

.site-intro-overlay.fading-out {
    opacity: 0;
    pointer-events: none;
}

.site-intro-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.site-intro-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
    background: #000;
}

.video-teaser-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2000;
}

.video-teaser-overlay.hidden {
    display: none;
}

.video-teaser-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    background: #000;
}

.video-teaser-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.36);
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.video-teaser-close:hover {
    background: rgba(10, 10, 10, 0.56);
    color: #fff;
}

.video-teaser-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.video-teaser-container video::-webkit-media-controls,
.video-teaser-container video::-webkit-media-controls-panel {
    display: none !important;
}

.video-teaser-container video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-teaser-container video::-webkit-media-controls-play-button,
.video-teaser-container video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.video-teaser-container video::-webkit-media-controls-timeline {
    display: none !important;
}

@media (max-width: 760px) {
    .video-teaser-close {
        top: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
    }
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(16px);
    z-index: 100;
    box-sizing: border-box;
}

.nav-right {
    position: relative;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    z-index: 110;
}

.lang-menu.hidden {
    display: none;
}

.lang-menu-item {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-menu-item:hover,
.lang-menu-item.active {
    background: rgba(79, 70, 229, 0.08);
}

.video-teaser-active .search-bar,
.video-teaser-active .search-input,
.video-teaser-active .search-suggestions,
.site-intro-active .search-bar,
.site-intro-active .search-input,
.site-intro-active .search-suggestions {
    display: none !important;
}

.dropbtn {
    background-color: rgba(255, 255, 255, 0.95);
    color: #111827;
    padding: 12px 18px;
    font-size: 15px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.dropbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.search-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    padding: 12px 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.search-input {
    width: 220px;
    font-size: 14px;
    color: #111827;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    max-height: 280px;
    overflow-y: auto;
    z-index: 50;
    display: none;
}

.search-suggestions.visible {
    display: block;
}

.suggestion-item {
    width: 100%;
    border: none;
    background: transparent;
    padding: 14px 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.suggestion-item:hover {
    background: rgba(79, 70, 229, 0.08);
}

.suggestion-title {
    font-weight: 700;
    color: #111827;
}

.suggestion-meta {
    color: #475569;
    font-size: 0.85rem;
}

.suggestion-snippet {
    color: #334155;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 8px;
}

.suggestion-snippet mark {
    background: rgba(79, 70, 229, 0.18);
    color: #312e81;
    padding: 0 3px;
    border-radius: 3px;
}

.lang-btn {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    transition: all 0.25s ease;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 90%;
    margin-top: 40px;
    z-index: 1;
}

.logo {
    width: 240px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.22));
}

.title-group h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin: 0;
    text-shadow: 0 20px 60px rgba(15, 23, 42, 0.45);
    line-height: 1.05;
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.45rem);
    margin-top: 22px;
    font-weight: 400;
    opacity: 0.94;
    max-width: 680px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 32px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-btn.primary {
    background: #4f46e5;
    color: white;
    box-shadow: 0 18px 32px rgba(79, 70, 229, 0.25);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
}

.home-highlights {
    padding: 40px 20px 60px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.home-highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    pointer-events: none;
    border-radius: 32px;
}

.highlights-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    min-width: 0;
}

.highlight-card {
    min-width: 0;
}

.highlight-card p,
.highlight-card ul,
.highlight-card li {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.highlight-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.highlight-card p {
    color: #475569;
    line-height: 1.8;
}

.offers-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 20px;
}

.offers-header {
    background: #f8fbff;
    padding: 70px 0 12px;
}

.offers-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255,255,255,0.95);
    padding: 14px;
    box-shadow: 0 22px 50px rgba(15,23,42,0.16);
}

.offers-title-block {
    text-align: left;
    max-width: 760px;
}

.offers-title-block h1 {
    margin: 0;
}

.offers-title-block p {
    margin-top: 12px;
}

.offers-title-block h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 14px;
}

.offers-title-block p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.offer-card {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
    border-radius: 40px;
    padding: 42px;
    border: 1px solid rgba(102, 126, 234, 0.16);
    box-shadow: 0 32px 80px rgba(102, 126, 234, 0.14);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(102, 126, 234, 0.18);
}

.offer-card h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.offer-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
    margin-bottom: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.offer-card p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 18px;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.offer-card li {
    margin-bottom: 10px;
    color: #334155;
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
}

.offer-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
}

.offer-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: auto;
}

/* =====================================================
   OFFERS CAROUSEL — full-viewport one-at-a-time slider
   ===================================================== */

body.offers-page {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Make the navbar sit normally in the flex flow for this page.
   On other pages it's position:absolute (hero-overlaying).
   Here we give it a stable height so .offers-main-wrap starts below it. */
body.offers-page .navbar {
    position: relative;
    background: var(--dark, #0a0a0f);
    flex-shrink: 0;
}

body.offers-page .bottom-bar {
    flex-shrink: 0;
}

.offers-main-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Compact header — no hero, no description paragraph */
body.offers-page .offers-header {
    flex-shrink: 0;
    background: var(--bg-warm, #faf8f3);
    padding: 24px 48px 16px;
}

body.offers-page .offers-top {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

body.offers-page .offers-logo {
    width: 52px;
    height: 52px;
    padding: 8px;
}

body.offers-page .offers-title-block h1 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin: 4px 0 0;
}

/* Slider section fills remaining space */
.offers-slider {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 16px 40px 0;
    background: var(--bg-warm, #faf8f3);
}

/* Slide track — absolutely positioned slides stack on top of each other */
.offers-slide-track {
    flex: 1;
    min-height: 0;
    position: relative;
}

.offer-slide {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateX(40px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.offer-slide.slide-prev-exit {
    transform: translateX(-40px);
    opacity: 0;
}

.offer-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* The card bubble */
.offer-bubble {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--gold-border, rgba(201, 168, 76, 0.22));
    border-radius: 28px;
    padding: 28px 36px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 52px rgba(15, 23, 42, 0.09);
    overflow: hidden;
}

/* Stylised title block — top-left of the bubble */
.offer-bubble-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.offer-index {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--gold, #c9a84c);
    line-height: 1;
    letter-spacing: -0.02em;
}

.offer-bubble-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    color: var(--dark, #0a0a0f);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Two-column body: image left, content right */
.offer-bubble-body {
    flex: 1;
    min-height: 0;
    display: flex;
    gap: 36px;
}

.offer-bubble-img-wrap {
    width: 36%;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.13);
}

.offer-bubble-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.offer-bubble-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    min-height: 0;
    overflow: auto;
}

.offer-bubble-content > p {
    color: #64748b;
    font-size: 0.97rem;
    line-height: 1.75;
    margin: 0;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.offer-features li {
    position: relative;
    padding-left: 22px;
    color: var(--dark, #0a0a0f);
    font-size: 0.95rem;
    line-height: 1.5;
}

.offer-features li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--gold, #c9a84c);
    font-size: 0.65rem;
}

.offer-price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px solid var(--gold-border, rgba(201, 168, 76, 0.2));
}

.offer-price-label {
    color: #94a3b8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.offer-price-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark, #0a0a0f);
}

/* Navigation bar — dots left, arrows right */
.offer-nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px 16px;
}

.offer-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(201, 168, 76, 0.3);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.offer-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--gold, #c9a84c);
}

.offer-arrows {
    display: flex;
    gap: 10px;
}

.offer-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-border, rgba(201, 168, 76, 0.35));
    background: transparent;
    color: var(--dark, #0a0a0f);
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.offer-arrow:hover:not(:disabled) {
    background: var(--gold, #c9a84c);
    border-color: var(--gold, #c9a84c);
    color: #fff;
}

.offer-arrow:disabled {
    opacity: 0.28;
    cursor: default;
}

/* Mobile: revert to scrollable layout, show cards stacked */
@media (max-width: 760px) {
    body.offers-page {
        height: auto;
        overflow: auto;
    }

    .offers-main-wrap {
        overflow: visible;
        height: auto;
    }

    .offers-slider {
        padding: 16px 20px 0;
    }

    .offers-slide-track {
        position: static;
        height: auto;
    }

    .offer-slide {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .offer-slide.active {
        display: flex;
        transform: none;
    }

    .offer-bubble {
        min-height: 70vh;
        padding: 24px 20px;
    }

    .offer-bubble-body {
        flex-direction: column;
    }

    .offer-bubble-img-wrap {
        width: 100%;
        height: 180px;
        flex-shrink: 0;
    }

    .offer-bubble-name {
        font-size: 2rem;
    }
}

@media (max-width: 1080px) {
    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offers-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }

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

    .offers-title-block {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 24px;
    }

    .offers-top {
        flex-direction: column;
        text-align: center;
    }

    .offers-top .offers-title-block {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .offers-top {
        flex-direction: column;
        text-align: center;
    }

    .offers-top .offers-title-block {
        text-align: center;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}

.cta-footer {
    background: linear-gradient(135deg, #2d6edf 0%, #4b55ff 100%);
}

.page-footer {
    margin-top: 40px;
    padding: 48px 20px 60px;
    background: #0f172a;
    color: #e2e8f0;
}

.page-footer .footer-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-footer .footer-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    padding: 28px;
}

.page-footer h2,
.page-footer h3 {
    margin-bottom: 14px;
    color: #f8fafc;
}

.page-footer p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 12px;
}

.page-footer .footer-link {
    display: inline-flex;
    margin-top: 20px;
    color: #93c5fd;
    text-decoration: none;
    font-weight: 700;
}

.page-footer .footer-link:hover {
    color: #e2e8f0;
}

.bottom-bar {
    width: 100%;
    background: #020617;
    padding: 18px 20px;
}

.bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.bottom-links a:hover {
    color: #93c5fd;
}

@media (max-width: 720px) {
    .bottom-links {
        flex-direction: column;
        align-items: stretch;
    }
}

.page-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.legal-page .page-content {
    padding-top: 120px;
}

.legal-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: #111827;
}

.legal-hero p {
    max-width: 820px;
    color: #475569;
    line-height: 1.9;
}

.legal-section {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.booking-section {
    margin-top: 30px;
    padding: 28px;
    background: #f8fafc;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 22px;
}

.booking-header > div:first-child {
    flex: 1;
}

.time-zone-picker {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-zone-picker label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.time-zone-picker select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: white;
    color: #0f172a;
    font-weight: 700;
}

.booking-section h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.booking-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 22px;
}

.booking-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.date-card {
    background: white;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    padding: 16px;
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.2s ease;
}

.date-card.active,
.date-card:hover {
    border-color: #4338ca;
    background: #eef2ff;
}

.booking-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.time-slot {
    background: white;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 14px 10px;
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.2s ease;
}

.time-slot:hover {
    border-color: #4338ca;
    background: #eef2ff;
}

.time-slot.selected {
    background: #4338ca;
    color: white;
    border-color: #4338ca;
}

.booking-empty {
    color: #64748b;
    padding: 14px 0;
}

.selected-slot {
    margin-top: 24px;
    padding: 18px 20px;
    background: #111827;
    color: white;
    border-radius: 18px;
}

.selected-slot p {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.selected-slot strong {
    display: block;
    font-size: 1.05rem;
}

.legal-section h2 {
    margin-bottom: 18px;
}

.legal-section p {
    margin-bottom: 14px;
}

.page-footer .footer-note {
    max-width: 1200px;
    margin: 24px auto 0;
    font-size: 0.95rem;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .page-footer .footer-inner {
        grid-template-columns: 1fr;
    }
}

.cta-button-large,
.cta-button {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button-large:hover,
.cta-button:hover {
    transform: translateY(-3px);
}

/* ==================== BARRE DE NAVIGATION ==================== */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 100;
    box-sizing: border-box;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Menu Déroulant */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropbtn:hover {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 5px;
    animation: slideDown 0.3s ease;
}

.dropdown-content.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Barre de Recherche */
.search-bar {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.search-bar:hover {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 200px;
    font-size: 14px;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

/* Bouton de Langue */
.lang-btn {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.flag {
    font-size: 18px;
}

/* ==================== CONTENU PRINCIPAL ==================== */
.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 90%;
    margin-top: 20px;
}

.logo {
    width: 200px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 0.8s ease-out;
}

.title-group h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.tagline {
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: 300;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.gallery-section {
    background: #fafafa;
    padding: 70px 20px 100px;
}

.gallery-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

.gallery-header p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.gallery-card p {
    padding: 18px 20px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

@media (max-width: 980px) {
    .gallery-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== PAGE À PROPOS ==================== */
.about-page {
    background: #f9f9f9;
}

.about-container {
    padding: 100px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.method-page {
    background: #f9f9f9;
}

.method-container {
    padding: 100px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.method-header {
    margin-bottom: 40px;
    text-align: center;
}

.method-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.method-video-section {
    margin: 0 0 32px;
}

.method-video-card {
    background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.16), transparent 34%),
        linear-gradient(180deg, #09090d 0%, #121219 100%);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    padding: 26px;
}

.method-video-head {
    margin-bottom: 18px;
}

.method-video-head h2 {
    color: #faf8f3;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.15;
}

.method-video-shell {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 420px;
}

.method-video-player {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: #000;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.9) contrast(1.02);
}

.method-video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(8, 8, 12, 0.22), rgba(8, 8, 12, 0.38)),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0.36) 100%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.25s ease, opacity 0.25s ease;
}

.method-video-shell.is-playing .method-video-overlay {
    background:
        linear-gradient(180deg, rgba(8, 8, 12, 0.08), rgba(8, 8, 12, 0.18)),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.16) 100%);
}

.method-video-center-btn {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(10, 10, 14, 0.56);
    color: #faf8f3;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    pointer-events: auto;
}

.method-video-center-btn:hover {
    transform: scale(1.04);
    background: rgba(14, 14, 20, 0.76);
    border-color: rgba(201, 168, 76, 0.62);
}

.method-video-center-icon {
    font-size: 2rem;
    line-height: 1;
    margin-left: 4px;
}

.method-video-shell.is-playing .method-video-center-btn {
    opacity: 0.72;
}

.method-video-controls {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    z-index: 2;
}

.method-video-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(126, 126, 126, 0.24);
    color: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.method-video-btn:hover {
    background: rgba(140, 140, 140, 0.32);
    border-color: rgba(255, 255, 255, 0.28);
}

.method-video-btn.is-active {
    background: rgba(160, 160, 160, 0.34);
    border-color: rgba(255, 255, 255, 0.36);
}

.method-video-btn-icon {
    font-size: 0.78rem;
    line-height: 1;
}

.method-video-btn.method-video-fullscreen {
    width: 26px;
    height: 26px;
    background: rgba(126, 126, 126, 0.2);
}

.method-video-fullscreen .method-video-btn-icon {
    font-size: 0.66rem;
}

.home-contact-cta {
    margin: 38px 0 24px;
}

.method-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 40px;
}

.method-page .gallery-section {
    background: transparent;
    padding: 0;
}

.method-stats {
    margin: 40px 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.stats-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.12);
}

.stats-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 50% !important;
}

.stats-card p {
    padding: 18px 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
}

.method-text {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 40px;
    background: #ffffff;
    padding: 30px 32px;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.05);
}

.about-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.bio-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.bio-image {
    flex-shrink: 0;
    width: 300px;
}

.profile-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.bio-section {
    flex: 1;
    padding: 28px 32px;
}

.bio-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* ==================== SECTION CTA FOOTER ==================== */
.cta-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px 20px;
    text-align: center;
    color: white;
}

.cta-footer-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-footer-content p {
    font-size: 0.97rem;
    margin-bottom: 22px;
    color: #fde68a;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 45px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ==================== PAGE DE CONTACT ==================== */
.contact-page {
    background: #f9f9f9;
}

.contact-container {
    padding: 100px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.contact-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.phone-group .phone-input-group {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
}

.phone-group select {
    border-radius: 8px;
}

@media (max-width: 700px) {
    .phone-group .phone-input-group {
        grid-template-columns: 1fr;
    }
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
    font-weight: 600;
}

.submission-meta {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #2f5f3d;
    word-break: break-word;
}

/* ==================== MEDIA QUERIES CONTACT ==================== */
@media (max-width: 768px) {
    .contact-container {
        padding: 80px 15px 40px;
    }

    .contact-content h1 {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .cta-footer-content h2 {
        font-size: 1.8rem;
    }

    .cta-footer-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px 15px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ==================== RESPONSIVITÉ MOBILE ==================== */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-left, .nav-right {
        gap: 10px;
    }

    .menu-text {
        display: none;
    }

    .search-input {
        width: 150px;
    }

    .lang-text {
        display: none;
    }

    /* Contenu Principal */
    .main-content {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .logo {
        width: 150px;
    }

    .title-group h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    /* À Propos */
    .about-container {
        padding: 80px 15px 40px;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .bio-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .bio-image {
        width: 100%;
    }

    .bio-section p {
        font-size: 1rem;
        text-align: left;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 8px;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
    }

    .nav-right {
        width: 100%;
        justify-content: space-between;
    }

    .search-input {
        width: 120px;
        font-size: 12px;
    }

    .title-group h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .main-content {
        padding: 20px;
    }

    .logo {
        width: 120px;
    }

    .about-container {
        padding: 70px 15px 30px;
    }

    .about-content h1 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .bio-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .dropbtn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .lang-btn {
        padding: 8px 12px;
    }

    .flag {
        font-size: 16px;
    }
}

/* ==================== ACCESSIBILITÉ ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ==================== IMPRESSION ==================== */
@media print {
    .navbar, .cta-section {
        display: none;
    }

    .hero-section {
        background: white;
        color: black;
        min-height: auto;
        padding: 20px;
    }

    .about-container {
        padding: 20px;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 20px;
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.faq-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #0f172a;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.faq-container {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.faq-bubble {
    background: #ffffff;
    border-radius: 36px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
    padding: 54px 46px;
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid rgba(79, 70, 229, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: #0f172a;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: rgba(79, 70, 229, 0.25);
    transform: translateX(8px);
}

.faq-question span:first-child {
    text-align: left;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: #4f46e5;
    font-weight: 700;
    transition: transform 0.3s ease;
    min-width: 24px;
}

.faq-question:not(.active) .faq-icon {
    transform: rotate(0deg);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px 24px;
    border-left: 4px solid #4f46e5;
    margin-top: 12px;
    background: rgba(79, 70, 229, 0.03);
    border-radius: 12px;
    animation: slideDown 0.4s ease;
}

.faq-answer.hidden {
    display: none;
}

.faq-answer p {
    color: #334155;
    line-height: 1.85;
    margin: 0;
    font-size: 0.98rem;
    max-width: 74ch;
    text-wrap: pretty;
}

.faq-answer p + p {
    margin-top: 12px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 16px;
    }

    .faq-bubble {
        padding: 32px 24px;
        border-radius: 28px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .faq-question:hover {
        transform: translateX(4px);
    }

    .faq-item {
        margin-bottom: 20px;
    }

    .faq-answer {
        padding: 16px 18px;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 12px;
    }

    .faq-bubble {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .faq-item {
        margin-bottom: 16px;
    }

    .faq-answer {
        padding: 14px 16px;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .faq-header h2 {
        font-size: 1.5rem;
    }

    .faq-header p {
        font-size: 0.95rem;
    }
}

/* ==================== EVENTS PAGE ==================== */
.events-page {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.3)), 
                url('stage 4.JPG') no-repeat fixed center / cover;
    position: relative;
    overflow-x: hidden;
}

.events-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.35);
    pointer-events: none;
    z-index: 0;
}

.events-page .page-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

/* Events Header */
.events-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.events-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    text-shadow: 0 16px 32px rgba(15, 23, 42, 0.4);
    margin-bottom: 18px;
}

.events-intro {
    font-size: 1.15rem;
    color: #f1f5f9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 8px 16px rgba(15, 23, 42, 0.3);
}

/* Carousel Section */
.carousel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 60px 0;
}

.carousel-section h2 {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 12px 24px rgba(15, 23, 42, 0.3);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    perspective: 1000px;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.35);
    max-height: 500px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-item.active {
    display: block;
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #0f172a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: 700;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}

.carousel-btn.prev {
    left: -70px;
}

.carousel-btn.next {
    right: -70px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Event Bubble Section */
.events-bubble-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    margin: 80px 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.event-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 48px;
    padding: 60px 80px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 48px 80px rgba(15, 23, 42, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-bubble:hover {
    transform: translateY(-12px);
    box-shadow: 0 64px 100px rgba(15, 23, 42, 0.4);
}

.event-year {
    font-size: 2.2rem;
    color: #4f46e5;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.event-name {
    font-size: 1.65rem;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.event-location {
    font-size: 1.15rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
}

.event-cta {
    font-size: 1rem;
    color: #4f46e5;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid rgba(79, 70, 229, 0.2);
}

/* Fade Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Events */
@media (max-width: 1024px) {
    .carousel-btn.prev {
        left: -50px;
    }

    .carousel-btn.next {
        right: -50px;
    }

    .carousel-wrapper {
        max-height: 400px;
    }

    .event-bubble {
        padding: 50px 60px;
        max-width: 100%;
        margin: 0 20px;
    }

    .event-year {
        font-size: 1.8rem;
    }

    .event-name {
        font-size: 1.4rem;
    }

    .carousel-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .events-page .page-content {
        padding-top: 80px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .carousel-container {
        gap: 12px;
    }

    .carousel-btn.prev {
        left: -30px;
    }

    .carousel-btn.next {
        right: -30px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-wrapper {
        max-height: 300px;
        border-radius: 20px;
    }

    .event-bubble {
        padding: 40px 30px;
        border-radius: 32px;
        margin: 0 16px;
    }

    .event-year {
        font-size: 1.5rem;
    }

    .event-name {
        font-size: 1.2rem;
    }

    .event-location {
        font-size: 1rem;
    }

    .carousel-indicators {
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 28px;
    }

    .events-header h1 {
        font-size: 2rem;
    }

    .events-intro {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .events-page::before {
        background: rgba(15, 23, 42, 0.45);
    }

    .carousel-btn.prev,
    .carousel-btn.next {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .carousel-btn.prev {
        top: 20px;
        right: 50px;
        left: auto;
    }

    .carousel-btn.next {
        top: 20px;
        left: auto;
        right: 10px;
    }

    .carousel-wrapper {
        max-height: 250px;
    }

    .event-bubble {
        padding: 30px 20px;
        border-radius: 24px;
        margin: 0 10px;
    }

    .event-year {
        font-size: 1.3rem;
    }

    .event-name {
        font-size: 1.05rem;
    }

    .event-location {
        font-size: 0.95rem;
    }

    .carousel-section {
        margin: 40px 0;
    }

    .events-bubble-container {
        min-height: 300px;
        margin: 60px 0;
    }
}

/* ==================== ACCESSIBILITE ET MOBILE ==================== */
:focus-visible {
    outline: 3px solid #0ea5e9;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    body {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-section {
        min-height: 100svh;
    }

    .navbar {
        padding: 10px 12px;
        gap: 8px;
        align-items: flex-start;
    }

    .nav-left,
    .nav-right {
        width: 100%;
    }

    .nav-right {
        justify-content: space-between;
        gap: 8px;
    }

    .search-bar {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
    }

    .search-input {
        width: 100%;
        font-size: 16px;
    }

    .main-content {
        max-width: 100%;
        gap: 20px;
        padding: 108px 16px 30px;
        margin-top: 0;
    }

    .logo {
        width: min(150px, 45vw);
    }

    .title-group h1 {
        font-size: clamp(2rem, 11vw, 2.7rem);
        line-height: 1.1;
    }

    .tagline {
        font-size: 1rem;
        line-height: 1.6;
        margin-top: 14px;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
    }

    .hero-btn,
    .dropbtn,
    .lang-btn,
    .cta-button-large,
    .faq-question,
    .video-teaser-close {
        min-height: 44px;
    }

    .home-highlights {
        margin-top: -20px;
        padding: 24px 14px 40px;
    }

    .highlight-card {
        border-radius: 20px;
        padding: 20px;
    }

    .faq-section {
        padding: 48px 14px;
    }

    .faq-question {
        padding: 18px 14px;
        align-items: flex-start;
        gap: 12px;
    }

    .faq-answer {
        padding: 0 14px 18px;
    }

    .bottom-links a {
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .main-content {
        padding-top: 116px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================== MODERN UI REFRESH ==================== */
:root {
    --bg-base: #e9eff7;
    --bg-soft: #f8fbff;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-border: rgba(15, 23, 42, 0.1);
    --text-strong: #0f172a;
    --text-muted: #334155;
    --brand: #1d4ed8;
    --brand-soft: #dbeafe;
    --radius-lg: 24px;
    --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.08);
}

html,
body {
    width: 100%;
}

body {
    background:
        radial-gradient(circle at 8% 10%, rgba(29, 78, 216, 0.08), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(14, 165, 233, 0.08), transparent 32%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-base) 100%);
    color: var(--text-strong);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

p,
li,
label,
input,
textarea,
button,
.faq-answer p,
.bio-section p,
.method-text p,
.contact-intro {
    line-height: 1.72;
    color: var(--text-muted);
}

h1,
h2,
h3 {
    color: var(--text-strong);
}

.hero-section,
.offers-header,
.faq-section,
.cta-footer,
.page-footer,
.bottom-bar {
    width: 100%;
}

.home-highlights,
.faq-section,
.about-container,
.method-container,
.contact-container,
.page-content,
.offers-top,
.offers-grid,
.events-bubble-container,
.highlights-grid,
.faq-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.dropdown-content,
.lang-menu,
.search-suggestions {
    border: 1px solid var(--surface-border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.dropbtn,
.lang-btn,
.search-bar,
.hero-btn,
.cta-button,
.cta-button-large,
.submit-btn,
.faq-question {
    min-height: 46px;
}

.search-input,
input,
select,
textarea {
    font-size: 16px;
}

.highlight-card,
.offer-card,
.stats-card,
.legal-section,
.booking-section,
.faq-bubble,
.contact-content,
.method-text,
.bio-section,
.gallery-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
}

.highlight-card:hover,
.offer-card:hover,
.gallery-card:hover,
.stats-card:hover {
    transform: translateY(-3px);
}

.hero-btn.primary,
.cta-button,
.cta-button-large,
.submit-btn {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.hero-btn.secondary {
    border: 1px solid var(--surface-border);
}

.logo,
.profile-photo,
.offers-logo {
    filter: drop-shadow(0 12px 26px rgba(15, 23, 42, 0.16));
}

.gallery-card img,
.offer-card img,
.profile-photo {
    object-fit: cover;
}

.bottom-links {
    justify-content: center;
    gap: 14px 26px;
}

.bottom-links a {
    font-weight: 600;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .main-content {
        gap: 24px;
        padding-inline: 20px;
    }

    .title-group h1 {
        line-height: 1.08;
    }

    .offers-grid,
    .highlights-grid {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 12px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-left,
    .nav-right {
        width: 100%;
    }

    .nav-right {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
    }

    .search-bar {
        width: 100%;
        min-width: 0;
        padding: 10px 12px;
    }

    .search-input {
        width: 100%;
    }

    .dropdown-content {
        width: min(90vw, 340px);
        max-height: 70svh;
        overflow-y: auto;
    }

    .main-content {
        padding: 108px 14px 28px;
    }

    .home-highlights,
    .faq-section,
    .offers-grid,
    .offers-top,
    .about-container,
    .method-container,
    .contact-container,
    .page-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .highlight-card,
    .offer-card,
    .stats-card,
    .legal-section,
    .booking-section,
    .faq-bubble,
    .contact-content,
    .method-text,
    .bio-section {
        border-radius: 18px;
        padding: 20px;
    }

    .faq-question {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-btn,
    .cta-button,
    .cta-button-large,
    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .title-group h1 {
        font-size: clamp(1.9rem, 10vw, 2.55rem);
    }

    .tagline {
        font-size: 1rem;
    }

    .video-teaser-close {
        width: 44px;
        height: 44px;
    }
}

/* ==================== BOUTON SON VIDEO TEASER ==================== */
.video-teaser-sound {
    position: absolute;
    top: 14px;
    left: 14px;
    transform: none;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.52);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.video-teaser-sound:hover {
    background: rgba(10, 10, 10, 0.72);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

.video-teaser-sound.sound-on {
    border-color: rgba(96, 165, 250, 0.7);
    background: rgba(29, 78, 216, 0.45);
}

.sound-icon-off {
    font-size: 1.15rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .video-teaser-sound {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 0.74rem;
    }
}

/* ==================== HERO CINÉMATIQUE ==================== */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.home-page .hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(201, 168, 76, 0.18), transparent 28%),
        linear-gradient(120deg, rgba(0, 0, 0, 0.08), transparent 45%);
    z-index: 0;
    pointer-events: none;
}

.hero-anim-logo {
    animation: heroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-anim-title {
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-anim-tagline {
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero-anim-actions {
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

/* ==================== PHOTOS RECENTRÉES ==================== */
.showcase-tile img {
    object-position: center 20%;
}

.showcase-tile.large img {
    object-position: center 15%;
}

article.showcase-tile:nth-child(2) img {
    object-position: center 30%;
}

article.showcase-tile:nth-child(3) img {
    object-position: center top;
}

.gallery-card img {
    object-position: center 20%;
}

.profile-photo {
    object-position: center top;
}

.offer-card img {
    object-position: center 15%;
}

/* ==================== CROSS-PAGE POLISH ==================== */
.about-page,
.method-page,
.contact-page,
.legal-page,
.events-page {
    background:
        radial-gradient(circle at 14% 8%, rgba(29, 78, 216, 0.09), transparent 36%),
        radial-gradient(circle at 88% 16%, rgba(14, 165, 233, 0.08), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #eaf2fb 100%);
}

.about-container,
.method-container,
.contact-container,
.page-content {
    padding-top: 112px;
}

.about-content h1,
.method-header h1,
.contact-content h1,
.legal-hero h1,
.events-header h1,
.offers-title-block h1 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    letter-spacing: -0.03em;
}

.about-content p,
.method-text p,
.legal-section p,
.contact-intro,
.event-location,
.offer-card p,
.offer-card li {
    color: #334155;
}

.contact-form,
.booking-section,
.legal-section,
.method-text,
.bio-section,
.event-bubble,
.offer-card {
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.method-video-card {
    border-radius: 24px;
}

input,
select,
textarea {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
    outline: none;
}

.dropdown-content a,
.bottom-links a {
    font-size: 0.96rem;
}

.dropdown-content a {
    padding: 13px 16px;
}

/* ==================== HOMEPAGE EMPHASIS ==================== */
.home-page .hero-section {
    background: #05070b;
}

.home-page .title-group h1 {
    color: #ffffff;
    text-wrap: balance;
    text-shadow: 0 18px 48px rgba(2, 6, 23, 0.52);
}

.home-page .tagline {
    max-width: 720px;
    margin-inline: auto;
}

.home-proof-strip {
    max-width: 1200px;
    margin: 18px auto 0;
    padding: 0 20px 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.proof-label {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
}

.proof-value {
    margin-top: 4px;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: #0f172a;
    font-weight: 800;
}

.home-showcase {
    max-width: 1200px;
    margin: 6px auto 46px;
    padding: 0 20px;
}

.home-showcase-head {
    margin-bottom: 20px;
}

.home-showcase-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.home-showcase-head p {
    margin-top: 10px;
    max-width: 760px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, minmax(150px, 220px));
    gap: 14px;
}

.showcase-tile {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.showcase-tile.large {
    grid-row: span 2;
}

.showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-tile:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .home-proof-strip {
        grid-template-columns: 1fr;
        padding-inline: 14px;
    }

    .home-showcase {
        padding-inline: 14px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .showcase-tile,
    .showcase-tile.large {
        min-height: 220px;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .about-container,
    .method-container,
    .contact-container,
    .page-content {
        padding-top: 94px;
    }

    .proof-card {
        padding: 16px;
    }

    .home-showcase {
        margin-bottom: 32px;
    }
}

/* ==================== MOBILE HOTFIXES ==================== */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .about-container,
    .method-container,
    .contact-container,
    .page-content,
    .events-page .page-content {
        padding-top: 220px !important;
    }

    .offers-header {
        padding-top: 220px;
    }

    .offers-grid,
    .stats-grid,
    .highlights-grid {
        grid-template-columns: 1fr !important;
    }

    .offer-card,
    .stats-card {
        max-width: 100%;
    }

    .booking-header {
        flex-direction: column;
        align-items: stretch;
    }

    .time-zone-picker {
        min-width: 0;
        width: 100%;
    }

    .phone-group .phone-input-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-form,
    .booking-section,
    .contact-content {
        overflow: hidden;
    }

    .form-group,
    .phone-number-field,
    .phone-group,
    .time-zone-picker {
        min-width: 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select,
    .phone-group select,
    .time-zone-picker select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .method-stats .stats-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 8px;
        grid-template-columns: none !important;
    }

    .method-stats .stats-card {
        flex: 0 0 86%;
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .video-teaser-container {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        padding: 12px;
        box-sizing: border-box;
    }

    .video-teaser-container video {
        width: min(92vw, 420px);
        max-height: 78svh;
        height: auto;
        object-fit: contain;
        object-position: center center;
        border-radius: 14px;
    }
}

@media (max-width: 932px) and (orientation: landscape) {
    .video-teaser-container {
        padding: 8px;
    }

    .video-teaser-container video {
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: calc(100svh - 16px);
        object-fit: contain;
        border-radius: 10px;
    }
}

/* ==================== FINAL TABLET + VIDEO OVERRIDES ==================== */
@media (max-width: 1024px) and (orientation: portrait) {
    .video-teaser-container {
        padding: 16px;
    }

    .video-teaser-container video {
        width: auto;
        height: auto;
        max-width: 84vw;
        max-height: 68svh;
        object-fit: contain;
        border-radius: 12px;
    }
}

@media (max-width: 1024px) and (orientation: landscape) and (pointer: coarse) {
    .video-teaser-container {
        padding: 10px;
    }

    .video-teaser-container video {
        width: auto;
        height: auto;
        max-width: 86vw;
        max-height: 76svh;
        object-fit: contain;
        border-radius: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1180px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 10px 14px;
        gap: 10px;
        flex-wrap: wrap;
        z-index: 120;
    }

    .nav-left,
    .nav-right {
        width: 100%;
    }

    .nav-right {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
    }

    .search-bar {
        width: 100%;
        min-width: 0;
        padding: 10px 12px;
    }

    .search-input {
        width: 100%;
        min-width: 0;
    }

    .about-container,
    .method-container,
    .contact-container,
    .page-content,
    .events-page .page-content,
    .offers-header {
        padding-top: 178px !important;
    }

    .home-highlights,
    .faq-section,
    .offers-grid,
    .offers-top,
    .about-container,
    .method-container,
    .contact-container,
    .page-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .offers-grid,
    .highlights-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-header {
        flex-direction: column;
        align-items: stretch;
    .bio-section,
    .method-video-card {
    }

    .time-zone-picker {

    .method-video-card {
        padding: 0;
    }
        width: 100%;
        min-width: 0;
    }

    .form-group,
    .phone-group,
    .phone-number-field,
    .time-zone-picker {
        min-width: 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select,
    .phone-group select,
    .time-zone-picker select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media (min-width: 769px) and (max-width: 1180px) and (orientation: landscape) {
    .about-container,
    .method-container,
    .contact-container,
    .page-content,
    .events-page .page-content,
    .offers-header {
        padding-top: 192px !important;
    }

    .method-stats .stats-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none !important;
        padding-bottom: 8px;
    }

    .method-stats .stats-card {
        flex: 0 0 46%;
        scroll-snap-align: start;
    }
}

/* ==================== FINAL MOBILE/TABLET POLISH ==================== */
.navbar {
    transition: padding 0.22s ease, backdrop-filter 0.22s ease, box-shadow 0.22s ease;
}

@media (max-width: 1180px) {
    .navbar.navbar-scrolled {
        padding-top: 3px !important;
        padding-bottom: 3px !important;
        gap: 6px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 24px rgba(2, 6, 23, 0.25);
    }

    .navbar.navbar-scrolled .dropbtn,
    .navbar.navbar-scrolled .lang-btn,
    .navbar.navbar-scrolled .search-bar {
        min-height: 34px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .navbar.navbar-scrolled .search-input {
        font-size: 14px;
    }
}

@media (max-width: 1180px) {
    .bottom-bar {
        padding: 10px 10px;
    }

    .bottom-links {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
    }

    .bottom-links::-webkit-scrollbar {
        display: none;
    }

    .bottom-links a {
        flex: 0 0 auto;
        font-size: 0.78rem;
        line-height: 1.25;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .video-teaser-container {
        padding: 18px !important;
    }

    .video-teaser-container video {
        width: min(82vw, 360px) !important;
        max-width: 82vw !important;
        max-height: 64svh !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 932px) and (orientation: landscape) and (pointer: coarse) {
    .video-teaser-container {
        padding: 8px !important;
        overflow: hidden;
    }

    .video-teaser-container video {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 86svh !important;
        object-fit: contain !important;
        transform: none !important;
        border-radius: 8px;
    }
}

/* ==================== DA OVERHAUL — PREMIUM GOLD ==================== */

/* --- Tokens --- */
:root {
    --gold: #c9a84c;
    --gold-hover: #b8902e;
    --gold-soft: rgba(201, 168, 76, 0.12);
    --gold-border: rgba(201, 168, 76, 0.25);
    --dark: #0a0a0f;
    --bg-warm: #faf8f3;
    --bg-warm-2: #f0e9da;
}

/* --- Body: warm cream background --- */
body {
    background:
        radial-gradient(circle at 8% 10%, rgba(201, 168, 76, 0.06), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(201, 168, 76, 0.04), transparent 32%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-warm-2) 100%);
    color: #0d0d10;
}

/* --- Inner pages: warm cream --- */
.about-page,
.method-page,
.contact-page,
.legal-page {
    background:
        radial-gradient(circle at 14% 8%, rgba(201, 168, 76, 0.06), transparent 36%),
        radial-gradient(circle at 88% 16%, rgba(201, 168, 76, 0.04), transparent 34%),
        linear-gradient(180deg, #faf8f3 0%, #ece5d5 100%);
}

/* --- Section overline --- */
.section-overline {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Inter', Arial, sans-serif;
}

/* --- Hero buttons --- */
.hero-btn.primary {
    background: var(--gold);
    box-shadow: 0 10px 24px rgba(201, 168, 76, 0.35);
    color: #fff;
}

.hero-btn.primary:hover {
    background: var(--gold-hover);
    box-shadow: 0 14px 32px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
}

.hero-btn.secondary {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    box-shadow: none;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    color: #fff;
}

/* --- CTA buttons --- */
.cta-button,
.submit-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    box-shadow: 0 10px 24px rgba(201, 168, 76, 0.28);
    color: #fff;
}

.cta-button:hover,
.submit-btn:hover {
    background: linear-gradient(135deg, var(--gold-hover) 0%, #a07824 100%);
    box-shadow: 0 14px 30px rgba(201, 168, 76, 0.38);
}

/* --- CTA footer → dark section --- */
.cta-footer {
    background: var(--dark);
}

.cta-footer-content h2 {
    color: #faf8f3;
}

.cta-footer-content p {
    color: rgba(250, 248, 243, 0.65);
}

.cta-button-large {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.32);
    font-weight: 700;
}

.cta-button-large:hover {
    background: var(--gold-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(201, 168, 76, 0.42);
}

/* --- Proof strip → dark section --- */
.home-proof-strip {
    background: var(--dark);
    max-width: 100% !important;
    margin: 0 !important;
    padding: 32px max(20px, 5vw) !important;
    width: 100%;
    box-sizing: border-box;
}

.proof-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
}

.proof-value {
    color: #faf8f3;
}

/* --- Home highlights header --- */
.home-highlights-head {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 20px;
}

.home-highlights-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    color: #0d0d10;
    margin: 0;
}

/* --- Showcase head --- */
.home-showcase-head h2 {
    color: #0d0d10;
}

/* --- FAQ accent → gold --- */
.faq-section {
    background: var(--bg-warm);
}

.faq-question {
    border-color: rgba(201, 168, 76, 0.12);
    background: linear-gradient(135deg, #faf8f3 0%, #f5efe3 100%);
}

.faq-question:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(135deg, #f5efe3 0%, #ede4d0 100%);
}

.faq-icon {
    color: var(--gold);
}

.faq-answer {
    border-left-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

/* --- Event accent → gold --- */
.event-year {
    color: var(--gold);
}

.event-cta {
    color: var(--gold);
    border-top-color: rgba(201, 168, 76, 0.2);
}

/* --- Offer cards --- */
.offer-card {
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: 0 24px 60px rgba(201, 168, 76, 0.07);
    background: linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
}

.offer-card li::before {
    color: var(--gold);
}

/* --- Booking / date selectors --- */
.date-card.active,
.date-card:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.time-slot:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.time-slot.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* --- Focus states → gold --- */
input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
    outline: none;
}

/* --- Cards: warmer border tone --- */
.highlight-card,
.stats-card,
.legal-section,
.booking-section,
.faq-bubble,
.contact-form,
.method-text,
.bio-section {
    border-color: rgba(201, 168, 76, 0.12);
}

/* --- Dropdown / suggestions → gold hover --- */
.lang-menu-item:hover,
.lang-menu-item.active,
.suggestion-item:hover {
        padding: 18px;
    }

    .method-video-shell {
        border-radius: 16px;
        min-height: 240px;
    }

    .method-video-player {
        min-height: 240px;
    }

    .method-video-center-btn {
        width: 72px;
        height: 72px;
    }

    .method-video-center-icon {
        font-size: 1.55rem;
    }

    .method-video-controls {
        left: 12px;
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .method-video-btn {
        padding: 10px 12px;
    }

    .method-video-btn-label {
        font-size: 0.84rem;
}

.suggestion-snippet mark {
    background: rgba(201, 168, 76, 0.18);
    color: #7a5d1a;
}

/* --- Footer links --- */
.page-footer .footer-link {
    color: var(--gold);
}

.page-footer .footer-link:hover {
    color: #faf8f3;
}

.bottom-links a:hover {
    color: var(--gold);
}

/* --- Sound button active → gold --- */
.video-teaser-sound.sound-on {
    border-color: rgba(201, 168, 76, 0.7);
    background: rgba(201, 168, 76, 0.25);
}

/* --- Focus visible → gold --- */
:focus-visible {
    outline-color: var(--gold);
}

/* --- Contact form focus override already handled above --- */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}

/* --- Proof strip responsive --- */
@media (max-width: 900px) {
    .home-proof-strip {
        grid-template-columns: 1fr !important;
        padding: 24px 14px !important;
    }
}

/* --- Highlights head responsive --- */
@media (max-width: 768px) {
    .home-highlights-head h2 {
        font-size: 1.6rem;
    }
}

/* =====================================================
   2026 PREMIUM BRAND SYSTEM
   Blue / Black / Gray / White / Gold
   Typography inspired by thrivenat.com
   ===================================================== */

:root {
    --brand-blue: #163e7a;
    --brand-blue-deep: #0f2850;
    --brand-ink: #070b11;
    --brand-charcoal: #151c26;
    --brand-slate: #5c6778;
    --brand-line: rgba(17, 25, 40, 0.1);
    --brand-line-strong: rgba(201, 168, 76, 0.24);
    --brand-paper: #f6f7f8;
    --brand-white: #ffffff;
    --brand-gold: #c9a84c;
    --brand-gold-deep: #a9842f;
    --brand-shadow: 0 24px 70px rgba(7, 11, 17, 0.12);
}

html {
    background: var(--brand-paper);
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--brand-charcoal);
    background:
        radial-gradient(circle at 12% 10%, rgba(22, 62, 122, 0.06), transparent 30%),
        radial-gradient(circle at 84% 16%, rgba(201, 168, 76, 0.08), transparent 24%),
        linear-gradient(180deg, #f5f7fa 0%, #eceff3 100%);
}

h1,
h2,
.offer-bubble-name,
.offers-title-block h1,
.contact-content h1,
.about-content h1,
.method-header h1,
.events-header h1,
.page-content h1,
.legal-page h1,
.hero-section h1 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    letter-spacing: 0.03em;
    font-weight: 400;
}

h3,
h4,
.event-name,
.faq-question,
.highlight-card h3,
.stats-card p,
.gallery-card p {
    font-family: 'Barlow Condensed', 'Inter', sans-serif;
    letter-spacing: 0.03em;
}

.section-overline,
.dropbtn,
.menu-text,
.lang-btn,
.hero-btn,
.cta-button,
.cta-button-large,
.submit-btn,
.offer-index,
.offer-price-label,
.proof-label,
.booking-header label,
.bottom-links a {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    letter-spacing: 0.08em;
}

.navbar {
    background: linear-gradient(180deg, rgba(7, 11, 17, 0.78), rgba(7, 11, 17, 0.58));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.dropbtn,
.lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--brand-white);
    border-radius: 999px;
    text-transform: uppercase;
}

.dropdown-content,
.lang-menu {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 25, 40, 0.08);
    box-shadow: 0 24px 60px rgba(7, 11, 17, 0.16);
}

.dropdown-content a,
.lang-menu-item {
    color: var(--brand-charcoal);
}

.dropdown-content a:hover,
.lang-menu-item:hover,
.lang-menu-item.active,
.suggestion-item:hover {
    background: rgba(22, 62, 122, 0.08);
    color: var(--brand-blue-deep);
}

.search-bar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.search-input {
    color: var(--brand-white);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.hero-section::before {
    background:
        linear-gradient(180deg, rgba(7, 11, 17, 0.76), rgba(7, 11, 17, 0.52)),
        linear-gradient(90deg, rgba(15, 40, 80, 0.36), rgba(7, 11, 17, 0.12)),
        radial-gradient(circle at top, rgba(201, 168, 76, 0.12), transparent 34%);
}

.main-content {
    max-width: 1080px;
    padding: 148px 24px 88px;
}

.title-group h1 {
    font-size: clamp(4.3rem, 10vw, 8rem);
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--brand-white);
    text-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.tagline,
.home-page .tagline,
.hero-anim-tagline {
    color: var(--brand-white) !important;
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-size: clamp(1rem, 2.3vw, 1.32rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.94;
}

.hero-actions {
    gap: 16px;
}

.hero-btn,
.cta-button,
.cta-button-large,
.submit-btn {
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-btn.primary,
.cta-button,
.submit-btn {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
    color: var(--brand-white);
    box-shadow: 0 18px 40px rgba(15, 40, 80, 0.28);
}

.hero-btn.primary:hover,
.cta-button:hover,
.submit-btn:hover {
    background: linear-gradient(135deg, #1b4b95 0%, #12315f 100%);
    color: var(--brand-white);
    transform: translateY(-2px);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.54);
    color: var(--brand-white);
}

.hero-btn.secondary:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.88);
    color: var(--brand-white);
}

.section-overline {
    color: var(--brand-gold);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
}

.home-highlights,
.home-showcase,
.faq-section,
.about-content,
.contact-content,
.method-container,
.page-content,
.offers-main-wrap,
.legal-page main,
.legal-page .page-content {
    position: relative;
}

.home-highlights,
.home-showcase,
.faq-section {
    background: transparent;
}

.highlight-card,
.proof-card,
.showcase-tile,
.faq-bubble,
.faq-question,
.legal-section,
.booking-section,
.contact-form,
.bio-section,
.method-text,
.method-video-card,
.gallery-card,
.stats-card,
.event-bubble,
.carousel-section,
.offer-bubble,
.offers-header,
.about-content,
.contact-content {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--brand-line);
    box-shadow: var(--brand-shadow);
    backdrop-filter: blur(8px);
}

.highlight-card,
.faq-bubble,
.legal-section,
.booking-section,
.contact-form,
.bio-section,
.method-text,
.method-video-card,
.gallery-card,
.stats-card,
.event-bubble,
.carousel-section,
.about-content,
.contact-content {
    border-radius: 28px;
}

.highlight-card:hover,
.gallery-card:hover,
.stats-card:hover,
.offer-bubble:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(7, 11, 17, 0.16);
}

.highlight-card h3,
.home-highlights-head h2,
.home-showcase-head h2,
.faq-header h2,
.method-video-head h2,
.booking-header h2,
.events-header h1,
.event-name,
.offers-title-block h1,
.contact-content h1,
.about-content h1,
.method-header h1,
.legal-page h1 {
    color: var(--brand-ink);
}

.highlight-card p,
.home-showcase-head p,
.faq-header p,
.contact-intro,
.events-intro,
.bio-section p,
.method-text p,
.booking-header p,
.cta-footer-content p,
.offer-bubble-content > p,
.offer-features li,
.event-location {
    color: var(--brand-slate);
}

.home-proof-strip {
    background:
        linear-gradient(135deg, var(--brand-ink) 0%, #101e35 52%, var(--brand-blue-deep) 100%) !important;
    border-top: 1px solid rgba(201, 168, 76, 0.16);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.proof-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-label {
    color: rgba(255, 255, 255, 0.72);
}

.proof-value,
.event-year {
    color: var(--brand-gold);
}

.showcase-tile {
    border-radius: 24px;
    overflow: hidden;
}

.showcase-tile::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 35%;
    background: linear-gradient(180deg, transparent, rgba(7, 11, 17, 0.16));
    pointer-events: none;
}

.faq-question {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 250, 0.96));
    border: 1px solid rgba(17, 25, 40, 0.08);
}

.faq-question:hover {
    border-color: rgba(22, 62, 122, 0.2);
    background: linear-gradient(180deg, #ffffff, #f0f4f9);
}

.faq-answer {
    background: rgba(22, 62, 122, 0.04);
    border-left-color: var(--brand-gold);
}

.faq-icon,
.offer-features li::before,
.page-footer .footer-link,
.bottom-links a:hover,
.event-cta {
    color: var(--brand-gold);
}

.about-page,
.method-page,
.contact-page,
.legal-page,
.events-page,
.offers-page {
    background:
        radial-gradient(circle at 10% 8%, rgba(22, 62, 122, 0.08), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(201, 168, 76, 0.1), transparent 22%),
        linear-gradient(180deg, #f7f8fa 0%, #edf1f5 100%);
}

body.offers-page .navbar {
    background: linear-gradient(180deg, var(--brand-ink), rgba(7, 11, 17, 0.92));
}

body.offers-page .offers-header {
    background: transparent;
    box-shadow: none;
    border: none;
}

.offer-bubble {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 247, 248, 0.98));
    border: 1px solid var(--brand-line-strong);
}

.offer-index {
    color: var(--brand-gold);
}

.offer-price-tag {
    border-top-color: rgba(22, 62, 122, 0.12);
}

.offer-price-value {
    color: var(--brand-blue-deep);
}

.offer-arrow {
    border-color: rgba(22, 62, 122, 0.16);
    color: var(--brand-blue-deep);
}

.offer-arrow:hover:not(:disabled) {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--brand-white);
}

.offer-dot.active {
    background: var(--brand-gold);
}

.carousel-btn,
.carousel-indicators .indicator.active,
.time-slot.selected,
.date-card.active {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--brand-white);
}

.time-slot:hover,
.date-card:hover {
    border-color: rgba(22, 62, 122, 0.35);
    background: rgba(22, 62, 122, 0.06);
}

.form-group input,
.form-group select,
.form-group textarea,
.search-suggestions {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(17, 25, 40, 0.12);
}

input:focus,
select:focus,
textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue) !important;
    box-shadow: 0 0 0 3px rgba(22, 62, 122, 0.12) !important;
}

.cta-footer {
    background:
        linear-gradient(135deg, var(--brand-ink) 0%, #0d1c32 48%, var(--brand-blue-deep) 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(201, 168, 76, 0.16), transparent 24%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 32%);
    pointer-events: none;
}

.cta-footer-content {
    position: relative;
    z-index: 1;
}

.cta-footer-content h2 {
    color: var(--brand-white);
}

.cta-footer-content p {
    color: rgba(255, 255, 255, 0.74);
}

.cta-button-large {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-deep) 100%);
    color: var(--brand-ink);
    box-shadow: 0 18px 36px rgba(201, 168, 76, 0.24);
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #d7b45a 0%, #b89133 100%);
    color: var(--brand-ink);
}

.page-footer,
.bottom-bar {
    background: var(--brand-ink);
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 900px) {
    .title-group h1 {
        font-size: clamp(3.4rem, 15vw, 5.8rem);
    }

    .main-content {
        padding-top: 132px;
    }

    .offer-bubble,
    .highlight-card,
    .faq-bubble,
    .booking-section,
    .contact-form,
    .bio-section,
    .method-video-card,
    .method-text,
    .event-bubble,
    .carousel-section {
        border-radius: 22px;
    }
}

@media (max-width: 760px) {
    .navbar {
        background: linear-gradient(180deg, rgba(7, 11, 17, 0.88), rgba(7, 11, 17, 0.74));
    }

    .tagline,
    .home-page .tagline,
    .hero-anim-tagline {
        letter-spacing: 0.12em;
    }

    .hero-btn,
    .cta-button,
    .cta-button-large,
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   FINAL HOME + RESPONSIVE PASS
   Mobile-first, tablet-safe, premium composition
   ===================================================== */

.navbar {
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.navbar-scrolled {
    background: linear-gradient(180deg, rgba(7, 11, 17, 0.94), rgba(7, 11, 17, 0.9));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    top: calc(100% + 12px);
    border-radius: 22px;
    padding: 10px;
}

.dropdown-content a {
    border-radius: 14px;
}

.main-content {
    width: min(1120px, calc(100% - 48px));
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.title-group {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.hero-kicker {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    letter-spacing: 0.22em;
}

.hero-intro {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-stat-value {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.06em;
    color: var(--brand-gold);
    line-height: 1;
}

.hero-stat-label {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.86);
}

.logo {
    width: clamp(150px, 20vw, 220px);
    flex-shrink: 0;
}

.home-highlights,
.home-showcase,
.faq-section {
    padding-left: 24px;
    padding-right: 24px;
}

.home-highlights {
    margin-top: -54px;
    padding-top: 0;
}

.home-highlights::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.64));
    border-radius: 36px;
}

.home-highlights-head,
.home-showcase-head,
.faq-header,
.events-header,
.method-header,
.contact-content > .section-overline,
.contact-content > h1,
.contact-intro,
.legal-hero,
.about-content {
    max-width: 860px;
}

.home-highlights-head p:last-child,
.home-showcase-head p:last-child,
.faq-header p,
.events-intro,
.contact-intro,
.legal-hero p,
.method-header p,
.offers-title-block p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.home-showcase {
    padding-top: 74px;
    padding-bottom: 74px;
}

.faq-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.showcase-grid,
.highlights-grid,
.stats-grid,
.gallery-grid {
    align-items: stretch;
}

.about-container,
.contact-container,
.method-container,
.page-content {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 120px;
    padding-bottom: 72px;
}

.about-content,
.contact-content,
.legal-hero,
.method-header,
.events-header {
    margin-left: auto;
    margin-right: auto;
}

.bio-wrapper,
.booking-header,
.offer-bubble-body {
    align-items: stretch;
}

.bio-image,
.offer-bubble-img-wrap {
    min-width: 0;
}

.bio-section,
.method-text,
.legal-section,
.event-bubble,
.carousel-section,
.booking-section,
.contact-form,
.faq-bubble,
.offer-bubble {
    overflow: hidden;
}

.contact-form,
.booking-section,
.legal-section,
.method-video-card,
.method-text,
.about-content,
.event-bubble,
.carousel-section {
    padding: 28px;
}

.carousel-container {
    gap: 12px;
}

.carousel-btn,
.offer-arrow {
    min-width: 46px;
    min-height: 46px;
}

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

@media (max-width: 1100px) {
    .main-content {
        gap: 34px;
        width: min(100%, calc(100% - 36px));
    }

    .title-group h1 {
        font-size: clamp(3.6rem, 8vw, 6rem);
    }

    .bio-wrapper,
    .offer-bubble-body {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 12px 16px;
    }

    .main-content {
        flex-direction: column;
        text-align: center;
        gap: 22px;
        padding: 132px 0 72px;
    }

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

    .hero-intro,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .highlights-grid,
    .showcase-grid,
    .stats-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-tile.large {
        grid-column: span 2;
    }

    .bio-wrapper,
    .booking-header,
    .form-row,
    .offer-bubble-body {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .offer-bubble-img-wrap {
        width: 100%;
        max-height: 320px;
    }

    .carousel-container {
        flex-wrap: nowrap;
    }
}

@media (max-width: 760px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 18px;
    }

    .navbar {
        padding: 10px 12px;
        align-items: stretch;
        gap: 10px;
    }

    .nav-left,
    .nav-right {
        width: 100%;
    }

    .nav-right {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
    }

    .dropbtn,
    .lang-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
    }

    .dropdown-content {
        position: absolute;
        left: 0;
        right: auto;
        width: min(92vw, 360px);
        max-height: min(72svh, 560px);
        overflow-y: auto;
    }

    .lang-menu {
        right: 0;
        width: min(92vw, 260px);
    }

    .search-bar {
        min-width: 0;
        width: 100%;
        padding: 10px 12px;
    }

    .search-suggestions {
        left: 0;
        right: 0;
        width: 100%;
    }

    .main-content {
        width: calc(100% - 28px);
        padding: 116px 0 54px;
        gap: 18px;
    }

    .title-group h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
        line-height: 0.96;
    }

    .hero-kicker {
        font-size: 0.8rem;
        letter-spacing: 0.16em;
    }

    .hero-intro {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-top: 14px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-stat-pill {
        width: 100%;
        justify-content: space-between;
        border-radius: 18px;
    }

    .home-highlights,
    .home-showcase,
    .faq-section,
    .about-container,
    .contact-container,
    .method-container,
    .page-content,
    .offers-slider,
    body.offers-page .offers-header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-highlights {
        margin-top: -18px;
    }

    .home-highlights::before {
        border-radius: 24px;
    }

    .highlights-grid,
    .showcase-grid,
    .stats-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .showcase-tile.large {
        grid-column: auto;
    }

    .showcase-tile,
    .showcase-tile.large {
        min-height: 220px;
    }

    .highlight-card,
    .faq-bubble,
    .booking-section,
    .contact-form,
    .bio-section,
    .method-video-card,
    .method-text,
    .event-bubble,
    .carousel-section,
    .legal-section,
    .about-content,
    .contact-content,
    .offer-bubble {
        padding: 20px;
        border-radius: 20px;
    }

    .faq-question {
        padding: 16px 0;
    }

    .bottom-bar {
        padding: 18px 14px 24px;
    }

    .bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .nav-right {
        grid-template-columns: 1fr;
    }

    .main-content {
        width: calc(100% - 24px);
        padding-top: 112px;
    }

    .title-group h1 {
        font-size: clamp(2.72rem, 15vw, 4rem);
    }

    .hero-btn,
    .cta-button,
    .cta-button-large,
    .submit-btn,
    .dropbtn,
    .lang-btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .offer-price-tag {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .carousel-container {
        gap: 8px;
    }

    .carousel-btn,
    .offer-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 760px) {
    .dropdown-content {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        max-height: none;
        margin-top: 0;
        border-radius: 0;
        padding: calc(env(safe-area-inset-top, 0px) + 18px) 18px calc(env(safe-area-inset-bottom, 0px) + 24px);
        background:
            radial-gradient(circle at 18% 12%, rgba(201, 168, 76, 0.14), transparent 20%),
            linear-gradient(180deg, rgba(7, 11, 17, 0.98) 0%, rgba(13, 28, 50, 0.98) 100%);
        box-shadow: none;
        border: none;
        overflow-y: auto;
        z-index: 1200;
    }

    .dropdown-content.active {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .dropdown-content a {
        padding: 15px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        color: #fff;
        font-family: 'Barlow Condensed', 'Inter', sans-serif;
        font-size: clamp(1.15rem, 4vw, 1.4rem);
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .dropdown-content a:hover,
    .dropdown-content a:focus-visible {
        background: rgba(201, 168, 76, 0.12);
        border-color: rgba(201, 168, 76, 0.28);
        color: #fff;
    }
}

.tagline {
    color: #ffffff;
}

@media (max-width: 760px) {
    .method-video-controls {
        left: 10px;
        right: 10px;
        bottom: 10px;
        gap: 6px;
    }

    .method-video-btn {
        padding: 7px 9px;
        border-radius: 12px;
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(8, 8, 12, 0.48);
    }

    .method-video-btn-icon {
        font-size: 0.88rem;
    }

    .method-video-btn-label {
        display: none;
    }
}

@keyframes navReveal {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-content.active {
    animation: navReveal 0.22s ease-out;
}

.dropdown:hover .dropdown-content {
    animation: navReveal 0.22s ease-out;
}

.contact-trust-strip {
    margin: 22px 0 28px;
    padding: 22px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 16% 14%, rgba(201, 168, 76, 0.14), transparent 26%),
        linear-gradient(130deg, rgba(11, 24, 43, 0.98) 0%, rgba(15, 39, 67, 0.98) 100%);
    border: 1px solid rgba(201, 168, 76, 0.22);
    box-shadow: 0 20px 46px rgba(11, 24, 43, 0.2);
}

.contact-trust-strip h2 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px;
}

.contact-trust-card h3 {
    color: #f7d88a;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-trust-card p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .contact-trust-grid {
        grid-template-columns: 1fr;
    }
}

.cta-footer {
    background:
        linear-gradient(135deg, #09182b 0%, #102d4e 52%, #163e7a 100%) !important;
}

/* Final ergonomics override */
.tagline,
.home-page .tagline,
.hero-anim-tagline {
    color: #ffffff !important;
}

.home-page .hero-section .title-group .tagline,
.home-page .hero-section .title-group .hero-anim-tagline,
.home-page .hero-section .title-group p.tagline {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.method-video-overlay {
    pointer-events: none;
    z-index: 2;
}

.method-video-center-btn {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(116, 116, 116, 0.16);
    color: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(2px);
    pointer-events: auto;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.method-video-center-btn:hover {
    background: rgba(128, 128, 128, 0.24);
    border-color: rgba(255, 255, 255, 0.24);
    transform: none;
}

.method-video-center-icon {
    font-size: 0.98rem;
    margin-left: 1px;
}

.method-video-shell.is-playing .method-video-center-btn {
    opacity: 0.58;
}

.method-video-controls {
    z-index: 3;
    right: 10px;
    bottom: 10px;
}

.method-video-btn.method-video-fullscreen {
    width: 24px;
    height: 24px;
}

.method-video-fullscreen .method-video-btn-icon {
    font-size: 0.62rem;
}

.navbar {
    position: fixed !important;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1200;
    transform: translateY(0);
    transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.navbar.navbar-hidden {
    transform: translateY(-108%);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-right {
    gap: 10px;
    min-width: 0;
}

.search-bar {
    min-width: 0;
}

.search-input {
    width: 100%;
    min-width: 0;
}

@media (max-width: 900px) {
    .navbar {
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 8px;
        padding: 10px 10px;
    }

    .nav-left,
    .nav-right {
        width: auto !important;
    }

    .nav-right {
        flex: 1;
        justify-content: flex-end;
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    .search-bar {
        flex: 1;
        max-width: min(54vw, 280px);
    }

    .dropbtn,
    .lang-btn {
        flex-shrink: 0;
    }
}

/* Stable compact navbar override */
.navbar,
.navbar.navbar-scrolled,
body.offers-page .navbar {
    width: auto !important;
    left: 10px !important;
    right: 10px !important;
    top: 10px !important;
    padding: 8px 10px !important;
    border-radius: 16px;
    background: rgba(10, 16, 27, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.16) !important;
    transform: translateY(0) !important;
}

.navbar.navbar-hidden {
    transform: translateY(0) !important;
}

.dropbtn,
.lang-btn,
.search-bar {
    min-height: 34px !important;
}

.dropbtn,
.lang-btn {
    padding: 8px 11px !important;
    border-radius: 999px !important;
    font-size: 0.84rem !important;
}

.search-bar {
    padding: 7px 10px !important;
    border-radius: 999px !important;
}

.search-input {
    font-size: 0.82rem !important;
}

@media (max-width: 760px) {
    .navbar,
    .navbar.navbar-scrolled,
    body.offers-page .navbar {
        left: 8px !important;
        right: 8px !important;
        top: 8px !important;
        padding: 6px 8px !important;
        gap: 6px !important;
    }

    .nav-left {
        flex: 0 0 auto;
        width: auto !important;
    }

    .nav-right {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0;
        gap: 6px !important;
    }

    .search-bar {
        flex: 1 1 auto !important;
        max-width: 42vw !important;
        min-width: 0 !important;
        padding: 6px 9px !important;
    }

    .search-input {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 0.78rem !important;
    }

    .dropbtn,
    .lang-btn {
        padding: 7px 9px !important;
        font-size: 0.78rem !important;
        min-height: 32px !important;
    }

    .dropbtn .menu-text,
    .lang-btn .lang-text {
        line-height: 1;
    }
}

/* Disable hover-open by default; click toggles via JS */
.dropdown:hover .dropdown-content {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .dropdown:hover .dropdown-content {
        display: block;
        animation: navReveal 0.22s ease-out;
    }
}

/* Absolute final mobile navbar lock */
@media (max-width: 760px) {
    .navbar,
    .navbar.navbar-scrolled,
    body.offers-page .navbar {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        left: 6px !important;
        right: 6px !important;
        top: 6px !important;
        width: auto !important;
        padding: 4px 6px !important;
        gap: 5px !important;
        border-radius: 14px !important;
        background: rgba(8, 12, 20, 0.58) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        backdrop-filter: blur(8px) !important;
        box-shadow: 0 4px 14px rgba(2, 6, 23, 0.1) !important;
    }

    .nav-left {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .nav-right {
        flex: 1 1 auto !important;
        display: grid !important;
        grid-template-columns: minmax(0, 96px) auto !important;
        align-items: center !important;
        justify-content: end !important;
        width: auto !important;
        min-width: 0 !important;
        gap: 5px !important;
    }

    .dropdown {
        display: flex !important;
        align-items: center !important;
    }

    .dropbtn,
    .lang-btn,
    .search-bar {
        min-height: 28px !important;
        height: 28px !important;
        box-shadow: none !important;
    }

    .dropbtn,
    .lang-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
        line-height: 1 !important;
        border-radius: 999px !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }

    .search-bar {
        display: flex !important;
        align-items: center !important;
        width: 96px !important;
        max-width: 96px !important;
        min-width: 96px !important;
        padding: 0 8px !important;
        border-radius: 999px !important;
        overflow: hidden !important;
    }

    .search-bar > span {
        margin-right: 4px !important;
        font-size: 0.72rem !important;
        line-height: 1 !important;
        flex: 0 0 auto !important;
    }

    .search-input {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 0.72rem !important;
        line-height: 1 !important;
    }

    .search-input::placeholder {
        font-size: 0.72rem !important;
    }

    .flag {
        font-size: 0.82rem !important;
        line-height: 1 !important;
    }

    .dropbtn .menu-text,
    .lang-btn .lang-text {
        display: inline-block !important;
        line-height: 1 !important;
    }
}

/* Final global navbar uniformity */
.navbar,
.navbar.navbar-scrolled,
body.offers-page .navbar {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(8, 12, 20, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(10px) !important;
}

.nav-left,
.nav-right,
.dropdown,
.search-bar,
.dropbtn,
.lang-btn {
    align-items: center !important;
}

.nav-left {
    display: flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
}

.nav-right {
    display: flex !important;
    flex: 1 1 auto !important;
    justify-content: flex-end !important;
    width: auto !important;
    min-width: 0 !important;
    gap: 6px !important;
}

.dropbtn,
.lang-btn,
.search-bar,
.search-input,
.dropdown-content a,
.lang-menu-item,
.bottom-links a,
.section-overline,
.hero-btn,
.cta-button,
.cta-button-large,
.submit-btn {
    font-family: 'Rajdhani', 'Inter', 'Noto Sans SC', 'Microsoft YaHei', sans-serif !important;
}

.dropbtn,
.lang-btn,
.search-bar {
    background: rgba(8, 12, 20, 0.88) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 999px !important;
    box-shadow: none !important;
}

.dropbtn,
.lang-btn {
    display: inline-flex !important;
    justify-content: center !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 7px 10px !important;
    min-height: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
    line-height: 1 !important;
}

.search-bar {
    display: flex !important;
    justify-content: center !important;
    width: 112px !important;
    max-width: 112px !important;
    min-width: 112px !important;
    min-height: 32px !important;
    height: 32px !important;
    padding: 0 10px !important;
}

.search-bar > span {
    display: none !important;
}

.search-input,
.search-input::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.78rem !important;
    line-height: 1 !important;
}

.flag {
    font-size: 0.84rem !important;
    line-height: 1 !important;
}

@media (max-width: 760px) {
    .navbar,
    .navbar.navbar-scrolled,
    body.offers-page .navbar {
        left: 6px !important;
        right: 6px !important;
        top: 6px !important;
        padding: 4px 6px !important;
        gap: 5px !important;
        border-radius: 14px !important;
    }

    .nav-right {
        display: grid !important;
        grid-template-columns: minmax(0, 92px) auto !important;
        gap: 5px !important;
    }

    .dropbtn,
    .lang-btn,
    .search-bar {
        min-height: 28px !important;
        height: 28px !important;
    }

    .dropbtn,
    .lang-btn {
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
    }

    .search-bar {
        width: 92px !important;
        max-width: 92px !important;
        min-width: 92px !important;
        padding: 0 8px !important;
    }

    .search-input,
    .search-input::placeholder {
        font-size: 0.72rem !important;
    }
}

/* Mobile navbar fix while preserving desktop DA */
@media (max-width: 760px) {
    .navbar,
    .navbar.navbar-scrolled,
    body.offers-page .navbar {
        left: 10px !important;
        right: 10px !important;
        top: 10px !important;
        width: auto !important;
        padding: 8px 10px !important;
        gap: 8px !important;
        border-radius: 18px !important;
        background: linear-gradient(180deg, rgba(7, 11, 17, 0.78), rgba(7, 11, 17, 0.58)) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(16px) !important;
        box-shadow: 0 8px 22px rgba(2, 6, 23, 0.16) !important;
    }

    .nav-left {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .nav-right {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
    }

    .dropbtn,
    .lang-btn {
        min-height: 40px !important;
        height: 40px !important;
        padding: 0 13px !important;
        border-radius: 999px !important;
        font-size: 0.9rem !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        color: #ffffff !important;
        box-shadow: none !important;
    }

    .search-bar {
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: min(56vw, 280px) !important;
        min-width: 0 !important;
        min-height: 40px !important;
        height: 40px !important;
        padding: 0 14px !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: none !important;
    }

    .search-input,
    .search-input::placeholder {
        font-size: 0.92rem !important;
        line-height: 1 !important;
    }

    .dropbtn .menu-text,
    .lang-btn .lang-text {
        display: inline !important;
        line-height: 1 !important;
    }
}

@media (max-width: 430px) {
    .navbar,
    .navbar.navbar-scrolled,
    body.offers-page .navbar {
        left: 8px !important;
        right: 8px !important;
        top: 8px !important;
        padding: 7px 8px !important;
        gap: 6px !important;
    }

    .dropbtn,
    .lang-btn,
    .search-bar {
        min-height: 36px !important;
        height: 36px !important;
    }

    .dropbtn,
    .lang-btn {
        padding: 0 10px !important;
        font-size: 0.82rem !important;
    }

    .search-bar {
        max-width: min(50vw, 210px) !important;
        padding: 0 11px !important;
    }

    .search-input,
    .search-input::placeholder {
        font-size: 0.82rem !important;
    }
}

/* Final typography lock (match reference capture) */
body,
input,
textarea,
button,
select,
a,
p,
li,
span,
label {
    font-family: 'Inter', 'Rajdhani', 'Noto Sans SC', 'Microsoft YaHei', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-section h1,
.title-group h1,
.hero-anim-title,
.method-header h1,
.offers-title-block h1,
.about-content h1,
.contact-content h1,
.events-header h1,
.legal-hero h1 {
    font-family: 'Bebas Neue', 'Barlow Condensed', 'Rajdhani', 'Noto Sans SC', 'Microsoft YaHei', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.035em !important;
}

.section-overline,
.dropbtn,
.menu-text,
.lang-btn,
.lang-text,
.hero-btn,
.cta-button,
.cta-button-large,
.submit-btn,
.offer-index,
.offer-price-label,
.proof-label,
.bottom-links a,
.search-input,
.search-input::placeholder {
    font-family: 'Rajdhani', 'Inter', 'Noto Sans SC', 'Microsoft YaHei', sans-serif !important;
}

.hero-anim-tagline,
.tagline {
    font-family: 'Rajdhani', 'Inter', 'Noto Sans SC', 'Microsoft YaHei', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.16em !important;
}

/* Reference capture lock - homepage */
.home-page .navbar,
.home-page .navbar.navbar-scrolled {
    left: 14px !important;
    right: 14px !important;
    top: 10px !important;
    width: auto !important;
    padding: 10px 12px !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, rgba(7, 11, 17, 0.8), rgba(7, 11, 17, 0.62)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.22) !important;
    backdrop-filter: blur(16px) !important;
}

.home-page .dropbtn,
.home-page .lang-btn {
    background: rgba(16, 24, 38, 0.94) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    min-height: 46px !important;
    height: 46px !important;
    padding: 0 18px !important;
    font-family: 'Rajdhani', 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
}

.home-page .search-bar {
    position: relative;
    background: rgba(35, 44, 63, 0.74) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 999px !important;
    min-height: 46px !important;
    height: 46px !important;
    padding: 0 18px 0 46px !important;
    max-width: min(44vw, 420px) !important;
    width: min(44vw, 420px) !important;
    box-shadow: none !important;
}

.home-page .search-bar::before {
    content: '\1F50D';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-52%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.06rem;
    line-height: 1;
    pointer-events: none;
}

.home-page .search-input,
.home-page .search-input::placeholder {
    color: rgba(255, 255, 255, 0.88) !important;
    font-family: 'Rajdhani', 'Inter', sans-serif !important;
    font-size: 1.02rem !important;
    letter-spacing: 0.01em !important;
}

.home-page .hero-anim-tagline,
.home-page .tagline {
    font-family: 'Rajdhani', 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: clamp(1.35rem, 2.2vw, 2rem) !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    opacity: 0.96 !important;
}

.home-page .hero-btn {
    min-height: 72px;
    padding: 0 38px !important;
    border-radius: 999px !important;
    font-family: 'Rajdhani', 'Inter', sans-serif !important;
    font-size: clamp(1.1rem, 1.7vw, 1.42rem) !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.home-page .hero-btn.primary {
    background: linear-gradient(135deg, #164b9f 0%, #1f56b3 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(34, 88, 173, 0.8) !important;
    box-shadow: none !important;
}

.home-page .hero-btn.secondary {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(201, 168, 76, 0.62) !important;
    box-shadow: none !important;
}

.home-page .highlight-card h3,
.home-page .highlight-card p,
.home-page .highlight-card li,
.home-page .highlight-card .suggestion-title,
.home-page .highlight-card .suggestion-meta,
.home-page .highlight-card .suggestion-snippet {
    font-family: 'Barlow Condensed', 'Inter', sans-serif !important;
}

@media (max-width: 900px) {
    .home-page .navbar,
    .home-page .navbar.navbar-scrolled {
        left: 10px !important;
        right: 10px !important;
        top: 8px !important;
        padding: 8px 10px !important;
    }

    .home-page .dropbtn,
    .home-page .lang-btn,
    .home-page .search-bar {
        min-height: 42px !important;
        height: 42px !important;
    }

    .home-page .search-bar {
        width: min(46vw, 280px) !important;
        max-width: min(46vw, 280px) !important;
        padding-left: 42px !important;
    }

    .home-page .hero-btn {
        min-height: 60px;
        font-size: clamp(1rem, 3.2vw, 1.2rem) !important;
        padding: 0 30px !important;
    }
}

/* Mobile navbar parity: match The Method layout on selected pages */
@media (max-width: 760px) {
    body.home-page .navbar,
    body.home-page .navbar.navbar-scrolled,
    body.about-page .navbar,
    body.about-page .navbar.navbar-scrolled,
    body.events-page .navbar,
    body.events-page .navbar.navbar-scrolled,
    body.contact-page .navbar,
    body.contact-page .navbar.navbar-scrolled,
    body.legal-page .navbar,
    body.legal-page .navbar.navbar-scrolled {
        left: 10px !important;
        right: 10px !important;
        top: 10px !important;
        width: auto !important;
        padding: 12px 10px !important;
        gap: 10px !important;
        border-radius: 18px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        align-items: center !important;
    }

    body.home-page .nav-left,
    body.about-page .nav-left,
    body.events-page .nav-left,
    body.contact-page .nav-left,
    body.legal-page .nav-left {
        grid-row: 1 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    body.home-page .nav-right,
    body.about-page .nav-right,
    body.events-page .nav-right,
    body.contact-page .nav-right,
    body.legal-page .nav-right {
        grid-row: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 10px !important;
    }

    body.home-page .dropbtn,
    body.home-page .lang-btn,
    body.about-page .dropbtn,
    body.about-page .lang-btn,
    body.events-page .dropbtn,
    body.events-page .lang-btn,
    body.contact-page .dropbtn,
    body.contact-page .lang-btn,
    body.legal-page .dropbtn,
    body.legal-page .lang-btn {
        min-height: 40px !important;
        height: 40px !important;
        padding: 0 13px !important;
        border-radius: 999px !important;
        font-size: 0.9rem !important;
    }

    body.home-page .search-bar,
    body.about-page .search-bar,
    body.events-page .search-bar,
    body.contact-page .search-bar,
    body.legal-page .search-bar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 40px !important;
        height: 40px !important;
        padding: 0 14px !important;
        border-radius: 999px !important;
    }

    body.home-page .search-input,
    body.home-page .search-input::placeholder,
    body.about-page .search-input,
    body.about-page .search-input::placeholder,
    body.events-page .search-input,
    body.events-page .search-input::placeholder,
    body.contact-page .search-input,
    body.contact-page .search-input::placeholder,
    body.legal-page .search-input,
    body.legal-page .search-input::placeholder {
        font-size: 0.92rem !important;
        line-height: 1 !important;
    }
}

@media (max-width: 430px) {
    body.home-page .navbar,
    body.home-page .navbar.navbar-scrolled,
    body.about-page .navbar,
    body.about-page .navbar.navbar-scrolled,
    body.events-page .navbar,
    body.events-page .navbar.navbar-scrolled,
    body.contact-page .navbar,
    body.contact-page .navbar.navbar-scrolled,
    body.legal-page .navbar,
    body.legal-page .navbar.navbar-scrolled {
        left: 8px !important;
        right: 8px !important;
        top: 8px !important;
        padding: 10px 8px !important;
        gap: 8px !important;
    }

    body.home-page .dropbtn,
    body.home-page .lang-btn,
    body.home-page .search-bar,
    body.about-page .dropbtn,
    body.about-page .lang-btn,
    body.about-page .search-bar,
    body.events-page .dropbtn,
    body.events-page .lang-btn,
    body.events-page .search-bar,
    body.contact-page .dropbtn,
    body.contact-page .lang-btn,
    body.contact-page .search-bar,
    body.legal-page .dropbtn,
    body.legal-page .lang-btn,
    body.legal-page .search-bar {
        min-height: 36px !important;
        height: 36px !important;
    }

    body.home-page .dropbtn,
    body.home-page .lang-btn,
    body.about-page .dropbtn,
    body.about-page .lang-btn,
    body.events-page .dropbtn,
    body.events-page .lang-btn,
    body.contact-page .dropbtn,
    body.contact-page .lang-btn,
    body.legal-page .dropbtn,
    body.legal-page .lang-btn {
        padding: 0 10px !important;
        font-size: 0.82rem !important;
    }

    body.home-page .nav-right,
    body.about-page .nav-right,
    body.events-page .nav-right,
    body.contact-page .nav-right,
    body.legal-page .nav-right {
        gap: 8px !important;
    }

    body.home-page .search-input,
    body.home-page .search-input::placeholder,
    body.about-page .search-input,
    body.about-page .search-input::placeholder,
    body.events-page .search-input,
    body.events-page .search-input::placeholder,
    body.contact-page .search-input,
    body.contact-page .search-input::placeholder,
    body.legal-page .search-input,
    body.legal-page .search-input::placeholder {
        font-size: 0.82rem !important;
    }
}
