@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1B3C1A;
    --primary-light: #2D5016;
    --secondary: #4A7C2F;
    --secondary-dark: #3E6B27;
    --accent: #A0D468;
    --accent-soft: rgba(160, 212, 104, 0.1);
    --bg-cream: #F9FBF9;
    --bg-white: #FFFFFF;
    --text-dark: #111111;
    --text-muted: #555555;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 50px rgba(27, 60, 26, 0.12);
    --border-radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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 40px;
}

.section-padding {
    padding: 100px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 60, 26, 0.2);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(199, 75, 159, 0.2);
}

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

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

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

header.active {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-img {
    width: 200px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Active */
.nav-links.nav-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 30px;
    box-shadow: var(--shadow);
    z-index: 1000;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(to right, rgba(27, 60, 26, 0.9), rgba(27, 60, 26, 0.4)), url('../assets/images/hero.png') center/cover no-repeat;
    position: relative;
    color: white;
}

.hero h1,
.hero p,
.hero .diff-item,
.hero .diff-item span {
    color: white !important;
}

.hero-text h1 {
    font-size: 4.8rem;
    line-height: 1.05;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-text p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-differentiators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.diff-item span {
    color: var(--accent) !important;
}

/* Booking Form */
.booking-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(45, 80, 22, 0.05);
    color: var(--text-dark);
}

.booking-card h3 {
    margin-bottom: 25px;
    font-size: 1.75rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

/* --- Services --- */
.services-section {
    background: var(--bg-white);
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1.5px solid rgba(160, 212, 104, 0.3); /* Default light green border */
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary); /* Border solidifies on hover */
    border-bottom-color: var(--secondary);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Why Choose Us --- */
.why-us {
    background-color: var(--bg-cream);
    overflow: hidden;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    position: relative;
    z-index: 1;
}

.why-us-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.why-us-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

.why-list {
    margin-top: 30px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.why-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* --- Testimonials --- */
.testimonials {
    background-color: var(--primary);
    color: white;
}

.testimonials .section-head h2 {
    color: white;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-card .stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- CTA Section --- */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(27, 60, 26, 0.95), rgba(45, 80, 22, 0.95)), url('../assets/images/hero.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 40px;
    border-radius: 30px;
    margin: 80px 0;
    overflow: hidden;
}

.cta-banner h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* --- Footer --- */
footer {
    background: #111;
    color: #ccc;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 25px;
    font-family: inherit;
}

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

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    margin-bottom: 15px;
    border-radius: 12px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-accordion {
    margin-bottom: 20px;
    border-radius: 16px;
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(27, 60, 26, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion.active {
    box-shadow: 0 10px 30px rgba(27, 60, 26, 0.08);
    border-color: var(--secondary);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
    font-size: 1.1rem;
}

.faq-header:hover {
    background: var(--accent-soft);
}

.faq-accordion.active .faq-header {
    background: var(--primary);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 212, 104, 0.15);
    border-radius: 50%;
}

.faq-accordion.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.faq-accordion.active .faq-content {
    max-height: 600px;
    padding-top: 25px;
    padding-bottom: 30px;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 60, 26, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

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

/* --- Lightbox Gallery --- */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(27, 60, 26, 0.95);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.85);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 20px 0;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {

    .hero-content,
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    header {
        padding: 12px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1.15rem;
        margin-bottom: 30px;
    }

    .booking-card {
        padding: 25px;
        margin-top: 20px;
    }

    .booking-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        /* Tightened heading to form spacing */
    }

    .form-group {
        margin-bottom: 14px;
        /* Tightened field spacing */
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

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

    .cta-btns {
        flex-direction: column;
    }

    .cta-banner {
        padding: 60px 25px;
        margin: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-head h2 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }
}