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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

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

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2E5C8A;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2E5C8A;
    transition: all 0.3s;
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #2E5C8A 0%, #4A7BA7 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.page-hero {
    background: linear-gradient(135deg, #2E5C8A 0%, #4A7BA7 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #1e3f5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

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

.btn-text {
    background: none;
    color: #2E5C8A;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2E5C8A;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #555;
}

/* Company Intro */
.company-intro {
    background-color: #f9f9f9;
}

.section-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-visual {
    flex: 1;
    min-width: 300px;
}

.intro-visual svg {
    max-width: 400px;
    margin: 0 auto;
}

/* Philosophy */
.philosophy-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.philosophy-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2E5C8A;
}

/* Routes */
.featured-routes {
    background-color: #f9f9f9;
}

.routes-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.route-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.route-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.route-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2E5C8A;
}

/* Benefits */
.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

.benefit-item p {
    color: #555;
}

/* Statistics */
.statistics {
    background-color: #2E5C8A;
    color: #fff;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2E5C8A;
    font-style: italic;
}

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

.testimonial footer {
    font-style: normal;
    font-weight: 600;
    color: #2E5C8A;
}

/* Process */
.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #2E5C8A;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

/* Trust Indicators */
.trust-indicators {
    background-color: #f9f9f9;
}

.trust-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background-color: #f9f9f9;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #2E5C8A;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.25rem;
}

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

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

/* CTA Sections */
.cta-final,
.cta-section {
    background: linear-gradient(135deg, #2E5C8A 0%, #4A7BA7 100%);
    color: #fff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Services Page */
.services-intro {
    background-color: #f9f9f9;
}

.services-list h2 {
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-bottom: 2px solid #2E5C8A;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.4rem;
    color: #2E5C8A;
    margin: 0;
}

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

.service-body {
    padding: 1.5rem;
}

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

.service-features {
    list-style: disc;
    padding-left: 1.5rem;
    color: #666;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-benefits,
.booking-process,
.faq-services {
    margin-top: 3rem;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.benefit-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

.process-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.process-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

/* Contact Page */
.contact-intro {
    background-color: #f9f9f9;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2E5C8A;
}

.contact-card a {
    color: #2E5C8A;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

.about-location {
    background-color: #f9f9f9;
}

.location-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.location-text,
.location-directions {
    flex: 1;
    min-width: 300px;
}

.location-directions ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.location-directions li {
    margin-bottom: 0.75rem;
}

.company-info {
    background-color: #f9f9f9;
}

.info-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

.contact-visual {
    text-align: center;
    padding: 3rem 0;
}

.visual-content svg {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.visual-caption {
    font-size: 1.2rem;
    color: #2E5C8A;
    font-weight: 600;
}

/* Thank You Page */
.thank-you-hero {
    padding: 5rem 0;
    text-align: center;
}

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

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

.thank-you-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.next-steps {
    background-color: #f9f9f9;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.browse-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.browse-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.browse-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.browse-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.browse-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

.support-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.support-box h2 {
    margin-bottom: 1rem;
}

/* About Page */
.story {
    background-color: #f9f9f9;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

.team {
    background-color: #f9f9f9;
}

.team-areas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-area h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

.team-area p {
    color: #555;
}

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

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E5C8A;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2E5C8A;
}

.timeline-content p {
    color: #555;
}

.approach {
    background-color: #f9f9f9;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

.approach-item p {
    color: #555;
}

.commitment-list {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sustainability {
    background-color: #f9f9f9;
}

.sustainability-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sustainability-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
}

.sustainability-block p {
    color: #555;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2E5C8A;
    text-align: left;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2E5C8A;
    text-align: left;
}

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

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

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

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #777;
}

/* Footer */
.site-footer {
    background-color: #2E5C8A;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-col a {
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #2E5C8A;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cookie-modal-body {
    padding: 1.5rem;
}

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

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h3 {
    font-size: 1.2rem;
    color: #2E5C8A;
    margin: 0;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle input:checked + .toggle-slider {
    background-color: #2E5C8A;
}

.toggle input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle.disabled .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 200;
        padding: 2rem;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    section h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}