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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cookie-accept {
    background-color: #2d5a4a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #3d6a5a;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Header Split-Screen Style */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a4a;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    border: 1px solid #e0e0e0;
    padding: 4px 10px;
    border-radius: 3px;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5a4a;
}

/* Hero Split-Screen */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-right {
    background-color: #d4e4dc;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d5a4a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #3d6a5a;
    transform: translateY(-3px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2d5a4a;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2d5a4a;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #2d5a4a;
    color: #ffffff;
    transform: translateY(-3px);
}

.link-cta {
    color: #2d5a4a;
    font-weight: 600;
    border-bottom: 2px solid #2d5a4a;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #3d6a5a;
}

/* Split Container Pattern */
.split-container {
    display: flex;
    align-items: stretch;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.split-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d5a4a;
    margin-bottom: 15px;
    margin-top: 30px;
}

.split-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.split-image {
    background-color: #e8ebe9;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Intro Section */
.intro-section {
    background-color: #ffffff;
}

/* Values Section */
.values-section {
    background-color: #f8f9fa;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d5a4a;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

/* Services Preview Section */
.services-preview {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.section-header-centered h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-header-centered p {
    font-size: 18px;
    color: #4a5568;
}

/* Services Grid Split */
.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-split:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card-split:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #d4e4dc;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 45px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a4a;
    margin-bottom: 25px;
}

.btn-select-service {
    padding: 14px 30px;
    background-color: #2d5a4a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #3d6a5a;
    transform: translateY(-2px);
}

.cta-inline {
    text-align: center;
    margin-top: 60px;
}

.cta-inline p {
    font-size: 20px;
    color: #2c3e50;
}

/* Booking Section */
.booking-section {
    background-color: #ffffff;
}

/* Form Styles */
.travel-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a4a;
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 50px;
    background-color: #2d5a4a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #3d6a5a;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-split {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: #b0b0b0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    gap: 40px;
}

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

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #f8f9fa;
}

.page-hero-split .hero-left {
    padding: 60px;
}

.page-hero-split .hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-hero-split .hero-left p {
    font-size: 19px;
    color: #4a5568;
}

/* Story Section */
.story-section {
    background-color: #ffffff;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f8f9fa;
}

/* Team Section */
.team-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-member .role {
    display: block;
    font-size: 15px;
    color: #2d5a4a;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    gap: 40px;
}

.approach-step {
    flex: 1;
}

.step-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2d5a4a;
    margin-bottom: 15px;
}

.approach-step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #bdc3c7;
}

/* Values Detailed */
.values-detailed {
    background-color: #ffffff;
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-list li strong {
    color: #2d5a4a;
    font-weight: 600;
}

/* CTA Section About */
.cta-section-about {
    padding: 100px 60px;
    background-color: #d4e4dc;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

/* Services Detailed */
.services-detailed {
    background-color: #ffffff;
}

.service-detail-item {
    margin-bottom: 0;
}

.service-detail-item .split-container {
    border-bottom: 1px solid #e0e0e0;
}

.service-price {
    font-size: 30px;
    font-weight: 700;
    color: #2d5a4a;
    margin-bottom: 25px;
}

.service-detail-item ul {
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.service-detail-item ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d5a4a;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

/* Contact Info Section */
.contact-info-section {
    background-color: #ffffff;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d5a4a;
    margin-bottom: 15px;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.small-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

/* Location Section */
.location-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 100px 60px;
    background-color: #2d5a4a;
}

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

.contact-cta-section .cta-content-centered p {
    color: #d4e4dc;
}

.contact-cta-section .cta-primary {
    background-color: #ffffff;
    color: #2d5a4a;
}

.contact-cta-section .cta-primary:hover {
    background-color: #f0f0f0;
}

/* Contact Notes */
.contact-notes {
    padding: 100px 60px;
    background-color: #ffffff;
}

.notes-content {
    max-width: 1200px;
    margin: 0 auto;
}

.notes-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.notes-grid {
    display: flex;
    gap: 40px;
}

.note-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.note-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d5a4a;
    margin-bottom: 15px;
}

.note-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Section */
.thanks-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 30px;
}

.thanks-detail {
    margin-bottom: 50px;
}

.service-selected {
    font-size: 17px;
    color: #2d5a4a;
    font-weight: 600;
    padding: 15px;
    background-color: #d4e4dc;
    border-radius: 6px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    text-align: left;
}

.step-item {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-item .step-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2d5a4a;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* While You Wait */
.while-you-wait {
    padding: 100px 60px;
    background-color: #ffffff;
}

.wait-content {
    max-width: 1200px;
    margin: 0 auto;
}

.wait-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.wait-content .split-container {
    gap: 60px;
}

.wait-content .split-content {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Legal Page */
.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2d5a4a;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2d5a4a;
    border-bottom: 1px solid #2d5a4a;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #3d6a5a;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2d5a4a;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
    padding: 15px;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-image {
        min-height: 400px;
    }

    .testimonials-split {
        flex-direction: column;
    }

    .approach-steps {
        flex-direction: column;
    }

    .service-card-split,
    .service-card-split:nth-child(even) {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }

    .notes-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .split-content,
    .hero-left {
        padding: 40px 30px;
    }

    .services-preview {
        padding: 60px 30px;
    }

    .footer-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
    }

    .faq-grid {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}