/* Minimal Global Styles */
:root {
    /* Dark Green Font */
    --primary-color: #526a5d;
    /* Darker Green */
    --primary-hover: #3d5045;
    /* Sage Green */
    --accent-color: #bbccc2;
    /* Cream Background */
    --bg-body: #faf0e7;
    /* White for cards */
    --bg-light: #ffffff;
    /* Dark Green Text */
    --text-main: #526a5d;
    /* Muted Green */
    --text-muted: #7a8c82;
    /* Warm Border */
    --border-color: #dcd0c5;
    --max-width: 1200px;
    --transition: all 0.2s ease-in-out;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    /* Changed to simple font as requested */
    color: var(--text-main);
    /* Black headings */
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-body);
    position: sticky;
    top: 0;
    z-index: 1100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 100%;
    padding: 0 5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    /* Changed to simple font as requested */
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.top-banner {
    width: 100%;
    overflow: hidden;
}

.top-banner picture {
    display: block;
    width: 100%;
}

.top-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 4px;
    /* Slightly rounded, professional */
    font-weight: 600;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--primary-hover);
    color: #FFF;
}

.btn-outline {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #FFF;
}

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

/* Page Hero (Minimal - Default for all pages) */
.page-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
    /* Reduced padding for inner pages */
    text-align: center;
    margin-bottom: 2rem;
}

/* Home Page Hero (Full Screen Effect) */
.home-hero {
    padding: 4rem 0;
    margin-bottom: 3rem;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bigger Hero Button */
.page-hero .btn {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    margin-top: 1rem;
    border-radius: 8px;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

/* Main Content */
.main-content {
    flex: 1;
    /* Pushes footer down */
    padding-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.card-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.card p {
    flex-grow: 1;
}

.card-hero-img {
    width: calc(100% + 4rem);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 6px 6px 0 0;
}

/* Booking Wrapper */
.booking-wrapper {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* About Page Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Images left, text right */
    gap: 3rem;
    align-items: start;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-img-container {
    width: 100%;
    max-width: 250px !important;
    /* Force smaller size */
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .about-text {
        order: 1;
        /* Show text first on mobile */
    }

    .about-images {
        order: 2;
        /* Show images second on mobile */
        margin-bottom: 0;
        margin-top: 2rem;
    }
}

/* Testimonial Accordion */
.testimonial-accordion {
    width: 100%;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonial-accordion summary {
    padding: 1.5rem;
    cursor: pointer;
    background: transparent;
    font-weight: 600;
    list-style: none;
    /* Remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.testimonial-accordion:hover {
    background: #f0fff4;
    /* Light green hover */
}

.testimonial-accordion summary:hover {
    background: transparent;
}

.testimonial-accordion summary::-webkit-details-marker {
    display: none;
}

.testimonial-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.testimonial-accordion[open] summary::after {
    content: '-';
}

.testimonial-accordion p {
    padding: 1.5rem;
    margin: 0;
    border-top: 1px solid #eee;
    font-style: italic;
    color: #555;
    background: transparent;
    line-height: 1.7;
}

.testimonial-role {
    font-size: inherit;
    /* Same size as name */
    font-weight: inherit;
    /* Same weight as name */
    color: inherit;
    /* Same color as name */
    margin-left: 0.2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        height: 70px;
        position: relative;
    }

    /* Hamburger Menu Button */
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1200;
    }

    /* Mobile Navigation Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-body);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 1rem;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        margin-top: 0;
        overflow-y: auto;
        z-index: 1150;
    }

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

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

    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Hero Text Size */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Contact Page Fix */
    .booking-wrapper {
        padding: 0.5rem !important;
        /* Minimal padding */
        border: none;
        /* Remove border */
        display: block;
        /* Force block */
        min-height: auto;
        /* Allow flexible height */
    }

    /* TidyCal Iframe fix */
    .tidycal-embed {
        width: 100%;
        overflow: hidden;
    }


}

/* Desktop: Hide Menu Toggle */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* Comparison Accordion */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.comparison-card {
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.comparison-card summary {
    list-style: none;
    /* Hide default triangle */
    cursor: pointer;
    position: relative;
    padding: 0;
}

/* Hide default triangle in Webkit */
.comparison-card summary::-webkit-details-marker {
    display: none;
}

.comparison-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.comparison-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid transparent;
}

.comparison-card[open] .comparison-header {
    border-bottom: 1px solid #f0f0f0;
}

.comparison-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.comparison-card[open] .toggle-icon {
    transform: rotate(180deg);
}

.comparison-content {
    padding: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    background: #fafafa;
}

.comparison-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.comparison-content li {
    margin-bottom: 0.8rem;
}

/* Pricing Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: height;
    /* Ensure cards are same height */
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #fafafa;
    border-radius: 8px;
    /* Slightly less rounded than others based on image */
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card img {
    width: 100%;
    height: 300px;
    /* Square-ish look */
    object-fit: cover;
    display: block;
}

.pricing-info {
    padding: 2rem;
    flex-grow: 1;
    /* Pushes content to fill space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    /* White background for text area as per screenshot seems to be white or very light */
}


.pricing-info p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.btn-yellow {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    background-color: #FCD34D;
    /* Yellow color from screenshot */
    color: #000;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-yellow:hover {
    background-color: #FBBF24;
}

/* Pricing Refinements */
.pricing-card {
    border-top: 5px solid var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-info {
    padding: 0;
    /* Remove old padding */
    background: transparent;
}

.pricing-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price-type {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 0.2rem;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.btn-primary-custom {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 3rem auto;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    align-items: start;
    /* Prevents stretching nicely */
}

/* Adjust accordion style for grid */
.testimonial-accordion {
    height: 100%;
    /* Ensure full height usage */
    display: flex;
    flex-direction: column;
}

/* Footer Refinement */
footer {
    background: var(--bg-body);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-muted);
}

/* Input Fields Refinement */
input,
textarea,
select {
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(82, 106, 93, 0.1);
}

/* Metrics Section */
.metrics-section {
    background-color: var(--bg-light);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.metric-card {
    background: var(--primary-color);
    /* Dark green background */
    border: none;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    /* Increased vertical padding */
    text-align: center;
    transition: var(--transition);
    color: #fff;
    /* White text */
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(82, 106, 93, 0.2);
}

.metric-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #bbccc2;
    /* Sage green color for icons */
}

.metric-icon svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.metric-number {
    font-family: 'Inter', sans-serif;
    /* Simple sans-serif font */
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    /* White number */
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.95rem;
    color: #e0e0e0;
    /* Light grey/white for readability */
    line-height: 1.5;
}

/* Mobile: 2x2 Grid */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .metric-card {
        padding: 1.5rem 1rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }
}

/* Testimonials Carousel */
.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 0 1.5rem 0;
    /* Added bottom padding for dots */
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    /* Uniform height constraints */
    max-height: 250px;
    overflow-y: auto;
    padding-right: 1rem;
}

/* Custom Scrollbar for Testimonials */
.testimonial-text::-webkit-scrollbar {
    width: 6px;
}

.testimonial-text::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.testimonial-text::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.testimonial-text::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    /* Reduced from 1.5rem */
}

.carousel-btn {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Mobile Testimonial Fix */
@media (max-width: 768px) {
    .testimonial-slide {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-right: 5px;
    }
}