/* ==================== VARIABLES ==================== */
:root {
    --green-dark: #1a3c15;
    --green-primary: #2d5a27;
    --green-medium: #3e7a35;
    --green-light: #5a9e50;
    --green-pale: #e8f0e6;
    --gold: #c8a96e;
    --gold-light: #ddc99a;
    --cream: #faf8f4;
    --cream-dark: #f0ece4;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius: 12px;
    --transition: 0.3s ease;
}

/* ==================== DARK MODE ==================== */
[data-theme="dark"] {
    --green-dark: #c8e6c2;
    --green-primary: #7bc275;
    --green-medium: #5a9e50;
    --green-light: #3e7a35;
    --green-pale: #1a2e18;
    --gold: #ddc99a;
    --gold-light: #c8a96e;
    --cream: #121212;
    --cream-dark: #1e1e1e;
    --text-dark: #e8e8e8;
    --text-medium: #c0c0c0;
    --text-light: #8a8a8a;
    --white: #1a1a1a;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
}

[data-theme="dark"] body {
    background: #121212;
    color: #e8e8e8;
}

[data-theme="dark"] .navbar {
    background: rgba(18,18,18,0.95);
    border-bottom-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(18,18,18,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

[data-theme="dark"] .navbar-brand {
    color: #e8e8e8;
}

[data-theme="dark"] .nav-link {
    color: rgba(255,255,255,0.75);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--gold);
}

[data-theme="dark"] .section {
    background: #121212;
}

[data-theme="dark"] .section:nth-child(even) {
    background: #1a1a1a;
}

[data-theme="dark"] .faq {
    background: #1a1a1a;
}

[data-theme="dark"] .faq-item {
    background: #242424;
    border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .faq-question {
    color: #e8e8e8;
}

[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .whyus-card {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .event-card {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .footer {
    background: #0a0a0a;
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .contact-map iframe {
    filter: invert(0.9) hue-rotate(180deg) brightness(0.9);
    border-radius: 12px;
}

[data-theme="dark"] .gallery-item {
    border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .counter-section {
    background: #0f1a0d;
}

[data-theme="dark"] .cookie-banner {
    background: #1e1e1e;
    border-top-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .weather-widget {
    background: rgba(30,30,30,0.95);
    border-color: rgba(255,255,255,0.08);
    color: #e8e8e8;
}

[data-theme="dark"] .sound-toggle {
    background: rgba(30,30,30,0.95);
    border-color: rgba(255,255,255,0.08);
    color: var(--gold);
}

[data-theme="dark"] .filter-btn {
    background: #242424;
    color: #c0c0c0;
    border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .filter-btn.active {
    background: var(--green-primary);
    color: #121212;
}

[data-theme="dark"] .section-tag {
    color: var(--gold);
}

[data-theme="dark"] h2,
[data-theme="dark"] h3 {
    color: #e8e8e8;
}

[data-theme="dark"] .hero {
    background-color: #0a0a0a;
}

/* Dark Mode Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 24px;
    left: 84px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

[data-theme="dark"] .theme-toggle {
    background: rgba(30,30,30,0.95);
    border-color: rgba(255,255,255,0.08);
}

.theme-toggle .theme-label {
    position: absolute;
    left: 60px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.theme-toggle:hover .theme-label {
    opacity: 1;
}

@media (max-width: 768px) {
    .theme-toggle {
        bottom: 90px;
        left: 66px;
        width: 44px;
        height: 44px;
    }
    .sound-toggle {
        bottom: 90px;
        left: 12px;
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

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

ul { list-style: none; }

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

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

/* ==================== INTRO OVERLAY ==================== */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.intro-overlay.active {
    pointer-events: all;
}

.curtain {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--green-dark);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.curtain-top {
    top: 0;
    transform: translateY(0);
    background: linear-gradient(180deg, #0f2b0c 0%, var(--green-dark) 100%);
}

.curtain-bottom {
    bottom: 0;
    transform: translateY(0);
    background: linear-gradient(0deg, #0f2b0c 0%, var(--green-dark) 100%);
}

.intro-overlay.open .curtain-top {
    transform: translateY(-100%);
}

.intro-overlay.open .curtain-bottom {
    transform: translateY(100%);
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    transition: opacity 0.6s ease;
}

.intro-overlay.open .intro-content {
    opacity: 0;
}

.intro-leaf {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
    animation: leafSway 2s ease-in-out infinite;
}

@keyframes leafSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.intro-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 60, 21, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.nav-logo span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
    font-weight: 600;
    border-radius: 8px;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 100;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpeg') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,30,8,0.7) 0%, rgba(20,50,15,0.5) 50%, rgba(10,30,8,0.75) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--gold-light);
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200,169,110,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-medium);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* ==================== ABOUT ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--green-pale), #d4e4d1);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--green-medium);
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.about-img-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-features {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.about-feature i {
    font-size: 1.2rem;
    color: var(--gold);
}

/* ==================== SERVICES ==================== */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.3);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== PARALLAX DIVIDER ==================== */
.parallax-divider {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, #0f2b0c 100%);
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm20 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.parallax-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: 16px;
}

.parallax-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ==================== EVENTS ==================== */
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.event-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    background: var(--green-pale);
    border-radius: 10px;
    padding: 12px;
}

.event-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-medium);
}

.event-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.event-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.event-tag {
    font-size: 0.8rem;
    color: var(--text-light);
}

.event-tag i {
    color: var(--gold);
    margin-right: 4px;
}

.events-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.events-empty i {
    font-size: 3rem;
    color: var(--green-pale);
    margin-bottom: 16px;
    display: block;
}

/* ==================== REVIEWS ==================== */
.reviews {
    background: var(--cream-dark);
}

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

.review-card:nth-child(n+4) {
    /* ikinci satır kartları */
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--green-pale);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #f5b731;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-medium);
    font-size: 1rem;
}

.review-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 2px;
}

.review-author span {
    font-size: 0.75rem;
    color: var(--text-light);
}

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

.gallery-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid var(--green-pale);
    border-radius: 30px;
    background: transparent;
    color: var(--text-medium);
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: var(--white);
}

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

/* Masonry: bazı itemler daha yüksek */
.gallery-item:nth-child(3n+1) img {
    height: 280px !important;
}

.gallery-item:nth-child(3n+2) img {
    height: 220px !important;
}

.gallery-item:nth-child(3n+3) img {
    height: 260px !important;
}

/* Parallax inner image efekti */
.gallery-item img {
    --parallax-y: 0px;
    transform: translateY(var(--parallax-y));
    transition: transform 0.6s ease, filter 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    z-index: 2;
}

.gallery-item:hover img {
    transform: translateY(var(--parallax-y)) scale(1.08);
    filter: brightness(1.05);
}

/* Overlay gradient on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26,60,21,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 var(--radius) var(--radius);
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Zoom icon on hover */
.gallery-item::before {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 1.5rem;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    pointer-events: none;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--green-medium);
    font-size: 0.85rem;
}

.gallery-placeholder i {
    font-size: 2rem;
    opacity: 0.4;
}

.gallery-instagram {
    text-align: center;
    margin-top: 40px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(225, 48, 108, 0.3);
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-item > i {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.contact-item a {
    color: var(--green-primary);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Reservation Form */
.contact-form-wrapper {
    flex: 1;
}

.reservation-form {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.reservation-form h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.reservation-form .form-group {
    margin-bottom: 16px;
}

.reservation-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.reservation-form .form-group input,
.reservation-form .form-group select,
.reservation-form .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background: var(--cream);
    color: var(--text-dark);
}

.reservation-form .form-group input:focus,
.reservation-form .form-group select:focus,
.reservation-form .form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    background: var(--white);
}

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

.btn-reservation {
    width: 100%;
    padding: 16px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.btn-reservation:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-reservation i {
    font-size: 1.3rem;
}

.contact-map-full {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
}

[data-theme="dark"] .reservation-form {
    background: #1e1e1e;
    border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .reservation-form .form-group input,
[data-theme="dark"] .reservation-form .form-group select,
[data-theme="dark"] .reservation-form .form-group textarea {
    background: #242424;
    border-color: rgba(255,255,255,0.08);
    color: #e8e8e8;
}

[data-theme="dark"] .contact-map-full iframe {
    filter: invert(0.9) hue-rotate(180deg) brightness(0.9);
}

@media (max-width: 768px) {
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    .reservation-form {
        padding: 24px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--gold);
    width: 16px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 8000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: var(--white);
}

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

.faq-item {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--green-primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--green-dark);
    gap: 16px;
    user-select: none;
}

.faq-question i {
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ==================== WEATHER WIDGET ==================== */
.weather-widget {
    position: fixed;
    top: 90px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--green-dark);
    border: 1px solid rgba(0,0,0,0.06);
    transition: opacity 0.3s, transform 0.3s;
}

.weather-widget .weather-icon {
    font-size: 1.5rem;
}

.weather-widget .weather-temp {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-primary);
}

.weather-widget .weather-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

.weather-widget .weather-location {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .weather-widget {
        top: auto;
        bottom: 90px;
        right: 12px;
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

/* ==================== AMBIENT SOUND TOGGLE ==================== */
.sound-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: var(--green-primary);
    font-size: 1.1rem;
}

.sound-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    background: var(--green-primary);
    color: white;
}

.sound-toggle.playing {
    background: var(--green-primary);
    color: white;
    animation: soundPulse 2s ease-in-out infinite;
}

.sound-toggle .sound-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 18px;
}

.sound-toggle .sound-bars span {
    display: block;
    width: 3px;
    background: currentColor;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.sound-toggle:not(.playing) .sound-bars span {
    height: 4px !important;
}

.sound-toggle.playing .sound-bars span:nth-child(1) {
    animation: soundBar 0.8s ease-in-out infinite 0s;
}
.sound-toggle.playing .sound-bars span:nth-child(2) {
    animation: soundBar 0.8s ease-in-out infinite 0.1s;
}
.sound-toggle.playing .sound-bars span:nth-child(3) {
    animation: soundBar 0.8s ease-in-out infinite 0.2s;
}
.sound-toggle.playing .sound-bars span:nth-child(4) {
    animation: soundBar 0.8s ease-in-out infinite 0.3s;
}
.sound-toggle.playing .sound-bars span:nth-child(5) {
    animation: soundBar 0.8s ease-in-out infinite 0.15s;
}

.sound-toggle .sound-label {
    position: absolute;
    left: 60px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.sound-toggle:hover .sound-label {
    opacity: 1;
}

@keyframes soundBar {
    0%, 100% { height: 4px; }
    50% { height: 18px; }
}

@keyframes soundPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(45,90,39,0.3); }
    50% { box-shadow: 0 4px 30px rgba(45,90,39,0.5); }
}

@media (max-width: 768px) {
    .sound-toggle {
        bottom: 90px;
        left: 12px;
        width: 44px;
        height: 44px;
    }
}

/* ==================== CAMPAIGN BANNER ==================== */
.campaign-banner {
    background: linear-gradient(135deg, var(--gold), #b8943e);
    padding: 14px 0;
    position: relative;
    overflow: hidden;
}

.campaign-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.campaign-icon {
    font-size: 1.2rem;
    color: var(--green-dark);
    animation: campaignBounce 2s ease-in-out infinite;
}

.campaign-content p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-dark);
    text-align: center;
}

.campaign-btn {
    background: var(--green-dark);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
    white-space: nowrap;
}

.campaign-btn:hover {
    background: var(--green-primary);
    transform: scale(1.05);
}

@keyframes campaignBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@media (max-width: 480px) {
    .campaign-content { gap: 10px; }
    .campaign-content p { font-size: 0.85rem; }
}

/* ==================== COUNTDOWN BANNER ==================== */
.countdown-banner {
    background: linear-gradient(135deg, var(--green-dark), #0f2b0c);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.countdown-banner .container {
    position: relative;
    z-index: 1;
}

.countdown-event-name {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.countdown-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.countdown-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px 24px;
    min-width: 90px;
    text-align: center;
}

.countdown-item .cd-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: block;
}

.countdown-item .cd-label {
    font-size: 0.75rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

.countdown-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.countdown-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .countdown-grid { gap: 10px; }
    .countdown-item { min-width: 70px; padding: 14px 16px; }
    .countdown-item .cd-number { font-size: 2rem; }
    .countdown-event-name { font-size: 1.4rem; }
}

/* ==================== WHATSAPP POPUP ==================== */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 320px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    z-index: 999;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-popup.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.whatsapp-popup-header {
    background: #25d366;
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-popup-header .wp-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.whatsapp-popup-header .wp-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.whatsapp-popup-header .wp-info span {
    font-size: 0.75rem;
    opacity: 0.85;
}

.whatsapp-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.whatsapp-popup-close:hover { opacity: 1; }

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-popup-msg {
    background: #f0f0f0;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 16px;
    position: relative;
}

.whatsapp-popup-msg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid #f0f0f0;
    border-left: 6px solid transparent;
}

.whatsapp-popup-msg .msg-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 4px;
}

.whatsapp-popup-input {
    display: flex;
    gap: 8px;
}

.whatsapp-popup-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s;
}

.whatsapp-popup-input input:focus {
    border-color: #25d366;
}

.whatsapp-popup-input button {
    width: 44px;
    height: 44px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.whatsapp-popup-input button:hover {
    background: #1da851;
}

@media (max-width: 480px) {
    .whatsapp-popup {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 90px;
    }
}

/* ==================== HERO GOOGLE BADGE ==================== */
.hero-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-google-badge strong {
    font-size: 1.1rem;
}

/* ==================== PRICE NOTE ==================== */
.price-note {
    background: var(--green-pale);
    padding: 18px 0;
    text-align: center;
}

.price-note p {
    color: var(--green-dark);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-note a {
    color: var(--green-primary);
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
}

.price-note i {
    color: var(--gold);
}

/* ==================== WHY US ==================== */
.whyus {
    background: var(--white);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.whyus-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--radius);
    background: var(--cream);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.whyus-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-pale);
    box-shadow: var(--shadow-md);
}

.whyus-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--green-dark);
}

.whyus-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.whyus-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ==================== COUNTER ==================== */
.counter-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--green-dark) 0%, #0f2b0c 100%);
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpeg') center/cover no-repeat;
    opacity: 0.15;
}

.counter-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.counter-item {
    color: var(--white);
}

.counter-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    display: inline;
    line-height: 1;
}

.counter-item span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.counter-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    font-weight: 500;
}

/* ==================== LANG TOGGLE ==================== */
.lang-toggle {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-left: 8px;
    letter-spacing: 1px;
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold);
    color: var(--gold);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 12px;
    transition: color 0.3s, transform 0.3s;
    z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
    transform: scale(1.2);
}

.lightbox-close {
    top: 20px;
    right: 24px;
    font-size: 2rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.2);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--green-dark);
    color: var(--white);
    padding: 18px 24px;
    z-index: 9500;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.cookie-content p i {
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.cookie-content p a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--green-dark);
    border: none;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: var(--gold-light);
}

.cookie-decline {
    padding: 10px 24px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-decline:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

/* ==================== IMAGE LOADING ==================== */
.gallery-item img,
.about-image img {
    background: linear-gradient(110deg, var(--green-pale) 8%, #d9e8d6 18%, var(--green-pale) 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

.gallery-item img.loaded,
.about-image img.loaded {
    animation: none;
    background: none;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.img-loading-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.img-loading-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, var(--green-pale) 8%, #d9e8d6 18%, var(--green-pale) 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.img-loading-wrapper.loaded::before {
    opacity: 0;
    pointer-events: none;
}

/* ==================== ANIMATIONS ==================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-img-placeholder {
        height: 300px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

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

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

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-dark);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

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

    .event-card {
        flex-direction: column;
        gap: 16px;
    }

    .event-date {
        flex-direction: row;
        gap: 8px;
        width: fit-content;
    }

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

    .gallery-placeholder {
        height: 180px;
    }

    .about-features {
        flex-direction: column;
        gap: 12px;
    }

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

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

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

    .counter-number {
        font-size: 2.4rem;
    }

    .lang-toggle {
        position: absolute;
        top: 16px;
        right: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 70px 0;
    }
}

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

    .gallery-placeholder {
        height: 220px;
    }

    .intro-title {
        font-size: 2.2rem;
    }
}
