:root {
    --primary: #1a5f7a;
    --primary-dark: #134152;
    --secondary: #f9a826;
    --accent: #57c5b6;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8fafb;
    --bg-cream: #fef9f3;
    --bg-blue: #e8f4f8;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(26, 95, 122, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 95, 122, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

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

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

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

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

header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: var(--bg-cream);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    border: 1px solid rgba(249, 168, 38, 0.3);
}

nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav a {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

nav a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

nav a.active {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.7) 0%, rgba(19, 65, 82, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
    max-width: 540px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: #e89a1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

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

section {
    padding: 100px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-cream {
    background: var(--bg-cream);
}

.section-blue {
    background: var(--bg-blue);
}

.section-dark {
    background: var(--primary-dark);
    color: var(--white);
}

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

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.8);
}

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

.service-card {
    flex: 1 1 340px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 220px;
    background-color: var(--bg-blue);
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-content {
    padding: 28px;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

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

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1 1 400px;
}

.about-image {
    flex: 1 1 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-blue);
    min-height: 400px;
}

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

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonials-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 320px;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    margin: 40px auto;
    max-width: 1000px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.section-dark .stat-number {
    color: var(--secondary);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 8px;
}

.section-dark .stat-label {
    color: rgba(255,255,255,0.8);
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e6ed;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--primary-dark);
}

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

.contact-info {
    flex: 1 1 340px;
}

.contact-form-wrap {
    flex: 1 1 500px;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.85);
    padding: 70px 0 30px;
}

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

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--secondary);
}

.disclaimer {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 40px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

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

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

.thanks-content h1 {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-light);
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

.cookie-btn-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-btn-reject:hover {
    background: #dce3e8;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
}

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

.destination-card {
    flex: 1 1 280px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    background-color: var(--bg-blue);
}

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

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.destination-overlay h3 {
    color: var(--white);
    font-size: 1.4rem;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    counter-reset: step;
}

.process-step {
    flex: 1 1 250px;
    text-align: center;
    position: relative;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.inline-cta {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.inline-cta:hover {
    border-color: var(--primary);
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 16px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        width: 100%;
        text-align: center;
    }

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

    .about-image {
        order: -1;
        min-height: 300px;
    }

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

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

    .stats-row {
        gap: 40px;
    }

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

@media (max-width: 600px) {
    .hero {
        min-height: 70vh;
    }

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

    section {
        padding: 60px 0;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
