:root {
    --green: #2D8A4E;
    --green-dark: #1B6B34;
    --green-light: #4CAF6E;
    --green-bg: #0A1F12;
    --green-card: #0F2D1A;
    --green-surface: #0A2A16;
    --gold: #C9A96E;
    --gold-dark: #B8933F;
    --gold-light: #E8D5A3;
    --white: #FFFFFF;
    --gray: #8FA89A;
    --gray-light: #B8D4C2;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
    --shadow-green: 0 8px 25px rgba(45,138,78,0.3);
    --shadow-gold: 0 8px 25px rgba(201,169,110,0.25);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--green-bg);
    color: #E8F5EC;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============ SCROLL ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-35px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(35px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}
@keyframes whatsappPulse {
    0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 35px rgba(37,211,102,0.7); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ TOP BAR ============ */
.topbar {
    background: #051A0D;
    color: var(--gray-light);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.topbar i { color: var(--gold); margin: 0 5px; }
.topbar span { color: var(--gold); font-weight: 600; }

/* ============ NAVIGATION ============ */
.nav-bar {
    background: rgba(10,31,18,0.97);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(45,138,78,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 2rem;
}
.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    flex-wrap: wrap;
    gap: 16px;
}
.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============ IMAGE LOGO ============ */
.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
    box-shadow: var(--shadow-green);
    transition: var(--transition);
}
.logo:hover .logo-img {
    border-color: var(--gold);
    transform: scale(1.05);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-green);
}
.logo-text span {
    color: var(--green-light);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 3px;
    display: block;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--gray-light);
    transition: var(--transition);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); font-weight: 600; }
.nav-links a.active::after { width: 100%; }
.nav-cta-btn {
    background: var(--green);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-green);
    transition: var(--transition);
}
.nav-cta-btn:hover {
    background: var(--green-dark) !important;
    transform: translateY(-2px);
}
.nav-cta-btn::after { display: none !important; }

/* ============ MOBILE MENU BUTTON ============ */
.mobile-menu-btn {
    display: none;
    background: var(--green);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}
.mobile-menu-btn:hover {
    background: var(--green-dark);
    transform: scale(1.05);
}

/* ============ MOBILE SIDE NAVIGATION ============ */
.mobile-side-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: var(--green-surface);
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(45,138,78,0.3);
}

.mobile-side-nav.open {
    left: 0;
}

/* Side Nav Header */
.mobile-side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(45,138,78,0.3);
    background: var(--green-card);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.mobile-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
}

.close-side-nav {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.close-side-nav:hover {
    background: rgba(201,169,110,0.2);
    transform: rotate(90deg);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    flex: 1;
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(45,138,78,0.15);
}

.mobile-nav-links li a {
    display: block;
    padding: 14px 25px;
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.mobile-nav-links li a:hover {
    background: rgba(45,138,78,0.2);
    color: var(--gold);
    padding-left: 35px;
}

.mobile-nav-links li a.active {
    color: var(--gold);
    background: rgba(45,138,78,0.15);
}

.mobile-cta-btn {
    background: var(--green) !important;
    color: white !important;
    margin: 10px 15px !important;
    border-radius: 50px !important;
    text-align: center;
    font-weight: 600 !important;
}

.mobile-cta-btn:hover {
    background: var(--green-dark) !important;
}

/* Mobile Side Footer */
.mobile-side-footer {
    padding: 20px;
    border-top: 1px solid rgba(45,138,78,0.3);
    background: var(--green-card);
}

.mobile-side-footer p {
    margin: 10px 0;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.mobile-side-footer i {
    color: var(--gold);
    width: 25px;
    margin-right: 8px;
}

.mobile-side-footer a {
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-side-footer a:hover {
    color: var(--gold);
}

/* Overlay */
.side-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(0deg, rgba(10,31,18,0.92) 0%, rgba(10,31,18,0.5) 100%),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80') center/cover no-repeat;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(0deg, var(--green-bg) 0%, transparent 100%);
    z-index: 1;
}
.page-header-content {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}
.page-header .breadcrumb {
    color: var(--gray-light);
    font-size: 0.9rem;
}
.page-header .breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ============ HERO (HOME PAGE) ============ */
.hero {
    position: relative;
    background: linear-gradient(0deg, rgba(10,31,18,0.88) 0%, rgba(10,31,18,0.35) 100%),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(0deg, var(--green-bg) 0%, transparent 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 3rem;
    animation: scaleIn 0.8s ease forwards;
}
.hero-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: var(--shadow-green);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: 6px;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}
.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    font-weight: 300;
}
.hero-desc {
    font-size: 1rem;
    color: #A0C8B0;
    max-width: 420px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
}
.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: var(--shadow-green);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(45,138,78,0.4);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.1);
    transform: translateY(-3px);
}
.btn-gold {
    background: var(--gold);
    color: var(--green-bg);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ============ FEATURES BAR ============ */
.features-bar {
    background: var(--green-surface);
    padding: 30px 0;
    border-bottom: 1px solid rgba(45,138,78,0.2);
}
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 0 2rem;
    text-align: center;
}
.feature-item {
    color: var(--gray-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 15px;
    background: rgba(45,138,78,0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(45,138,78,0.15);
    transition: var(--transition);
}
.feature-item:hover {
    border-color: var(--green-light);
    transform: translateY(-3px);
}
.feature-item i {
    color: var(--gold);
    font-size: 1.6rem;
    display: block;
    margin-bottom: 8px;
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============ SECTION ============ */
.section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 55px;
}
.section-label {
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 8px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.section-title span { color: var(--gold); }
.section-line {
    width: 50px;
    height: 3px;
    background: var(--green);
    margin: 0 auto;
    border-radius: 2px;
}
.section-desc {
    color: var(--gray);
    max-width: 550px;
    margin: 14px auto 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ HIGHLIGHTS GRID ============ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.highlight-card {
    background: var(--green-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(45,138,78,0.2);
    transition: var(--transition);
}
.highlight-card:hover {
    border-color: var(--green-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.highlight-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.highlight-card h4 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.highlight-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

/* ============ ABOUT ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(45,138,78,0.3);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}
.about-image:hover { border-color: var(--gold); transform: scale(1.02); }
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green);
    color: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-xl);
}
.about-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}
.about-badge .text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.about-content h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.about-content .subtitle { color: var(--green-light); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.about-content p { color: var(--gray-light); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.about-stat {
    background: var(--green-card);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(45,138,78,0.2);
}
.about-stat .stat-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.about-stat .stat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ============ WHY US CARDS ============ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.why-card {
    background: var(--green-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(45,138,78,0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.1;
    transition: var(--transition);
}
.why-card:hover::before { transform: scale(2); opacity: 0.15; }
.why-card:hover { border-color: var(--green-light); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card .why-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 14px; position: relative; z-index: 1; }
.why-card h4 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; position: relative; z-index: 1; }
.why-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; position: relative; z-index: 1; }

/* ============ PAYMENT ============ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.payment-card {
    background: var(--green-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(45,138,78,0.2);
    transition: var(--transition);
}
.payment-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.payment-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.payment-card h4 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.payment-detail { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; word-break: break-all; }
.payment-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    aspect-ratio: 4/3;
}
.gallery-item:hover {
    border-color: var(--gold);
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: #fff;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h5 { font-size: 1rem; margin-bottom: 4px; }
.gallery-overlay p { font-size: 0.78rem; color: var(--gray-light); }

/* ============ LIGHTBOX ============ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    border: 2px solid var(--gold);
    animation: bounceIn 0.4s ease;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--gold);
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}
.lightbox-close:hover { color: #fff; transform: scale(1.1); }

/* ============ EVENTS ============ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.event-card {
    background: var(--green-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(45,138,78,0.2);
    transition: var(--transition);
}
.event-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.event-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}
.event-card:hover .event-card-img { transform: scale(1.05); }
.event-card-body { padding: 24px; }
.event-card-body h4 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.event-card-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.event-features { list-style: none; margin-bottom: 16px; }
.event-features li { font-size: 0.82rem; color: var(--gray-light); padding: 4px 0; }
.event-features li i { color: var(--gold); margin-right: 8px; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.testimonial-card {
    background: var(--green-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(45,138,78,0.2);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.testimonial-text { font-size: 0.95rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-rating { color: var(--gold); margin-bottom: 14px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}
.testimonial-author h5 { font-size: 0.95rem; color: #fff; }
.testimonial-author p { font-size: 0.75rem; color: var(--gray); }

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: var(--green-surface);
    border-radius: var(--radius-xl);
    padding: 50px;
    border: 1px solid rgba(45,138,78,0.3);
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 20px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(45,138,78,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
}
.contact-info-text h4 { color: #fff; font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-text p { color: var(--gray-light); font-size: 0.85rem; }
.social-icons { display: flex; gap: 12px; margin-top: 22px; }
.social-icons a {
    width: 42px; height: 42px;
    background: rgba(45,138,78,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem;
    transition: var(--transition); text-decoration: none;
    border: 1px solid rgba(45,138,78,0.3);
}
.social-icons a:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-3px); }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(45,138,78,0.3);
    border-radius: var(--radius-sm);
    color: #fff; font-family: 'Inter', sans-serif;
    font-size: 0.9rem; margin-bottom: 14px;
    transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}
.contact-form select { color: #fff; }
.contact-form select option { background: var(--green-bg); color: #fff; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button {
    width: 100%; padding: 14px;
    background: var(--green); color: #fff;
    border: none; border-radius: 50px;
    font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: var(--transition);
    font-family: 'Inter', sans-serif; letter-spacing: 0.5px;
}
.contact-form button:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); }

/* ============ HOURS TABLE ============ */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--green-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(45,138,78,0.2);
}
.hours-table th,
.hours-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(45,138,78,0.15);
    font-size: 0.9rem;
}
.hours-table th {
    background: rgba(45,138,78,0.2);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
}
.hours-table td { color: var(--gray-light); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .highlight-row { background: rgba(45,138,78,0.08); }
.hours-table .highlight-row td { color: #fff; font-weight: 600; }

/* ============ GOOGLE MAPS ============ */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(45,138,78,0.3);
    margin-top: 30px;
    box-shadow: var(--shadow-lg);
}
.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37,211,102,0.6);
    color: #fff;
}
.whatsapp-tooltip {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 999;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.whatsapp-float:hover + .whatsapp-tooltip { opacity: 1; }

/* ============ FOOTER ============ */
.footer {
    background: #051A0D;
    color: var(--gray);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(45,138,78,0.2);
}
.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-bottom: 30px;
}
.footer-col h4 { font-size: 1rem; color: #fff; margin-bottom: 16px; font-weight: 600; }
.footer-col p, .footer-col a {
    display: block; color: var(--gray);
    font-size: 0.85rem; line-height: 1.8;
    text-decoration: none; transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
    max-width: 1300px; margin: 0 auto;
    text-align: center; padding-top: 25px;
    border-top: 1px solid rgba(45,138,78,0.15);
    font-size: 0.82rem; color: var(--gray);
}
.footer-credit { margin-top: 8px; font-size: 0.75rem; color: #5A8A6A; }
.footer-credit a { color: var(--gold); text-decoration: none; font-weight: 600; transition: var(--transition); }
.footer-credit a:hover { color: var(--green-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 35px; }
    .about-badge { bottom: -10px; right: -10px; padding: 12px 18px; }
    .about-badge .number { font-size: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; padding: 30px 22px; }
    .section-title { font-size: 2rem; }
    .page-header h1 { font-size: 2.5rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
}

@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2.5rem; letter-spacing: 3px; }
    .hero-content { padding: 2rem 1.2rem; }
    
    /* Mobile navigation */
    .nav-inner { 
        flex-direction: row; 
        justify-content: space-between;
    }
    .mobile-menu-btn { 
        display: block; 
    }
    .nav-links { 
        display: none !important; 
    }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 50px 0; }
    .page-header { padding: 70px 20px 60px; }
}

@media (min-width: 769px) { 
    .nav-links { display: flex !important; } 
    .mobile-side-nav { display: none; }
    .side-nav-overlay { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 2rem; }
    .about-stats { grid-template-columns: 1fr; }
    .section-title { font-size: 1.6rem; }
    .page-header h1 { font-size: 2rem; }
}
