/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
    /* Color Palette */
    --primary-forest: #1B4D3E; /* Глубокий хвойный */
    --accent-lake: #5D8AA8;    /* Приглушенный синий */
    --highlight-gold: #C5A065; /* Матовое золото */
    --bg-paper: #F7F5F0;       /* Теплый офф-вайт */
    --text-body: #2C2C2C;      /* Графит */
    --white: #FFFFFF;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-paper);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--primary-forest);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: var(--section-padding);
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--highlight-gold);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(197, 160, 101, 0.3);
}

.btn-primary:hover {
    background-color: #b08d55;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 160, 101, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-forest);
    color: var(--white);
}

/* Mobile Typography */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    :root { --section-padding: 60px 0; }
}

/* --- HEADER STYLES --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Scrolled state (added via JS) */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* Adjust text colors when scrolled */
.header.scrolled .logo, 
.header.scrolled .nav__link, 
.header.scrolled .phone-link {
    color: var(--primary-forest);
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo__sub {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav__list {
    display: flex;
    gap: 40px;
}

.nav__link {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--highlight-gold);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav__toggle {
    display: none;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 77, 62, 0.3); /* Tint of forest green */
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    margin-top: 40px; /* Offset for header */
}

.hero__title {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    opacity: 0.9;
}

/* --- BOOKING WIDGET --- */
.booking-widget {
    background: rgba(255, 255, 255, 0.15); /* Glassmorphism */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 30px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.booking-form {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.date-input, .guest-select {
    background: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    color: var(--text-body);
    font-size: 0.95rem;
    cursor: pointer;
    width: 150px;
}

.guest-select {
    width: 140px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B4D3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .nav__list, .phone-link { display: none; }
    
    .nav__toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }
    
    .nav__toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--white); /* White burger initially */
        margin-bottom: 6px;
        transition: 0.3s;
    }
    
    .header.scrolled .nav__toggle span {
        background-color: var(--primary-forest);
    }
}

@media (max-width: 768px) {
    .hero__title { font-size: 2.2rem; }
    
    .booking-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .date-input, .guest-select { width: 100%; }
    
    .booking-widget {
        width: 100%;
        padding: 20px;
    }
    
    .header__btn { display: none; } /* Hide big button on mobile header, use sticky bar later */
}

/* --- PHILOSOPHY (USP) --- */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-lake);
    font-size: 1.1rem;
    margin-top: -10px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.usp-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(27, 77, 62, 0.08);
    border-color: rgba(197, 160, 101, 0.2);
}

.usp-icon {
    margin-bottom: 24px;
    display: inline-flex;
    padding: 16px;
    background: var(--bg-paper);
    border-radius: 50%;
}

.usp-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-forest);
}

.usp-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* --- INTERACTIVE MAP --- */
.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #e0e0e0;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.2) contrast(1.1); /* Slight vintage map feel */
}

.map-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Hotspots */
.map-hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hotspot-dot {
    width: 12px;
    height: 12px;
    background-color: var(--highlight-gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(197, 160, 101, 0.6);
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Tooltip */
.map-hotspot::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-forest);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    font-family: 'Manrope', sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map-hotspot:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .map-wrapper {
        height: 300px; /* Fixed height for mobile */
    }
    
    .map-image {
        height: 100%;
        object-fit: cover;
    }
}

/* --- CATALOG GRID --- */
.house-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.house-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.house-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 77, 62, 0.15);
}

.house-card__image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.house-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.house-card:hover .house-card__img {
    transform: scale(1.05);
}

.house-card__tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-forest);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.house-card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.house-card__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.house-card__title {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.house-card__price {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: var(--highlight-gold);
    font-size: 1.1rem;
}

.house-card__desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.house-card__features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--primary-forest);
    font-weight: 500;
}

.house-card__btn {
    width: 100%;
}

/* --- MODAL STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 77, 62, 0.8); /* Forest green tint */
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.modal-container {
    background: var(--bg-paper);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 8px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: var(--white); /* Will be on top of image usually */
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--highlight-gold);
}

/* Modal Inner Layout */
.modal-header-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.modal-body-content {
    padding: 40px;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #444;
}

.amenities-list li::before {
    content: '✓';
    color: var(--highlight-gold);
    font-weight: bold;
}

.modal-price-block {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    position: sticky;
    top: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .house-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .house-grid { grid-template-columns: 1fr; }
    
    .modal-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-header-img { height: 250px; }
    .modal-body-content { padding: 25px; }
    .modal-price-block { position: static; margin-top: 20px; }
}


/* --- COMFORT SECTION --- */
.comfort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.comfort-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.comfort-col-title {
    font-size: 1.2rem;
    color: var(--highlight-gold);
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    display: inline-block;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B4D3E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: contain;
}

.comfort-image {
    position: relative;
}

.rounded { border-radius: 12px; }

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(197, 160, 101, 0.2);
}

.badge-icon { font-size: 1.5rem; }
.badge-title { display: block; font-weight: 700; color: var(--primary-forest); font-size: 0.9rem; }
.badge-text { display: block; font-size: 0.75rem; color: #777; }

/* --- SEASONALITY SECTION --- */
.season-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.season-toggle {
    background: #e0e0e0;
    padding: 5px;
    border-radius: 50px;
    display: inline-flex;
    position: relative;
}

.season-btn {  
    padding: 12px 30px; /* <-- Опционально (было 40px) */
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    color: #777;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s;
    outline: none;
}

.season-btn.active {
    color: var(--white);
}


/* Logic for Highlighter movement handled via class in JS or simplified CSS if fixed width. 
   Here we will use JS to toggle class on buttons, but we need CSS to move the highlighter.
   Let's use a simpler approach: pure CSS class on parent or JS styling. */

.season-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.season-content.active {
    display: block;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    text-align: left;
}

.activity-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.25rem;
    color: var(--primary-forest);
    margin-bottom: 10px;
}

.activity-card p {
    font-size: 0.95rem;
    color: #666;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .comfort-grid {
        grid-template-columns: 1fr;
    }
    
    .comfort-image {
        order: -1; /* Image first on mobile */
        margin-bottom: 40px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .season-btn { padding: 10px 30px; }
}

/* Найдите это правило в вашем CSS */
.season-highlighter {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: 33.333%; /* <-- ИЗМЕНИТЬ ЗДЕСЬ (было 50%) */
    background-color: var(--primary-forest);
    border-radius: 40px;
    transition: transform 0.3s ease;
    z-index: 1;
}


/* --- SERVICES SPLIT SECTION (Убедитесь, что это есть в style.css) --- */
.split-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.split-block:last-child {
    margin-bottom: 0;
}

.split-block.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 400px; /* Фиксируем высоту для аккуратности */
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-block:hover .split-image {
    transform: scale(1.03);
}

.eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-lake);
    margin-bottom: 10px;
    display: block;
}

.split-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.split-text {
    color: #555;
    margin-bottom: 30px;
}

.service-price-list {
    margin-bottom: 35px;
    border-top: 1px solid #eee;
}

.service-price-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: var(--text-body);
}

.service-price-list .price {
    font-weight: 600;
    color: var(--primary-forest);
}

.service-list li {
    margin-bottom: 20px; /* Чуть увеличили отступ для читаемости списка еды */
    line-height: 1.5;
}

strong {
    color: var(--primary-forest);
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .split-block, .split-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .split-image-wrapper {
        width: 100%;
        height: 250px;
    }
}


/* --- REVIEWS --- */
.reviews-section {
    background-color: #f0eeeb; /* Slightly darker than paper */
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.review-card {
    min-width: 300px;
    max-width: 350px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    scroll-snap-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-forest);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-name {
    font-size: 1rem;
    margin: 0;
    color: var(--text-body);
}

.review-date {
    font-size: 0.75rem;
    color: #888;
}

.review-platform {
    width: 20px;
    height: 20px;
    margin-left: auto;
    opacity: 0.5;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
    color: #444;
}

.review-stars {
    color: var(--highlight-gold);
    letter-spacing: 2px;
}

.yandex-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: var(--text-body);
    font-weight: 600;
}

/* --- FAQ --- */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--highlight-gold);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
    font-size: 0.95rem;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--primary-forest);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    color: var(--highlight-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* --- MOBILE STICKY BAR --- */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Show only on mobile via JS class or media query */
@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer {
        padding-bottom: 80px; /* Space for sticky bar */
    }
    
    .mobile-sticky-bar {
        transform: translateY(0);
    }
}

.sticky-info {
    font-family: 'Manrope', sans-serif;
    color: var(--primary-forest);
    font-weight: 700;
    font-size: 1.1rem;
}

.sticky-info small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
}

.sticky-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}



