/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Mobile-first responsive rules */
/* Base small-screen adjustments */
html, body {
    -webkit-text-size-adjust: 100%;
}

.container {
    padding: 0 16px;
}

/* Make buttons and tappable elements easier to hit */
.btn {
    padding: 14px 18px;
    border-radius: 12px;
}

/* Stack nav and enable hamburger */
.nav-menu {
    gap: 1rem;
}

.hamburger {
    display: flex;
}

/* Mobile nav hidden by default, shown when active */
.nav-menu {
    position: fixed;
    top: 80px;
    right: 0;
    background: rgba(255,255,255,0.98);
    height: calc(100vh - 80px);
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -6px 0 18px rgba(0,0,0,0.08);
    display: none; /* keep default hidden; will enable below for small screens */
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu .nav-link {
    padding: 12px 8px;
    width: 100%;
}

/* Ensure header doesn't cover content on small screens */
main { 
    padding-top: 90px;
}

/* Hero adjustments */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.5rem 0;
}

.hero-title { font-size: 1.6rem; }
.hero-subtitle { font-size: 1rem; }

.hero-buttons { display: flex; gap: 0.75rem; flex-direction: column; }
.btn { width: 100%; }

/* About / Services / Gallery stack */
.about-content, .services-container, .gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Service cards make full width on mobile */
.service-card, .gallery-item {
    width: 100%;
}

/* Footer adjustments */
.footer-content { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.footer-bottom { text-align: center; margin-top: 1rem; }

/* Small-screen specific (max-width 768px) */
@media (max-width: 768px) {
    .nav-container { height: 64px; }
    .nav-logo h1 { font-size: 1.2rem; }

    /* enable mobile nav display */
    .nav-menu { display: flex; }

    /* transform nav-menu into overlay if not active */
    .nav-menu:not(.active) { transform: translateX(100%); }

    .hamburger { margin-left: 8px; }

    /* reduce paddings for containers */
    .container { padding: 0 12px; }

    /* Typography scale down */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.15rem; }

    /* Make hero image placeholder smaller */
    .hero-image { min-height: 140px; }

    /* Grid for services: two-column on medium devices */
    @media (max-width: 520px) {
        .hero-title { font-size: 1.4rem; }
    }
}

/* Hero stacking controls for mobile: default places image below text (so paragraph has full width).
   Add class `hero--image-top` to the `.hero` section to flip and show image above text. */
@media (max-width: 768px) {
    .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 100px 16px 40px !important;
        min-height: auto !important;
    }

    .hero-content {
        order: 1;
        width: 100%;
        padding: 0 !important;
    }

    .hero-image {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-placeholder {
        width: 100%;
        max-width: 480px;
        height: 200px;
        border-radius: 16px;
    }

    /* Optional: if you prefer the image at the top on mobile, add `hero--image-top` to the section */
    .hero.hero--image-top .hero-image { order: 1; }
    .hero.hero--image-top .hero-content { order: 2; }
}

/* Larger screens behavior (desktop) - keep existing layout */
@media (min-width: 769px) {
    .hamburger { display: none; }
    .nav-menu { display: flex !important; position: static; height: auto; width: auto; flex-direction: row; background: transparent; box-shadow: none; transform: none; }
    main { padding-top: 100px; }
    .hero { grid-template-columns: 1fr 1fr; align-items: center; }
    .hero-buttons { flex-direction: row; }
    .service-card { display: block; }
}


/* Color Palette */
:root {
    --primary-green: #2c5f2d;
    --secondary-green: #97bc62;
    --light-green: #e8f5e8;
    --accent-brown: #8b7355;
    --soft-beige: #f5f2e8;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --medium-gray: #666;
    --dark-gray: #333;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.book-now-btn {
    background-color: var(--secondary-green);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
}

.book-now-btn::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--soft-beige) 100%);
    margin-bottom: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 20px 40px rgba(44, 95, 45, 0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-green);
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-green);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.feature p {
    color: var(--medium-gray);
    margin: 0;
}

/* Hours Section */
.hours {
    background-color: var(--light-gray);
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hours-table {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-green);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--primary-green);
}

.time {
    color: var(--medium-gray);
    font-weight: 500;
}

.hours-note {
    background-color: var(--soft-beige);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-green);
}

.hours-note p {
    margin: 0;
    font-style: italic;
    color: var(--medium-gray);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-align: center;
}

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-green);
    border-color: white;
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary-green);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center; /* center icons horizontally */
    align-items: center;
    flex-wrap: wrap; /* allow wrapping on narrow screens */
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1201;
    }

    /* Off-canvas mobile nav hidden by default. Shown only when .active */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 64px;
        right: 0;
        width: 260px;
        max-width: 80%;
        height: calc(100vh - 64px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
        background-color: rgba(255,255,255,0.98);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transform: translateX(100%);
        transition: transform 0.25s ease, opacity 0.25s ease;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1200;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-placeholder {
        width: 300px;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        gap: 1rem;
    }

    .feature {
        padding: 1.5rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-placeholder {
        width: 250px;
        height: 150px;
        font-size: 1rem;
    }

    .hours-table {
        padding: 1.5rem;
    }

    .hours-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Strong override: ensure mobile nav is hidden by default and shown only when active */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        z-index: 1201;
    }

    /* Off-canvas hidden state (explicit) */
    .nav-menu {
        display: flex !important;
        position: fixed !important;
        top: 64px !important;
        right: 0 !important;
        left: auto !important;
        width: 260px !important;
        max-width: 80% !important;
        height: calc(100vh - 64px) !important;
        transform: translateX(100%) !important;
        transition: transform 0.25s ease, opacity 0.25s ease !important;
        box-shadow: -6px 0 18px rgba(0,0,0,0.08) !important;
        background: rgba(255,255,255,0.98) !important;
        padding: 1.25rem !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        z-index: 1200 !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Make sure links inside are full width and easy to tap */
    .nav-menu .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 12px 16px !important;
        text-align: left !important;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.feature {
    animation: fadeInUp 0.8s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
.social-link:focus {
    outline: 2px solid var(--secondary-green);
    outline-offset: 2px;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--soft-beige) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    padding: 80px 0;
    background-color: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-green);
    border-radius: 10px;
}

.service-duration,
.service-price {
    text-align: center;
}

.service-details .label {
    display: block;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.service-details .value {
    font-weight: 500;
    color: var(--medium-gray);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background-color: var(--soft-beige);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Service Packages */
.service-packages {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 3px solid var(--secondary-green);
    transform: scale(1.05);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary-green);
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Crimson Text', serif;
}

.package-content {
    padding: 2rem;
}

.package-content p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.package-includes {
    list-style: none;
    padding: 0;
}

.package-includes li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--light-green);
}

.package-includes li:last-child {
    border-bottom: none;
}

/* Final override: ensure mobile nav is hidden by default on small screens
   This comes last to override earlier conflicting declarations */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-menu {
        display: flex !important;
        position: fixed !important;
        top: 64px !important;
        right: 0 !important;
        width: 260px !important;
        max-width: 80% !important;
        height: calc(100vh - 64px) !important;
        flex-direction: column !important;
        padding: 1.25rem !important;
        background: rgba(255,255,255,0.98) !important;
        transform: translateX(100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: transform 0.25s ease, opacity 0.25s ease !important;
        z-index: 1200 !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--soft-beige) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.gallery-grid {
    padding: 80px 0;
    background-color: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--soft-beige) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-content {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background-color: var(--light-green);
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-details h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-green);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
}

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

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

/* Gallery Description */
.gallery-description {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.description-content {
    max-width: 1000px;
    margin: 0 auto;
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.description-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.description-features {
    display: grid;
    gap: 2rem;
}

.environment-feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.environment-feature:hover {
    transform: translateY(-3px);
}

.environment-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.environment-feature h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.environment-feature p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design for Gallery Description */
@media (max-width: 768px) {
    .description-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .description-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .environment-feature {
        padding: 1rem;
    }

    .environment-feature .feature-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .description-features {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

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

    .service-details {
        flex-direction: column;
        gap: 1rem;
    }

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

    .package-card.featured {
        transform: none;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .gallery-placeholder {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .services-hero,
    .gallery-hero,
    .contact-hero {
        padding: 100px 15px 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .package-header,
    .package-content {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-placeholder {
        height: 150px;
    }
}

/* Booking Information */
.booking-info {
    background-color: white;
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.booking-card {
    background-color: var(--light-green);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
}

.booking-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.booking-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.booking-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}