:root {
    --dark: #050d09;           
    --brand-green: #082618;    
    --gold: #d4af37;           
    --gold-dim: #a6882b;       
    --light-bg: #eaeaea;       
    --text-muted: #b8c7bf;     
    --glass-bg: rgba(8, 38, 24, 0.4);
    --glass-border: rgba(212, 175, 55, 0.15);
}

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

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--dark); 
    color: var(--light-bg); 
    line-height: 1.6; 
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #0a1f15 0%, var(--dark) 100%);
    background-attachment: fixed;
}

html { 
    scroll-behavior: smooth; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

em { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    color: var(--gold); 
}

.gold-subtitle { 
    display: block; 
    color: var(--gold); 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    font-weight: 600; 
    margin-bottom: 10px; 
}

.gold-subtitle-small { 
    color: var(--gold); 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 800; 
    display: inline-block; 
    background: rgba(212, 175, 55, 0.1); 
    padding: 6px 18px; 
    border-radius: 30px; 
    margin-bottom: 20px; 
    border: 1px solid var(--glass-border); 
}

.display-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(32px, 5vw, 48px); 
    color: #ffffff; 
    line-height: 1.1; 
    margin-bottom: 25px; 
}

.display-title-small { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(24px, 4vw, 32px); 
    color: #ffffff; 
    line-height: 1.2; 
    margin-bottom: 15px; 
}

.gold-text { 
    color: var(--gold); 
    font-weight: 600; 
}

.section-header.center { 
    text-align: center; 
    margin-bottom: clamp(30px, 5vw, 50px); 
    margin-top: clamp(30px, 5vw, 50px); 
}

.section-header.center .display-title { 
    margin-bottom: 0; 
}

p {
    line-height: 1.7;
    font-weight: 400; 
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #f3d47d, var(--gold));
    background-size: 200% auto;
    color: #000 !important;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-gold:hover { 
    background-position: right center;
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); 
}

.btn-large { 
    padding: 18px 40px; 
    font-size: 16px; 
    margin-top: 20px; 
}

.btn-outline-gold { 
    background: transparent; 
    border: 2px solid var(--gold); 
    color: var(--gold); 
    padding: 15px 35px; 
    border-radius: 50px; 
    font-weight: 700; 
    cursor: pointer; 
    font-size: 16px; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
}

.btn-outline-gold:hover { 
    background: var(--gold); 
    color: #000; 
}

.pulse-btn { 
    animation: pulse-gold 2s infinite; 
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.nav-main { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 15px 0; 
    background: rgba(5, 13, 9, 0.95); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

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

.logo { 
    height: 50px; 
    border-radius: 8px; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
    align-items: center; 
}

.nav-links a { 
    text-decoration: none; 
    color: #ffffff; 
    font-weight: 600; 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: color 0.3s; 
}

.nav-links a:not(.btn-gold):hover { 
    color: var(--gold); 
}

.menu-toggle { 
    display: none; 
    color: var(--gold); 
    font-size: 28px; 
    cursor: pointer; 
    position: relative;
}

.hero-section { 
    position: relative; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    padding-top: 80px; 
    overflow: hidden; 
}

.hero-bg { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
}

.hero-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
}

.hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to right, rgba(5, 13, 9, 0.95) 0%, rgba(5, 13, 9, 0.7) 100%); 
}

.hero-content { 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center; 
    width: 100%; 
    z-index: 2;
    max-width: 800px; 
    margin: 0 auto; 
}

.hero-desc { 
    font-size: 18px; 
    color: var(--light-bg); 
    margin: 0 auto 30px auto; 
    font-weight: 400; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bento-features { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
}

.bento-card { 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 16px; 
    padding: 25px 20px; 
    backdrop-filter: blur(5px); 
    transition: 0.3s; 
}

.bento-gold { 
    background: rgba(212, 175, 55, 0.1); 
    border-color: rgba(212, 175, 55, 0.3); 
}

.bento-card i { 
    font-size: 28px; 
    color: var(--gold); 
    margin-bottom: 15px; 
    display: block; 
}

.bento-card h4 { 
    font-size: 16px; 
    color: #ffffff; 
    margin-bottom: 5px; 
    font-weight: 700; 
}

.bento-card p { 
    font-size: 14px; 
    color: var(--text-muted); 
    font-weight: 500; 
}

.section-awards { 
    padding: clamp(50px, 8vw, 80px) 0; 
    background: linear-gradient(to bottom, var(--dark) 0%, #081a11 50%, var(--dark) 100%);
    border-top: none;
    border-bottom: none;
}

.section-about-premium, 
.section-map, 
.section-pricing, 
.rules-section, 
.section-gallery { 
    padding: clamp(60px, 10vw, 140px) 0; 
}

.awards-bento { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 40px; 
}

.award-img-box img { 
    height: 120px; 
    border-radius: 15px; 
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5)); 
    transition: transform 0.3s; 
}

.award-img-box img:hover { 
    transform: scale(1.05) rotate(3deg); 
}

.award-text-box { 
    text-align: center; 
    flex: 1; 
}

.award-text-box p { 
    color: var(--gold); 
    font-weight: 600; 
    letter-spacing: 1px; 
    font-size: 18px; 
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: clamp(40px, 6vw, 80px); 
    align-items: center; 
}

.about-text-block p { 
    font-size: 16px; 
    color: var(--text-muted); 
    margin-bottom: 20px; 
}

.about-quick-stats { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.stat-card.gold-border { 
    border: 1px solid var(--gold); 
    background: rgba(212, 175, 55, 0.05); 
}

.stat-number-wrapper { 
    display: flex; 
    align-items: baseline; 
    justify-content: center; 
    margin-bottom: 5px; 
    min-height: 48px; 
}

.stat-number { 
    font-size: 48px; 
    font-weight: 800; 
    color: #ffffff; 
    line-height: 1; 
}

.stat-unit { 
    font-size: 20px; 
    color: var(--gold); 
    margin-left: 5px; 
    font-weight: 700; 
}

.stat-text { 
    font-size: 40px; 
    color: var(--gold); 
}

.stat-label { 
    display: block; 
    text-align: center; 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--text-muted); 
    font-weight: 600; 
}

.section-gallery { 
    background: #030806; 
    padding: clamp(60px, 10vw, 120px) 0; 
    overflow: hidden; 
}

.gallery-slider {
    width: 100%;
    padding-bottom: 60px;
}

.gallery-item { 
    position: relative; 
    border-radius: 16px; 
    overflow: hidden; 
    height: 350px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

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

.gallery-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); 
    display: flex; 
    align-items: flex-end; 
    padding: 25px; 
}

.overlay-text { 
    width: 100%; 
}

.peg-badge { 
    display: inline-block; 
    background: var(--gold); 
    color: #000; 
    padding: 4px 10px; 
    border-radius: 4px; 
    font-size: 11px; 
    font-weight: 800; 
    text-transform: uppercase; 
    margin-bottom: 8px; 
}

.overlay-text h4 { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    color: #ffffff; 
    font-weight: 700; 
    margin-bottom: 5px; 
}

.overlay-text p.gold-text { 
    font-size: 18px; 
    margin-bottom: 5px; 
}

.overlay-text .angler { 
    display: block; 
    font-size: 13px; 
    color: var(--light-bg); 
    font-weight: 400; 
}

.custom-nav {
    color: var(--gold) !important;
}

.custom-nav::after {
    font-size: 28px !important;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.swiper-pagination-bullet {
    background: var(--light-bg) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    opacity: 1;
}

.map-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: clamp(40px, 6vw, 60px); 
    align-items: center; 
}

.map-visual { 
    position: relative; 
    padding: 10px; 
}

.map-img-final { 
    width: 100%; 
    border-radius: 12px; 
    display: block; 
    border: 1px solid rgba(255,255,255,0.1); 
}

.map-legend { 
    position: absolute; 
    bottom: 20px; 
    right: 20px; 
    background: rgba(5, 13, 9, 0.95); 
    backdrop-filter: blur(5px); 
    padding: 15px; 
    border-radius: 12px; 
    border: 1px solid var(--glass-border); 
}

.leg-item { 
    font-size: 13px; 
    color: var(--light-bg); 
    margin-bottom: 8px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-weight: 600; 
}

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

.leg-item i { 
    color: var(--gold); 
    font-size: 16px; 
}

.map-info p { 
    color: var(--text-muted); 
    margin-bottom: 30px; 
}

.map-stats-mini { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.m-stat { 
    font-size: 15px; 
    font-weight: 500; 
    color: var(--light-bg); 
    background: rgba(255,255,255,0.05); 
    padding: 15px 20px; 
    border-radius: 12px; 
    border-left: 3px solid var(--gold); 
}

.rules-section { 
    background: #030806; 
}

.rules-bento { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin-bottom: 50px; 
}

.rule-card { 
    padding: 40px 25px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
}

.rule-icon { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    background: rgba(212, 175, 55, 0.1); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
    color: var(--gold); 
    margin-bottom: 20px; 
    border: 1px solid rgba(212, 175, 55, 0.3); 
}

.rule-card p { 
    font-size: 15px; 
    font-weight: 400; 
    color: var(--light-bg); 
}

.rule-card strong { 
    color: var(--gold); 
    font-weight: 700; 
}

.danger-card { 
    border-color: rgba(255, 60, 60, 0.4); 
}

.danger-card .rule-icon { 
    color: #ff5555; 
    background: rgba(255, 60, 60, 0.15); 
    border-color: rgba(255, 60, 60, 0.3); 
}

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

.hidden-rules { 
    max-height: 0; 
    overflow: hidden; 
    opacity: 0; 
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}

.hidden-rules.visible { 
    max-height: 1500px; 
    opacity: 1; 
    margin-top: 40px; 
}

.full-rules-box { 
    padding: clamp(20px, 4vw, 50px); 
}

.custom-counter { 
    list-style-type: none; 
    counter-reset: rule-counter; 
}

.custom-counter li { 
    position: relative; 
    padding-left: 40px; 
    margin-bottom: 15px; 
    color: var(--light-bg); 
    font-weight: 400; 
    font-size: 15px; 
    border-bottom: 1px solid rgba(255,255,255,0.08); 
    padding-bottom: 15px; 
}

.custom-counter li::before { 
    counter-increment: rule-counter; 
    content: counter(rule-counter, decimal-leading-zero); 
    position: absolute; 
    left: 0; 
    top: 0; 
    color: var(--gold); 
    font-weight: 800; 
    font-size: 16px; 
    opacity: 0.8; 
}

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

.price-table { 
    padding: 40px 30px; 
}

.gold-glow { 
    border-color: var(--gold); 
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2); 
    transform: scale(1.05); 
    z-index: 2; 
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--glass-bg) 100%);
}

.p-head { 
    text-align: center; 
    margin-bottom: 30px; 
}

.p-head i { 
    font-size: 40px; 
    color: var(--gold); 
    margin-bottom: 15px; 
}

.p-head h3 { 
    font-size: 22px; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: #ffffff; 
}

.price-table ul { 
    list-style: none; 
}

.price-table li { 
    display: flex; 
    justify-content: space-between; 
    padding: 15px 0; 
    border-bottom: 1px dashed rgba(255,255,255,0.15); 
    font-size: 15px; 
    color: var(--light-bg); 
    font-weight: 400; 
}

.price-table li strong { 
    color: #ffffff; 
    font-size: 16px; 
    font-weight: 700; 
}

.p-foot { 
    text-align: center; 
    margin-top: 25px; 
    font-size: 13px; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 600; 
}

.footer-premium { 
    background: linear-gradient(to bottom, #030806 0%, #010201 100%); 
    padding: clamp(60px, 8vw, 100px) 0 20px; 
    border-top: 1px solid var(--glass-border); 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: clamp(50px, 8vw, 100px); 
    margin-bottom: clamp(40px, 6vw, 60px); 
}

.f-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.f-logo { 
    height: auto; 
    max-width: 200px;
    margin-bottom: 25px; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    opacity: 0.95; 
}

.f-brand p { 
    color: var(--text-muted); 
    margin-bottom: 35px; 
    max-width: 400px; 
    font-size: 15px;
}

.f-info h4 { 
    color: var(--gold); 
    font-size: 16px; 
    margin-bottom: 25px; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-weight: 800; 
}

.f-info p { 
    color: var(--light-bg); 
    margin-bottom: 20px; 
    font-weight: 500; 
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-info p i {
    font-size: 18px;
}

.map-container-small {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-container-small iframe { 
    width: 100%; 
    height: 180px; 
    border: 0; 
    display: block;
    filter: grayscale(80%) invert(90%) contrast(1.2) hue-rotate(180deg); 
}

.f-bottom { 
    text-align: center; 
    padding-top: 25px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    color: #666; 
    font-size: 13px; 
    font-weight: 500; 
}

@media (max-width: 1024px) {
    .hero-content, .about-grid, .map-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 60px; 
    }

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

    .f-brand p { 
        margin-left: auto; 
        margin-right: auto; 
    }

    .f-info p { 
        justify-content: center; 
    }
    
    .bento-features { 
        max-width: 600px; 
        margin: 0 auto; 
    }

    .gallery-masonry { 
        grid-template-columns: repeat(2, 1fr); 
    }

    .rules-bento { 
        grid-template-columns: repeat(2, 1fr); 
    }

    .pricing-grid { 
        grid-template-columns: 1fr; 
        max-width: 500px; 
        margin: 0 auto; 
        gap: 30px; 
    }

    .gold-glow { 
        transform: none; 
    }

    .awards-bento { 
        flex-direction: column; 
        gap: 30px; 
    }

    .m-stat { 
        text-align: left; 
        max-width: 400px; 
        margin: 0 auto; 
    }
}

@media (max-width: 768px) {
    .hero-section { 
        padding-top: 80px; 
        min-height: 100vh; 
        min-height: 100svh; 
        padding-bottom: 20px; 
        text-align: center; 
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }

    .hero-overlay { 
        position: absolute; 
        inset: 0; 
        background: linear-gradient(to bottom, rgba(5, 13, 9, 0.6) 0%, rgba(5, 13, 9, 0.85) 75%, rgba(5, 13, 9, 1) 100%);
    }
    
    .bento-features { 
        grid-template-columns: 1fr 1fr; 
        gap: 10px; 
        width: 100%; 
    }

    .bento-card { 
        padding: 15px 10px; 
    }

    .bento-card i { 
        font-size: 24px; 
    }
    
    .about-quick-stats { 
        grid-template-columns: 1fr 1fr; 
        gap: 10px; 
    }

    .stat-number { 
        font-size: 32px; 
    }

    .stat-text { 
        font-size: 30px; 
    }

    .stat-card { 
        padding: 15px 10px; 
    }
    
    .gallery-masonry { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 150px; 
        gap: 10px; 
    }

    .gallery-item.featured { 
        grid-column: span 2; 
        grid-row: span 2; 
    }
    
    .rules-bento { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }

    .rule-card { 
        padding: 25px 15px; 
    }

    .price-table { 
        padding: 25px 20px; 
    }

    .menu-toggle { 
        display: block; 
        position: relative; 
        z-index: 1002; 
    }

    .nav-links { 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100vw; 
        height: 100vh; 
        background: rgba(5, 13, 9, 0.99); 
        backdrop-filter: blur(20px); 
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; 
        justify-content: center; 
        transform: translateY(-100%); 
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); 
        z-index: 1001; 
    }

    .nav-links.mobile-active { 
        transform: translateY(0); 
    }

    .nav-links li { 
        margin: 0px 0; 
    }

    .nav-links a { 
        font-size: 20px; 
        letter-spacing: 2px; 
    }

    .nav-links a.btn-gold { 
        margin-top: 20px; 
        font-size: 16px; 
        padding: 15px 40px; 
    }
}

.ponds-info {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.pond-details {
    border-left: 3px solid var(--gold);
    transition: transform 0.3s ease;
}

.map-grid-triple {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
}

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

.center-info p {
    margin-bottom: 25px;
}

.map-grid-triple .pond-details {
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.map-grid-triple .pond-details h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.map-grid-triple .pond-details p {
    font-size: 13px;
    margin-bottom: 0;
}

.map-grid-triple .map-legend {
    padding: 10px;
}

.map-grid-triple .leg-item {
    font-size: 11px;
}

@media (max-width: 1024px) {
    .map-grid-triple {
        grid-template-columns: 1fr;
    }

    .map-grid-triple .center-info {
        order: -1;
        margin-bottom: 30px;
    }
}

.section-faq {
    padding: clamp(60px, 10vw, 120px) 0;
    background: #030806;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

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

.faq-question i {
    color: var(--gold);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question {
    color: var(--gold);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0,0,0,0.2);
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--light-bg);
    font-size: 14px;
    margin: 0;
}

.section-cabins {
    padding: clamp(60px, 10vw, 120px) 0;
    background: linear-gradient(to bottom, var(--dark), #081a11);
}

.cabins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.cabin-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cabin-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.cabin-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cabin-card:hover .cabin-img-wrapper img {
    transform: scale(1.1);
}

.cabin-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    padding: 8px 15px;
    font-weight: 800;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cabin-info {
    padding: 30px;
}

.cabin-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cabin-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cabin-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cabin-amenities li {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-bg);
}

.cabin-amenities li i {
    color: var(--gold);
}

.sanitariaty-info {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 40px;
    border-left: 4px solid var(--gold);
}

.s-icon {
    font-size: 40px;
    color: var(--gold);
}

.s-text h4 {
    color: #fff;
    margin-bottom: 5px;
}

.s-text p {
    margin-bottom: 0;
    font-size: 14px;
}

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

    .cabin-amenities { 
        grid-template-columns: 1fr; 
    }

    .sanitariaty-info { 
        flex-direction: column; 
        text-align: center; 
    }
}

.section-amenities {
    padding: clamp(60px, 10vw, 120px) 0;
    background: #030806;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.amenity-card {
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.amenity-large {
    grid-column: span 4;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 30px;
    padding: 30px 40px;
}

.amenity-large .amenity-icon {
    margin-bottom: 0;
    font-size: 50px;
}

.amenity-icon {
    font-size: 36px;
    color: var(--light-bg);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    color: var(--gold);
}

.amenity-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-large {
        grid-column: span 2;
        flex-direction: column;
        text-align: center;
    }

    .amenity-large .amenity-icon {
        margin-bottom: 15px;
    }
}

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

    .amenity-large {
        grid-column: span 1;
    }
}

.section-species {
    padding: clamp(50px, 8vw, 80px) 0;
    background: linear-gradient(to bottom, #081a11, var(--dark));
    border-top: 1px solid rgba(255,255,255,0.02);
}

.species-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.species-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--light-bg);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.species-badge i {
    color: var(--gold);
    font-size: 18px;
    transition: color 0.3s ease;
}

@media (max-width: 600px) {
    .species-badge {
        padding: 10px 20px;
        font-size: 13px;
        flex: 1 1 calc(50% - 15px);
        justify-content: center;
    }
}

.cabin-amenities li.amenity-complex {
    grid-column: 1 / -1 !important; 
    align-items: flex-start;
    margin-bottom: 15px; 
}

.cabin-amenities li.amenity-complex > i {
    margin-top: 4px;
}

.bed-capacities {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    width: 100%;
}

.capacity-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.capacity-column strong {
    font-size: 14px;
    color: #ffffff; 
    margin-bottom: 2px;
}

.cabin-img-wrapper {
    position: relative;
    width: 100%;
    height: 320px; 
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.photo-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    height: 100%;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    cursor: grab;
}

.photo-slider.active {
    cursor: grabbing;
    scroll-snap-type: none !important; 
    scroll-behavior: auto !important;
}

.photo-slider::-webkit-scrollbar {
    display: none; 
}

.photo-slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    pointer-events: none; 
}

.cabin-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.slider-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold); 
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600; 
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    animation: hintPulse 2.5s infinite alternate;
}

@keyframes hintPulse {
    0% {
        opacity: 0.85;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    }
    100% {
        opacity: 1;
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.55);
    }
}

.map-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 25px; 
    height: 25px;
    background: var(--gold);
    color: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 5;
}

.map-pin:hover { 
    transform: translate(-50%, -50%) scale(1.2); 
    background: #fff;
}

.photo-modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100dvh; 
    background-color: rgba(5, 13, 9, 0.95); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center; 
    justify-content: center; 
    flex-direction: column;
}

.photo-modal.active { 
    display: flex; 
    animation: fadeIn 0.3s ease;
}

#modal-img { 
    max-width: 95vw; 
    max-height: 75dvh; 
    width: auto;
    height: auto;
    border-radius: 12px; 
    border: 2px solid var(--gold); 
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    object-fit: contain; 
}

.close-modal { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    color: var(--gold); 
    font-size: 35px; 
    cursor: pointer; 
    transition: color 0.3s ease;
    z-index: 2001;
    padding: 15px; 
}

.close-modal:hover { 
    color: #fff; 
}

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

.gallery-cta {
    margin-top: 15px;
    margin-bottom: 25px;
    text-decoration: none;
}

.gallery-cta p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-decoration: none;
}
.section-news {
    padding: clamp(60px, 10vw, 120px) 0;
    background: linear-gradient(to bottom, var(--dark), #030806);
}

.fb-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.1); 
}

.fb-wrapper iframe {
    width: 100% !important;
    display: block; 
}