/*
    Soul Sailing - Stylesheet (Symfony version)
    Colors:
    - Primary Blue: #0B2545 (Deep Navy)
    - Secondary/Accent: #D4AF37 (Gold/Sand)
    - Light: #F8F9FA
    - Dark: #1A1A1A
*/

:root {
    --primary: #0B2545;
    --primary-light: #133D6E;
    --accent: #D4AF37;
    --accent-hover: #E3C154;
    --text-dark: #2C3E50;
    --text-light: #F8F9FA;
    --text-muted: #7F8C8D;
    --bg-light: #F4F6F8;
    --bg-white: #FFFFFF;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

html { overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary);
}

em { font-style: italic; color: var(--accent); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Layout */
.container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 8rem 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }

/* Typography */
.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title { font-size: 3.5rem; margin-bottom: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary { background-color: var(--primary); color: var(--text-light); }
.btn-primary:hover { background-color: var(--accent); transform: translateY(-2px); color: var(--primary); }

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}
.btn-outline:hover { background-color: var(--text-light); color: var(--primary); }

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-primary:hover { background-color: var(--primary); color: var(--text-light); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: white;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1rem 0;
    border-bottom: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.logo-img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo--footer { background: none; padding: 0; box-shadow: none; }
.logo-img--footer {
    height: 90px;
    filter: none;
}

.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

/* Language Switcher */
.lang-switcher {
    position: relative;
}
.lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid #d0d0d0;
    color: var(--primary);
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}
.lang-current:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.lang-chevron {
    font-size: 0.6rem;
    transition: transform 0.25s;
}
.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--primary);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown a {
    display: block;
    padding: 0.65rem 1.1rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}
.lang-dropdown a.active {
    color: var(--accent);
    background: rgba(212,175,55,0.1);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(11, 37, 69, 0.98);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-lang {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}
.mobile-lang a {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    border-bottom: none;
    padding: 0;
}
.mobile-lang a.active { color: var(--accent); }

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 9999;
    padding: 1rem 3rem 1rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 400px;
    animation: slideIn 0.3s ease;
}
.flash-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.flash-error { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.flash-close {
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
}
.flash-close:hover { opacity: 1; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11,37,69,0.8) 0%, rgba(11,37,69,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    padding-top: 5rem;
}

.hero-content h1 {
    font-size: 5.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-buttons { display: flex; align-items: center; gap: 1.5rem; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0.7;
    color: var(--text-light);
}

.scroll-indicator span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }

.mouse {
    width: 20px;
    height: 30px;
    border: 1px solid var(--text-light);
    border-radius: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background-color: var(--text-light);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* Page Hero (for Gallery, etc.) */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}
.page-hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}
.page-hero-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
    text-align: center;
    width: 100%;
}
.page-hero-content h1 {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 300;
}

/* Intro Section */
.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    align-items: center;
}

.intro-text p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* About — duo de photos */
.about-duo {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.about-photo-card {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11,37,69,0.18);
}
.about-photo-card--offset {
    margin-top: 3rem;
}
.about-photo-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}
.about-photo-card:hover img {
    transform: scale(1.04);
}
.about-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(11,37,69,0.85) 0%, transparent 100%);
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.intro-image-col { display: flex; flex-direction: column; }
.intro-image { position: relative; }
.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 1px solid var(--accent);
    z-index: 1;
}

/* Custom list */
.custom-list { margin: 1.5rem 0; }
.custom-list li { margin-bottom: 0.8rem; display: flex; align-items: flex-start; gap: 10px; color: var(--text-dark); }
.custom-list li i { color: var(--accent); margin-top: 5px; }

.mt-2 { margin-top: 2rem; }
.mt-1 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1.5rem; }
.section-desc { max-width: 800px; margin: 0 auto 3rem auto; text-align: center; color: var(--text-muted); font-size: 1.1rem; }

/* Features Grid */
.features-grid-5-outer { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }
.features-grid-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.feature-box {
    flex: 1 1 200px;
    max-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.4s;
}
.feature-box:hover { transform: translateY(-5px); }
.feature-box .icon-circle {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.feature-box h4 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary); }
.feature-box ul { list-style: none; padding: 0; }
.feature-box ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.feature-box ul li::before { content: '•'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

@media (max-width: 768px) {
    .features-grid-5-outer {
        padding: 0 1rem;
    }
    .features-grid-5 {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin: 0 -1rem;
        padding: 0 1rem 1.5rem 1rem;
    }
    .features-grid-5::-webkit-scrollbar { height: 4px; }
    .features-grid-5::-webkit-scrollbar-thumb { background-color: var(--accent); border-radius: 4px; }

    .feature-box {
        flex: 0 0 280px;
        max-width: none;
        scroll-snap-align: center;
    }
}

/* About */
.languages-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}
.languages-box i { font-size: 1.5rem; color: var(--primary); }
.languages-box span { font-weight: 500; color: var(--primary); font-size: 0.95rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.pricing-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    border-top: 5px solid var(--primary);
    transition: transform 0.4s;
    /* 4 shared row tracks: header | card-top | moments | destinations */
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
}
.pricing-card:hover { transform: translateY(-10px); }
.pricing-card.featured {
    border-top-color: var(--accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.card-badge {
    position: absolute;
    top: 15px; right: -30px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.card-header { text-align: center; padding: 2.5rem 2rem 1.5rem; border-bottom: 1px solid #eee; }
.card-header h4 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--primary); }
.price {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--accent);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}
.price span { font-size: 0.9rem; font-family: var(--font-body); color: var(--text-muted); font-weight: 400; }
/* display:contents flattens card-body so its children become direct grid items of .pricing-card */
.card-body { display: contents; }
.card-top { padding: 2rem 2rem 0; }
.italic-text { font-style: italic; color: #555; margin-bottom: 1.5rem; font-size: 0.95rem; border-left: 3px solid var(--accent); padding-left: 15px; }
.details-list { margin: 1.5rem 0; padding: 0; list-style: none; }
.details-list li { margin-bottom: 10px; display: flex; align-items: baseline; gap: 10px; font-size: 0.95rem; flex-wrap: wrap; }
.details-list li i { color: var(--primary); width: 20px; text-align: center; flex-shrink: 0; }
.details-list li strong { white-space: nowrap; flex-shrink: 0; }
.moments { background: var(--bg-light); padding: 1.5rem; border-radius: 8px; margin: 1.5rem 2rem 0; }
.moments h5 { font-family: var(--font-body); font-weight: 600; margin-bottom: 10px; font-size: 1rem; color: var(--primary); }
.moments ul { list-style: none; padding: 0; margin: 0; }
.moments ul li { position: relative; padding-left: 20px; font-size: 0.9rem; margin-bottom: 6px; }
.moments ul li::before { content: '•'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.destinations { padding: 1rem 2rem 2rem; }
.destinations h5 { font-family: var(--font-body); font-weight: 600; margin-bottom: 5px; font-size: 1rem; color: var(--primary); }
.destinations p { font-size: 0.9rem; color: var(--text-muted); }
.small-text { font-size: 0.8rem; color: #888; text-align: center; margin-top: 0.75rem; }

/* Contact */
.premium-contact-section { background-color: var(--primary); }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; }
.premium-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: flex; gap: 1.5rem; }
.form-row input { flex: 1; }
.premium-contact-section .section-subtitle,
.premium-contact-section .section-title { color: #fff; }
.premium-contact-section .section-subtitle { opacity: 0.7; }

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s;
}
.premium-form input::placeholder,
.premium-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.14);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.premium-form textarea { resize: vertical; }

.premium-form .btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
}
.premium-form .btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--primary);
}

.info-card {
    background: rgba(255,255,255,0.07);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    transform: translate(50%, -50%);
}
.info-card .section-title { color: #fff; }
.team-names { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; margin-bottom: 2rem; }
.team-member h4 { color: var(--accent); font-family: var(--font-heading); font-size: 2.2rem; font-weight: 400; letter-spacing: 1px; }
.divider { color: rgba(255,255,255,0.3); font-family: var(--font-heading); font-style: italic; font-size: 1.5rem; }
.detail-item { display: flex; align-items: center; gap: 15px; margin-bottom: 1.5rem; }
.detail-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.detail-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.detail-text { color: #fff; font-weight: 500; font-size: 1.1rem; }
.detail-text:hover { color: var(--accent); }

/* ==============================
   GALLERY
   ============================== */
.gallery-section { background: var(--bg-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    aspect-ratio: 1/1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-img-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gallery-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,37,69,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    text-align: center;
    gap: 0.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.5rem; color: var(--accent); }
.gallery-overlay span { font-size: 0.95rem; font-weight: 500; }

.gallery-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
}
.gallery-empty i { font-size: 4rem; margin-bottom: 1rem; opacity: 0.3; }
.gallery-empty p { font-size: 1.1rem; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    font-size: 1.1rem;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ==============================
   FOOTER
   ============================== */
.footer { padding-top: 5rem; background-color: #fff; color: var(--primary); border-top: 1px solid #e8e8e8; }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col.brand p { color: #666; margin: 1.5rem 0; font-size: 0.95rem; line-height: 1.8; }
.footer-col h4 {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background-color: var(--accent); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a { color: #666; font-size: 0.95rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); padding-left: 5px; }
.footer-bottom { background: var(--bg-light); padding: 1.5rem 0; font-size: 0.9rem; color: #999; border-top: 1px solid #e8e8e8; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-credit { font-size: 0.8rem; }
.footer-credit a { color: #999; text-decoration: none; transition: color 0.2s; }
.footer-credit a:hover { color: var(--accent); }
.social-links { display: flex; flex-direction: column; gap: 0.75rem; }
.social-link-instagram {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-link-instagram i {
    font-size: 1.4rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}
.social-link-instagram span { line-height: 1.3; }
.social-link-instagram:hover { color: var(--accent); transform: translateX(4px); }

/* ==============================
   ANIMATIONS
   ============================== */
.fade-in { opacity: 0; animation: fadeIn 1s forwards; }
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.reveal-up { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left { opacity: 0; transform: translateX(-15px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right { opacity: 0; transform: translateX(15px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.active { opacity: 1 !important; transform: translate(0) !important; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 992px) {
    .section-title { font-size: 2.8rem; }
    .hero-content h1 { font-size: 4rem; }
    .intro-container { gap: 3rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; width: 100%; position: relative; }
    .container { padding: 0 1.5rem; }

    .nav-links,
    .nav-actions .btn { display: none; }
    .lang-switcher { display: none; }
    .menu-toggle { display: block; }

    .navbar { padding: 0.5rem 0; }
    .navbar.scrolled { padding: 0.5rem 0; }
    .logo-img { height: 60px; }

    .hero-content h1 { font-size: 3rem; text-align: center; }
    .hero-content p { text-align: center; font-size: 1rem; }
    .hero-buttons { flex-direction: column; justify-content: center; width: 100%; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    .page-hero { height: auto; min-height: 0; padding: 8rem 0 3rem; }
    .page-hero-content { padding-top: 0; }
    .page-hero-content h1 { font-size: 2.5rem; }

    .intro-container { grid-template-columns: 1fr; }
    .image-accent { display: none; }

    /* Slider horizontal pour les 5 avantages */
    .features-grid-5-outer {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .features-grid-5-outer::-webkit-scrollbar { display: none; }
    .features-grid-5 {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        gap: 1rem;
        padding: 0.5rem 1.5rem 1rem;
        scroll-snap-type: x mandatory;
    }
    .features-grid-5 .feature-box {
        flex: 0 0 78vw;
        max-width: 300px;
        scroll-snap-align: start;
    }
    .about-duo { order: -1; }
    .about-photo-card--offset { margin-top: 1.5rem; }

    .section-title { font-size: 2.2rem; text-align: center; }
    .section-subtitle { text-align: center; }

    .intro-text,
    .about-text { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .intro-text p { text-align: center; }
    .intro-text .custom-list { text-align: left; width: 100%; }

    .feature-box { text-align: center; }
    .feature-box .icon-circle { margin: 0 auto 1.5rem auto; }
    .feature-box ul li { text-align: left; }

    .languages-box { justify-content: center; text-align: center; flex-direction: column; }
    .team-names { justify-content: center; }

    .form-row { flex-direction: column; gap: 1.5rem; }
    .info-card { padding: 2.5rem 1.5rem; text-align: center; }
    .detail-item { flex-direction: column; text-align: center; gap: 5px; }
    .detail-icon { margin: 0 auto; }

    .card-badge { right: 0; top: 0; transform: rotate(0); border-radius: 0 8px 0 8px; }

    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col.brand p { margin: 1.5rem auto; }
    .footer .social-links { align-items: center; }
    .footer .social-link-instagram { justify-content: center; }

    .gallery-grid { grid-template-columns: 1fr; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

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

/* ==============================
   Avis clients — Carousel infini
   ============================== */
.testimonials-section { background: var(--primary); overflow: hidden; }
.testimonials-section .section-subtitle { color: var(--accent); }
.testimonials-section .section-title { color: white; }

.testimonials-track-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    padding: 1rem 0 3rem;
}
.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: testimonials-scroll 40s linear infinite;
}
.testimonials-track.paused { animation-play-state: paused; }

@keyframes testimonials-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: background 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}
.testimonial-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 1.4rem;
}
.testimonial-header-info { display: flex; flex-direction: column; gap: 0.3rem; }
.testimonial-name-row { display: flex; align-items: center; gap: 0.5rem; }
.testimonial-name { color: white; font-size: 0.95rem; font-weight: 600; }
.testimonial-flag { width: 1.4em; height: 1.4em; border-radius: 2px; flex-shrink: 0; }
.testimonial-stars { color: var(--accent); font-size: 0.78rem; letter-spacing: 1px; }

/* Scroll hint indicator (mobile only) */
.scroll-hint { display: none; }
.features-scroll-wrapper { position: relative; }
.testimonials-scroll-wrapper { position: relative; }

@media (max-width: 768px) {
    .scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        right: 1rem;
        left: auto;
        transform: translateY(-50%);
        z-index: 10;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        color: var(--primary);
        font-size: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.18);
        opacity: 1;
        transition: opacity 0.4s ease;
        pointer-events: none;
        user-select: none;
    }
    .testimonials-section .scroll-hint {
        background: rgba(8, 27, 51, 0.65);
        color: #fff;
    }
    .scroll-hint.hidden { opacity: 0; pointer-events: none; }

    .scroll-hint--left  { right: auto; left: 1rem; animation: hint-nudge-left  1.1s ease-in-out infinite alternate; }
    .scroll-hint--right { left: auto;  right: 1rem; animation: hint-nudge-right 1.1s ease-in-out infinite alternate; }

    @keyframes hint-nudge-right {
        0%   { transform: translateX(0); }
        100% { transform: translateX(4px); }
    }
    @keyframes hint-nudge-left {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-4px); }
    }
}

.testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
}

/* ==============================
   Calendrier Disponibilités
   ============================== */
.cal-section { background: var(--bg-light); }

.cal-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 0 2.5rem;
    flex-wrap: wrap;
}
.cal-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}
.cal-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.cal-legend-available .cal-dot { background: #e8f5e9; border: 2px solid #4caf50; }
.cal-legend-booked    .cal-dot { background: #fff3e0; border: 2px solid #D4AF37; }
.cal-legend-unavailable .cal-dot { background: #fce4ec; border: 2px solid #e57373; }

.cal-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: center;
}
.cal-nav {
    background: var(--primary);
    color: var(--accent);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2.5rem;
    transition: background 0.2s;
}
.cal-nav:hover { background: var(--accent); color: var(--primary); }

.cal-months {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.cal-month { flex: 1; min-width: 340px; max-width: 440px; }
.cal-month-name {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: capitalize;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.cal-day-name {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 6px 0;
    letter-spacing: 0.3px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: default;
    transition: transform 0.1s;
}
.cal-empty { background: transparent; }
.cal-past  { color: #ccc; background: transparent; }
.cal-free  { background: #e8f5e9; color: #2e7d32; }
.cal-free:hover { transform: scale(1.1); }
.cal-booked {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #D4AF37;
    cursor: help;
}
.cal-booked:hover { transform: scale(1.1); }
.cal-unavailable {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
    cursor: help;
}
.cal-unavailable:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .cal-months { gap: 0; }
    .cal-month  { min-width: 260px; max-width: 100%; }
    .cal-wrapper { gap: 0.5rem; }
}

/* ==============================
   FAQ — Accordéon
   ============================== */
.faq-section { background: var(--bg-light); }

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s;
}
.faq-item.open {
    box-shadow: 0 4px 20px rgba(11,37,69,0.12);
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: background 0.2s, color 0.2s;
}
.faq-item.open .faq-question {
    background: var(--primary);
    color: var(--accent);
}
.faq-question span { flex: 1; }

.faq-chevron {
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    color: var(--accent);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 1.25rem 1.5rem 1.5rem;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
}
.faq-answer-inner ul,
.faq-answer-inner ol {
    padding-left: 1.4rem;
    margin: 0.5rem 0;
}
.faq-answer-inner ul li { list-style: disc; margin-bottom: 0.25rem; }
.faq-answer-inner ol li { list-style: decimal; margin-bottom: 0.25rem; }

@media (max-width: 768px) {
    .faq-question { font-size: 0.92rem; padding: 1rem 1.25rem; }
    .faq-answer-inner { padding: 1rem 1.25rem 1.25rem; }
}

/* ===================== Equipment Modal ===================== */
.equipment-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 47, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}
.equipment-modal-overlay.open { display: flex; }

.equipment-modal {
    background: #fff;
    border-radius: 1rem;
    max-width: 860px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.equipment-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--primary);
    flex-shrink: 0;
}

.equipment-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: color 0.2s;
    flex-shrink: 0;
}
.equipment-modal-close:hover { color: var(--accent); }

.equipment-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin: 0;
}
.equipment-modal-title i { color: var(--accent); margin-right: 0.5rem; }

.equipment-modal-body {
    overflow-y: auto;
    padding: 2rem 2rem;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.equipment-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e8e8e8;
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #444;
}
.equipment-item i {
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .equipment-modal-header { padding: 1rem 1.25rem; }
    .equipment-modal-body { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 1.25rem; }
    .equipment-modal-title { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .equipment-modal-body { grid-template-columns: 1fr; }
}
