:root {
    --color-primary: #1a5276;
    --color-secondary: #2c3e50;
    --color-accent: #148f77;
    --color-dark: #1c2833;
    --color-light: #fdfefe;
    --color-muted: #7f8c8d;
    --color-bg-alt: #f4f6f6;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.narrow-content {
    max-width: 800px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
}

.btn-secondary {
    background-color: var(--color-muted);
    color: var(--color-light);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-light {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.btn-light:hover {
    background-color: var(--color-bg-alt);
}

.btn-full {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.site-header {
    background-color: var(--color-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-muted);
    background-color: var(--color-bg-alt);
    padding: 6px 12px;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-weight: 500;
    color: var(--color-dark);
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.split-section {
    min-height: 500px;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 320px;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.split-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.split-text p {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 28px;
}

.split-image {
    flex: 1;
    min-width: 320px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.dark-bg {
    background-color: var(--color-secondary);
}

.dark-bg h2,
.dark-bg p {
    color: var(--color-light);
}

.intro-section {
    padding: 80px 24px;
    text-align: center;
    background-color: var(--color-bg-alt);
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.intro-section p {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    padding: 80px 24px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    border-radius: 8px;
}

.feature-icon {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.feature-card p {
    color: var(--color-muted);
}

.destinations-showcase {
    padding: 80px 24px;
    background-color: var(--color-dark);
}

.section-title-left {
    font-size: 2rem;
    color: var(--color-light);
    margin-bottom: 40px;
}

.destination-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.destination-card.large {
    flex: 2;
    min-width: 400px;
    min-height: 400px;
}

.destination-stack {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.destination-card.small {
    flex: 1;
    min-height: 180px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-light);
}

.destination-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.destination-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.testimonial-section {
    padding: 100px 24px;
    background-color: var(--color-bg-alt);
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-secondary);
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    margin-top: 24px;
    font-size: 1rem;
    font-style: normal;
    color: var(--color-muted);
}

.booking-form-section {
    padding: 80px 24px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-bg-alt);
    padding: 48px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.form-wrapper > p {
    color: var(--color-muted);
    margin-bottom: 32px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--color-light);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cta-section {
    background-color: var(--color-secondary);
}

.site-footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 60px 24px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 160px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--color-light);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.email-display {
    user-select: none;
    pointer-events: none;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-header {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 24px;
}

.page-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 16px;
    color: var(--color-muted);
}

.page-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--color-muted);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 24px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--color-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.service-content p {
    color: var(--color-muted);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about-story {
    padding: 80px 24px;
}

.about-story .split-content {
    align-items: center;
}

.team-section {
    padding: 80px 24px;
    background-color: var(--color-bg-alt);
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: var(--color-dark);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

.team-member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: var(--color-muted);
}

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

.team-member h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.team-member p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding: 60px 24px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.contact-text p {
    color: var(--color-muted);
}

.contact-map {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    color: var(--color-light);
    font-size: 1.1rem;
}

.thanks-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-accent);
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-light);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-list li {
        border-bottom: 1px solid var(--color-bg-alt);
    }

    .nav-list a {
        display: block;
        padding: 12px 0;
    }

    .split-text h1 {
        font-size: 2rem;
    }

    .split-text {
        padding: 40px 24px;
    }

    .ad-disclosure {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .destination-card.large {
        min-width: 100%;
    }

    .form-wrapper {
        padding: 32px 24px;
    }
}
