/* detailed-styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #1b4332;
    /* Deep Green */
    --primary-dark: #081c15;
    --accent-color: #d4a373;
    /* Gold/Bronze accent */
    --bg-color: #efe8d8;
    /* Richer/Darker Beige */
    --surface-color: #ffffff;
    --text-main: #2d3748;
    --text-light: #718096;
    --text-on-primary: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --bg-light-beige: #f4f1e8;
    /* Slightly darker to reduce contrast with #efe8d8 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bg-alt {
    background-color: rgba(212, 163, 115, 0.05);
    /* Slight Gold/Beige Tint */
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.bg-light-beige {
    background-color: var(--bg-light-beige);
}

.bg-beige {
    background-color: var(--bg-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-color);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.cta-button {
    background: linear-gradient(rgba(27, 67, 50, 0.9), rgba(8, 28, 21, 0.95)), url('hero-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--accent-color);
    font-weight: 700;
    border: 1px solid rgba(212, 163, 115, 0.3);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
/* Hero Slider */
.hero {
    height: 100vh;
    /* Use linear gradient for better text legibility */
    background: linear-gradient(rgba(8, 28, 21, 0.85), rgba(8, 28, 21, 0.9)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    overflow: hidden;
    position: relative;
    color: white;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding-top: 80px;
    /* Offset for header */
}

/* Ensure content centering */
.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Slider Arrow */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.slider-arrow.right {
    right: 2rem;
}

.slider-arrow.left {
    left: 2rem;
}

.slider-arrow:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Glassmorphism for Calendar */
.glass-panel {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.glass-header {
    background: transparent !important;
    color: var(--accent-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.glass-header:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.glass-header .icon {
    color: white;
}

/* Adjust Calendar Wrappers for Dark Mode */
#hero-slide-2 .accordion-content {
    background: transparent !important;
    border-top: none !important;
}


.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
    letter-spacing: 0.3px;
}

.hero .cta-button {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.hero .cta-button:hover {
    background-color: #e0b183;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    text-align: justify;
}

.about-image {
    background: linear-gradient(rgba(27, 67, 50, 0.85), rgba(8, 28, 21, 0.9)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    z-index: -1;
    border-radius: var(--radius);
}

/* Services Section */
.services {
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(rgba(27, 67, 50, 0.9), rgba(8, 28, 21, 0.95)), url('hero-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* Deep Green */
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
    /* Gold top border */
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
    /* Slightly darker on hover */
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Subtle light */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    /* Gold Icon */
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-align: center;
    color: var(--accent-color);
    /* Gold Heading */
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    /* White Text */
    font-size: 0.95rem;
    text-align: justify;
}

/* Contact */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(rgba(27, 67, 50, 0.9), rgba(8, 28, 21, 0.95)), url('hero-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 163, 115, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
}

.info-item .text-light {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);

}

#contact-book-btn {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

#contact-book-btn:hover {
    background-color: #e0b183;
}

form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-weight: 500;
    font-size: 0.9rem;
}

input,
textarea,
select {
    width: 100%;
    /* Fix spillover */
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    /* Moved slightly left from edge */
    padding-right: 2.5rem;
    /* Space for arrow */
    background-color: white;
}

textarea {
    min-height: 150px;
    /* Double height */
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

/* Footer */
footer {
    background-color: var(--bg-color);
    color: var(--text-main);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
    padding-bottom: 3rem;
}

.footer-brand h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand h2 span {
    color: var(--accent-color);
}

.footer-brand p {
    color: var(--text-light);
}

.footer-links h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-main);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Wrapper for fade animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Fix for fixed background glitch on transform */
.fade-in-section .feature-card,
.fade-in-section .service-card {
    transform: none !important;
    /* Prevent translateY from breaking fixed bg */
    transition: opacity 0.6s ease-out;
    /* Only fade in */
}

/* Mobile Responsiveness */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    /* Larger touch target */
    height: 44px;
    padding: 12px 8px;
    /* Internal spacing */
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    /* Higher than header */
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    /* Slightly thinner for elegance */
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(27, 67, 50, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 5.2vw;
        /* Reduced slightly for better side spacing */
        line-height: 1.3;
        text-align: center;
        /* Ensure strictly centered */
        word-wrap: break-word;
    }

    .hero p {
        padding: 0 1rem;
    }

    .about-grid,
    .contact-container,
    .footer-content,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        /* Force stack on mobile */
    }

    .contact-container {
        padding: 1.5rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(rgba(27, 67, 50, 0.9), rgba(8, 28, 21, 0.95)), url('hero-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* Deep Green */
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 163, 115, 0.1);
    /* Subtle Gold border */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle light bg */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--accent-color);
    /* Gold Icon */
}

.feature-icon svg,
.icon-wrapper svg {
    width: 50%;
    height: 50%;
    fill: currentColor;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--accent-color);
    /* Gold Heading */
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    /* White Text */
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    counter-reset: step-counter;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 163, 115, 0.4);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 2rem;
}

.faq-answer p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
}


.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Compliance Calendar Section (2026 Refactor) */
/* Accordion Styles */
.calendar-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(27, 67, 50, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--surface-color);
    border: none;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(212, 163, 115, 0.1);
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 400;
}

.accordion-content {
    background: #fff;
    border-top: 1px solid rgba(27, 67, 50, 0.1);
}

.calendar-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    /* Added padding */
}

.calendar-track-container {
    overflow: hidden;
    width: 100%;
    /* Shows roughly 3 cards */
    padding: 1rem 0;
}

.calendar-track {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.4s ease-in-out;
}

.monthly-card {
    flex: 0 0 300px;
    /* Fixed width cards */
    background: #fff;
    /* White background for card inside accordion */
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(27, 67, 50, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.monthly-card h3 {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

.dates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns for dates */
    gap: 1rem;
}

.date-item {
    text-align: center;
    background: rgba(239, 232, 216, 0.3);
    padding: 0.3rem;
    /* Reduced padding */
    border-radius: 4px;
    border: 1px solid transparent;
    /* Prepare for highlight border */
}

/* Highlight High Priority Dates */
.date-item.highlight {
    background: rgba(212, 163, 115, 0.2);
    /* Gold tint */
    border: 1px solid var(--accent-color);
}

.date-item.highlight .date-val {
    color: #b08155;
    /* Darker gold text */
}

.date-val {
    display: block;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
    /* Reduced font size */
}

.event-val {
    font-size: 0.75rem;
    /* Reduced font size */
    color: var(--text-light);
}

.nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.nav-btn:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .calendar-wrapper {
        flex-direction: column;
    }

    .nav-btn {
        display: none;
        /* Swipe usually better on mobile, but buttons ok for now */
    }

    /* Re-enable buttons if needed or use simple horizontal scroll */
    .calendar-track-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .monthly-card {
        scroll-snap-align: center;
        flex: 0 0 85%;
        /* Bigger card on mobile */
    }
}

/* Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    font-size: 2rem;
}

.floating-action-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 28, 21, 0.9);
    /* Deep Green overlay */
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-light-beige);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    height: auto;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--accent-color);
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom Booking Widget */
.booking-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.step-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.date-scroll-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    scrollbar-width: thin;
}

.date-card {
    min-width: 80px;
    height: 90px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.date-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.date-card.selected {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

.date-card .day {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.date-card .date {
    font-size: 1.5rem;
    font-weight: 700;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.time-slot {
    padding: 0.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    border-color: var(--accent-color);
    background-color: #fff9f0;
}

.time-slot.selected {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.booking-form-step {
    display: none;
    animation: fadeIn 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.booking-form-step.active {
    display: block;
}

.selected-summary {
    background-color: rgba(27, 67, 50, 0.05);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--primary-color);
    text-align: center;
    border: 1px solid rgba(27, 67, 50, 0.1);
}

/* Nested FAQ Accordion */
.faq-group {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 163, 115, 0.2);
    padding-bottom: 1rem;
}

.faq-group:last-child {
    border-bottom: none;
}

.faq-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    transition: color 0.3s ease;
}

.faq-group-header h4 {
    margin: 0;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.faq-group-header:hover h4 {
    color: var(--primary-color);
}

.group-toggle-icon {
    color: var(--accent-color);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-group.active .group-toggle-icon {
    transform: rotate(180deg);
}

.faq-group-content {
    display: none;
    padding-top: 1rem;
    animation: fadeIn 0.3s ease;
}

.faq-group.active .faq-group-content {
    display: block;
}

/* Mobile Improvements */
@media (max-width: 768px) {

    /* Move slider arrows to bottom on mobile to prevent text overlap */
    .slider-arrow {
        top: auto;
        bottom: 120px;
        /* Positioned above bottom edge */
        transform: none;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
    }

    .slider-arrow.left {
        left: 10px;
    }

    .slider-arrow.right {
        right: 10px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Fix Contact Alignment on Mobile */
    .contact-details-wrapper {
        margin: 0 !important;
        width: 100% !important;
        align-items: flex-start !important;
    }

    .info-item {
        justify-content: flex-start;
        width: 100%;
        gap: 1.5rem;
        /* Ensure consistent gap */
    }
}

/* Desktop Contact Wrapper */
.contact-details-wrapper {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
}