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

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

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

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

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

a:hover {
    opacity: 0.7;
}

/* Split-Screen Navigation */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-right a {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.nav-cta {
    background-color: #0066cc;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #0052a3;
    opacity: 1;
}

.cta-secondary {
    background-color: #28a745;
    color: #ffffff;
}

.cta-secondary:hover {
    background-color: #218838;
    opacity: 1;
}

.cta-outline {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.cta-outline:hover {
    background-color: #0066cc;
    color: #ffffff;
    opacity: 1;
}

/* Intro Asymmetric Section */
.intro-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
}

.intro-text-wide {
    flex: 2;
    padding-right: 0;
    margin-bottom: 2rem;
}

.intro-text-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text-wide p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.intro-visual-small {
    flex: 1;
}

.intro-visual-small img {
    width: 100%;
    border-radius: 12px;
}

/* Services Split Section */
.services-split {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.15rem;
    color: #666;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card-split.reverse {
    flex-direction: column;
}

.service-visual {
    flex: 1;
    min-height: 300px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.service-highlights span {
    background-color: #e9f5ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #0066cc;
    font-weight: 600;
}

.price-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #0066cc;
}

.price-note {
    font-size: 0.9rem;
    color: #888;
}

.cta-service,
.cta-service-page {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-service:hover,
.cta-service-page:hover {
    background-color: #218838;
}

/* Trust Split Section */
.trust-split {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-content {
    flex: 1;
    margin-bottom: 3rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
}

/* Testimonials Stacked */
.testimonials-stacked {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.testimonials-stacked h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.testimonial-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #888;
    font-style: normal;
}

/* Booking Section Split */
.booking-section-split {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background-color: #fafafa;
}

.booking-intro {
    flex: 1;
    margin-bottom: 2rem;
}

.booking-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-intro p {
    font-size: 1.1rem;
    color: #555;
}

.booking-form-container {
    flex: 1;
}

.booking-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-submit {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #0052a3;
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    flex-direction: column;
}

.final-visual {
    flex: 1;
    min-height: 400px;
}

.final-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Footer Split */
.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: #0066cc;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    color: #333;
    text-align: center;
}

.cookie-content a {
    color: #0066cc;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #218838;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #28a745;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1500;
    transition: transform 0.3s ease;
}

.sticky-cta:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 60vh;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #666;
}

.page-hero-visual {
    flex: 1;
    min-height: 300px;
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Split Section */
.story-split {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 2rem;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    border-radius: 12px;
}

/* Values Asymmetric */
.values-asymmetric {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.values-intro {
    margin-bottom: 3rem;
}

.values-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.values-intro p {
    font-size: 1.15rem;
    color: #666;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Team Split */
.team-split {
    padding: 5rem 5%;
}

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

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.team-member-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    gap: 2rem;
}

.team-member-split.reverse {
    flex-direction: column;
}

.team-photo {
    flex: 1;
}

.team-photo img {
    width: 100%;
    border-radius: 12px;
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    font-size: 0.95rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Fleet Split */
.fleet-split {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.fleet-intro {
    margin-bottom: 3rem;
}

.fleet-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fleet-intro p {
    font-size: 1.15rem;
    color: #666;
}

.fleet-item-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    gap: 2rem;
}

.fleet-item-split.reverse {
    flex-direction: column;
}

.fleet-visual {
    flex: 1;
}

.fleet-visual img {
    width: 100%;
    border-radius: 12px;
}

.fleet-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleet-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fleet-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Numbers Section */
.numbers-section {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.numbers-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.number {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    color: #ccc;
}

/* Final About CTA */
.final-about-cta {
    padding: 5rem 5%;
    background-color: #0066cc;
    text-align: center;
}

.final-about-content {
    color: #ffffff;
}

.final-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-about-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Services Intro Split */
.services-intro-split {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 2rem;
}

.services-intro-text {
    flex: 2;
}

.services-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.services-intro-cta {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Detailed Services */
.detailed-services {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.service-detailed {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detailed-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-detailed-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-tag {
    display: inline-block;
    background-color: #e9f5ff;
    color: #0066cc;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-detailed-price {
    display: flex;
    flex-direction: column;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
}

.price-unit {
    font-size: 0.95rem;
    color: #888;
}

.service-detailed-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detailed-desc {
    flex: 2;
}

.service-detailed-desc p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.service-detailed-info {
    flex: 1;
}

.service-detailed-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detailed-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detailed-info li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-detailed-info strong {
    color: #333;
}

/* Additional Services */
.additional-services {
    padding: 5rem 5%;
}

.additional-services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.addon-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.addon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.addon-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066cc;
}

/* Booking Info Section */
.booking-info-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.booking-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-column {
    flex: 1;
}

.info-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-column p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

/* Services Final CTA */
.services-final-cta {
    padding: 5rem 5%;
    background-color: #0066cc;
    text-align: center;
    color: #ffffff;
}

.services-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-primary-large {
    display: inline-block;
    background-color: #ffffff;
    color: #0066cc;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
}

.cta-primary-large:hover {
    background-color: #f0f0f0;
    opacity: 1;
}

/* Contact Main Split */
.contact-main-split {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 3rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #0066cc;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-detail a {
    color: #0066cc;
    font-weight: 600;
}

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

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 12px;
}

/* Contact Hours Detail */
.contact-hours-detail {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.contact-hours-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.hours-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.hours-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Team Section */
.contact-team-section {
    padding: 5rem 5%;
}

.contact-team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.team-contact-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    text-align: center;
}

.team-contact-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.team-contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-contact-role {
    font-size: 0.95rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-contact-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.team-contact-card a {
    color: #0066cc;
    font-weight: 600;
}

/* FAQ Contact Section */
.faq-contact-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.faq-contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #0066cc;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 5rem 5%;
    background-color: #0066cc;
    text-align: center;
}

.contact-cta-content {
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Thanks Hero */
.thanks-hero {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    min-height: 80vh;
}

.thanks-content {
    flex: 2;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #28a745;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.booking-summary {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.booking-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-summary p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.thanks-contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-contact-info p {
    font-size: 1.05rem;
    color: #555;
}

.thanks-contact-info a {
    color: #0066cc;
    font-weight: 600;
}

.contact-hours {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.thanks-visual {
    flex: 1;
    min-height: 400px;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Thanks Testimonial */
.thanks-testimonial {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.testimonial-box {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    text-align: center;
}

.testimonial-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Thanks Suggestions */
.thanks-suggestions {
    padding: 5rem 5%;
}

.thanks-suggestions h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

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

.suggestion-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.suggestion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.suggestion-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.suggestion-link {
    color: #0066cc;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Legal Page */
.legal-page {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0066cc;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 700;
    color: #333;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
}

.cookie-table td {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .nav-right {
        gap: 2.5rem;
    }

    .hero-split {
        flex-direction: row;
    }

    .intro-asymmetric {
        flex-direction: row;
        gap: 3rem;
    }

    .intro-text-wide {
        padding-right: 2rem;
        margin-bottom: 0;
    }

    .service-card-split {
        flex-direction: row;
    }

    .service-card-split.reverse {
        flex-direction: row-reverse;
    }

    .trust-split {
        flex-direction: row;
        gap: 4rem;
    }

    .trust-content {
        margin-bottom: 0;
    }

    .trust-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .booking-section-split {
        flex-direction: row;
        gap: 4rem;
    }

    .booking-intro {
        margin-bottom: 0;
    }

    .final-cta-split {
        flex-direction: row;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .page-hero-split {
        flex-direction: row;
    }

    .story-split {
        flex-direction: row;
        gap: 3rem;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .team-member-split {
        flex-direction: row;
        gap: 3rem;
    }

    .team-member-split.reverse {
        flex-direction: row-reverse;
    }

    .fleet-item-split {
        flex-direction: row;
        gap: 3rem;
    }

    .fleet-item-split.reverse {
        flex-direction: row-reverse;
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-item {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

    .services-intro-split {
        flex-direction: row;
        gap: 3rem;
    }

    .service-detailed-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .service-detailed-body {
        flex-direction: row;
    }

    .addon-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .info-columns {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-main-split {
        flex-direction: row;
    }

    .hours-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .contact-team-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .thanks-hero {
        flex-direction: row;
        gap: 4rem;
    }

    .thanks-visual {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
    }

    .suggestions-grid {
        flex-direction: row;
    }

    .form-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .addon-grid {
        flex-wrap: nowrap;
    }

    .addon-card {
        flex: 1;
    }

    .hours-grid {
        flex-wrap: nowrap;
    }

    .hours-card {
        flex: 1;
    }
}
