:root {
    --color-bg: #ffffff;
    --color-bg-secondary: #f5f3ed;
    --color-text: #242434;
    --color-text-muted: #6c757d;
    --color-primary: #c0d243;
    /* Logo Lime */
    --color-secondary: #b1bdd6;
    /* Light Blue/Grey */
    --color-accent: #242434;
    /* Dark Accent */
    --color-gradient-start: #c0d243;
    --color-gradient-end: #aebf3c;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-container: 1200px;
    --spacing-section: 6rem;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text);
    /* Dark text on lime green for contrast */
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 210, 67, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(192, 210, 67, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(245, 243, 237, 0.9);
    /* #f5f3ed with opacity */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    /* Removed inversion filter as we are now in light mode and want original colors */
    mix-blend-mode: multiply;
    /* Blends white background with the header */
}

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

.nav-list a:not(.btn) {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.nav-list a:not(.btn):hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
}

/* Hero */
.hero {
    position: relative;
    padding: 10rem 0 12rem;
    text-align: center;
    overflow: hidden;
    background: var(--color-bg);
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-text);
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(135deg, #6a9408 0%, #8fb91e 50%, #c0d243 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Fix for some browsers to render gradient correctly on text */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Bar in Hero */
.trust-bar-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.trust-bar-hero .trust-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-bar-hero .trust-logos {
    display: flex;
    gap: 3rem;
    color: var(--color-text-muted);
    font-weight: 600;
    opacity: 0.8;
    font-family: var(--font-heading);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: var(--color-primary);
}

.scroll-indicator span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(192, 210, 67, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}


/* Sections */
.section {
    padding: var(--spacing-section) 0;
}

.services,
.about {
    padding-top: calc(var(--spacing-section) + 2rem);
}

.contact {
    scroll-margin-top: 2rem;
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 210, 67, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--color-text);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--color-text);
}

.service-card p {
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
}

/* About */
.about {
    position: relative;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, var(--color-bg) 80%);
    pointer-events: none;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--color-text-muted);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.features-title {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
    color: var(--color-text);
}

.features-list li {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(192, 210, 67, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(192, 210, 67, 0.1);
    transform: translateX(5px);
}

.check-icon {
    color: var(--color-primary);
    /* Use brand lime green */
    font-weight: bold;
    font-size: 1.4rem;
}

/* Contact */
.contact-wrapper {
    background: var(--color-bg-secondary);
    /* #f5f3ed */
    padding: 4rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-wrapper.single-column {
    display: block;
    text-align: center;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header .section-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
}

.contact-header {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.bookings-container {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.booking-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(192, 210, 67, 0.15);
}

.booking-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(192, 210, 67, 0.1), rgba(192, 210, 67, 0.05));
    border-radius: 50%;
    color: var(--color-primary);
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    position: relative;
    padding-bottom: 1rem;
}

.booking-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.booking-description {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.booking-contact {
    color: var(--color-text);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.booking-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 210, 67, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    background: none;
    -webkit-text-fill-color: initial;
}

.contact-option-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-option-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact-option-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.calendar-mockup {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.calendar-mockup p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Legal Sections */
.legal-section {
    background: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

.legal-content h3 {
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0;
    /* Removed margin since legal sections are now above */
    background: var(--color-bg-secondary);
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-col a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-bg-secondary);
        padding: 2rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav.is-open {
        display: block;
    }

    .nav.is-open .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        /* Ensure it's above the menu */
    }

    .mobile-menu-toggle span {
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .trust-bar-hero {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}