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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f5f5f5;
    color: #2c5f2d;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c5f2d;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
        border-bottom: 2px solid #2c5f2d;
    }
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c4e 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-lead {
        font-size: 1.25rem;
    }
}

/* ===== Page Hero ===== */
.page-hero {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.page-hero .lead {
    font-size: 1.125rem;
    color: #666;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* ===== Sections ===== */
.section {
    padding: 3rem 0;
}

.section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-intro {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: #f8f9fa;
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: 2.25rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #234a24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #fff;
}

/* ===== Featured Tours ===== */
.tours-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tour-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.tour-icon svg {
    width: 100%;
    height: 100%;
}

.tour-card h3 {
    margin-bottom: 1rem;
    color: #2c5f2d;
}

@media (min-width: 768px) {
    .tours-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tour-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* ===== Split Content ===== */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-text {
    flex: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

@media (min-width: 768px) {
    .split-content {
        flex-direction: row;
    }
}

/* ===== Stats Section ===== */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

/* ===== Process Steps ===== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial {
        flex: 1;
    }
}

/* ===== Benefits Grid ===== */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #fff;
}

.benefit-card h3 {
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #2c5f2d;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2c5f2d;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ===== Values Grid ===== */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* ===== Team Grid ===== */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.team-role {
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ===== Timeline ===== */
.timeline {
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5f2d;
    min-width: 100px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* ===== Services ===== */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header h3 {
    margin: 0;
    color: #2c5f2d;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.service-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.service-tag {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 20px;
    color: #666;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f2d;
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ===== Included Grid ===== */
.included-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.included-item svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.included-item h3 {
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

@media (min-width: 768px) {
    .included-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .included-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* ===== Difficulty Grid ===== */
.difficulty-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.difficulty-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.difficulty-card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.difficulty-card p {
    margin-bottom: 0.5rem;
    color: #555;
}

@media (min-width: 768px) {
    .difficulty-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .difficulty-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ===== Contact ===== */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

.contact-item a {
    color: #2c5f2d;
    text-decoration: underline;
}

.info-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }
}

/* ===== Directions ===== */
.directions-content {
    max-width: 800px;
    margin: 0 auto;
}

.directions-list {
    list-style: none;
    margin-top: 1rem;
}

.directions-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.directions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 1.5rem;
    line-height: 1;
}

/* ===== Business Info ===== */
.business-details {
    max-width: 600px;
    margin: 0 auto;
}

.business-details p {
    margin-bottom: 0.75rem;
}

/* ===== Thank You ===== */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===== Steps Grid ===== */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.step-card .step-number {
    position: static;
    width: 3rem;
    height: 3rem;
    background-color: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }
}

/* ===== Legal Content ===== */
.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c5f2d;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-text a {
    color: #2c5f2d;
    text-decoration: underline;
}

/* ===== Cookie Table ===== */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c5f2d;
}

/* ===== Footer ===== */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

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

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

/* ===== Cookie Modal ===== */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h2 {
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    color: #666;
    font-size: 0.875rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-modal-buttons .btn {
    flex: 1;
}

/* ===== Approach & Commitment ===== */
.approach-content,
.commitment-grid {
    margin-top: 2rem;
}

.approach-content h3 {
    color: #2c5f2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.approach-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-item h3 {
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .commitment-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .commitment-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ===== Content Block ===== */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ===== Responsive Utilities ===== */
.lead {
    font-size: 1.125rem;
    color: #666;
}

@media (min-width: 768px) {
    .lead {
        font-size: 1.25rem;
    }
}