/* ===== CSS VARIABLES ===== */
:root {
    --green-dark: #1a3a1f;
    --green-mid: #2d6a35;
    --green-light: #4a9455;
    --green-pale: #e8f5e9;
    --gold: #c8a84b;
    --gold-light: #e8d08a;
    --cream: #f9f5ef;
    --white: #ffffff;
    --text-dark: #1a2118;
    --text-mid: #3d4d3a;
    --text-light: #6b7a68;
    --shadow: 0 4px 24px rgba(26,58,31,0.10);
    --shadow-lg: 0 12px 48px rgba(26,58,31,0.18);
    --radius: 12px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Raleway', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 36px rgba(37,211,102,0.75); }
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26,58,31,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold);
    transition: var(--transition);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon { font-size: 2rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.logo-sub {
    font-size: 0.68rem;
    color: rgba(200,168,75,0.65);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(200,168,75,0.12);
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 16px; right: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MAIN WRAPPER ===== */
main { padding-top: 72px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 92vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/img4.jpeg') center/cover no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,31,0.82) 0%, rgba(26,58,31,0.45) 60%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    color: var(--white);
}
.hero-badge {
    display: inline-block;
    background: rgba(200,168,75,0.18);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeUp 0.9s 0.1s ease both;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 560px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    animation: fadeUp 1s 0.2s ease both;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1.1s 0.3s ease both;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,75,0.4); }
.btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-green {
    background: var(--green-mid);
    color: var(--white);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== SECTION COMMONS ===== */
section { padding: 96px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    color: var(--green-mid);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-title em { color: var(--green-mid); font-style: italic; }
.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 56px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== HOME: FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74,148,85,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--gold));
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 2.8rem; margin-bottom: 20px; }
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ===== HOME: PREVIEW GALLERY ===== */
.preview-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
}
.preview-gallery .gal-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.preview-gallery .gal-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.preview-gallery .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.preview-gallery .gal-item:hover img { transform: scale(1.06); }
.preview-gallery .gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,58,31,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.preview-gallery .gal-item:hover::after { opacity: 1; }

/* ===== HOME: STATS ===== */
.stats-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 72px 24px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}
.stat-item { color: var(--white); }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.75); }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 520px;
}
.about-images img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    position: absolute;
    box-shadow: var(--shadow-lg);
}
.about-img-main {
    width: 75%;
    height: 380px;
    top: 0; left: 0;
}
.about-img-accent {
    width: 55%;
    height: 260px;
    bottom: 0; right: 0;
    border: 5px solid var(--cream);
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.value-item h4 { font-size: 0.92rem; color: var(--green-dark); font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; color: var(--text-light); }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-body { padding: 28px; }
.service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}
.service-body p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }
.service-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-mid);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

/* ===== PHOTO GALLERY ===== */
.gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 9px 24px;
    border-radius: 100px;
    border: 2px solid var(--green-mid);
    background: transparent;
    color: var(--green-mid);
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--green-mid);
    color: var(--white);
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.photo-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.08); }
.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,58,31,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-overlay span { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); transform: scale(1.2); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 16px;
    transition: var(--transition);
    user-select: none;
}
.lightbox-nav:hover { color: var(--gold); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.contact-card h4 { color: var(--green-dark); font-weight: 600; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--text-light); font-size: 0.95rem; }
.contact-card a:hover { color: var(--green-mid); }
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--green-dark);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(74,148,85,0.2);
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green-mid);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(74,148,85,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
    display: none;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    color: var(--green-dark);
    padding: 16px 20px;
    border-radius: 10px;
    margin-top: 16px;
    font-weight: 600;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(135deg, var(--green-dark) 0%, #0f2412 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '🌿';
    position: absolute;
    font-size: 18rem;
    opacity: 0.04;
    top: -60px; right: -40px;
    pointer-events: none;
}
.cta-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-strip p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
    background: #0f1f12;
    color: rgba(255,255,255,0.75);
    padding: 80px 24px 0;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-col p { font-size: 0.92rem; line-height: 1.8; }
.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.contact-list li { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; }
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    padding: 96px 24px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/img11.jpeg') center/cover;
    opacity: 0.15;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 360px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(26,58,31,0.98);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .main-nav.open { transform: none; opacity: 1; pointer-events: all; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 14px 20px; font-size: 1rem; }
    .preview-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .preview-gallery .gal-item:first-child { grid-column: 1 / -1; }
    .about-images { height: 280px; }
    .about-values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    section { padding: 64px 20px; }
    .contact-form { padding: 32px 24px; }
}
@media (max-width: 480px) {
    .preview-gallery { grid-template-columns: 1fr; }
    .hero-content { padding: 0 20px; }
    .hero-btns { flex-direction: column; }
    .btn { justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
