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

:root {
    --primary: #1a4d7a;
    --primary-dark: #0f3554;
    --accent: #d4a574;
    --text: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #dee2e6;
    --success: #28a745;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta .btn-nav {
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta .btn-nav:hover {
    background: var(--primary-dark);
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 92vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 165, 116, 0.6);
}

.section-curiosity {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.section-heading {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
    color: var(--primary-dark);
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: var(--spacing-md);
}

.insight-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: var(--spacing-md);
    border-left: 4px solid var(--accent);
    margin-top: var(--spacing-lg);
    border-radius: 4px;
}

.insight-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.section-story-visual {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.emphasis-text {
    font-weight: 600;
    color: var(--primary);
    margin-top: var(--spacing-md);
}

.btn-inline {
    display: inline-block;
    margin-top: var(--spacing-md);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 4px;
    transition: color 0.3s;
}

.btn-inline:hover {
    color: var(--primary-dark);
}

.section-problem {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.center-heading {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
}

.problem-grid {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.problem-card {
    flex: 1;
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.section-solution {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1a4d7a 0%, #0f3554 100%);
    color: white;
}

.reveal-heading {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.large-text {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    line-height: 1.8;
}

.benefit-list {
    margin-top: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 70px;
}

.benefit-content h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.benefit-content p {
    opacity: 0.9;
    line-height: 1.7;
}

.section-visual-break {
    padding: 0;
}

.full-width-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md);
}

.image-overlay-text h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.section-testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    color: var(--text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.testimonial-route {
    font-size: 0.9rem;
    color: var(--text-light);
}

.section-services-reveal {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    display: flex;
    gap: var(--spacing-md);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.service-card.premium {
    border: 2px solid var(--accent);
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    flex: 0 0 400px;
}

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

.service-content {
    flex: 1;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.service-description {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
    margin-top: auto;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-unit {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-service {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

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

.section-urgency {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.urgency-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text);
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--spacing-xs);
}

.urgency-highlight {
    font-weight: 700;
    color: #e65100;
}

.section-booking {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.booking-form {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-row {
    display: flex;
    gap: var(--spacing-md);
}

.form-row .form-group {
    flex: 1;
}

.form-checkbox {
    margin-bottom: var(--spacing-md);
    display: flex;
    gap: var(--spacing-xs);
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-checkbox a {
    color: var(--primary);
}

.btn-submit {
    background: var(--primary);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.section-trust {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-dark);
}

.trust-item p {
    color: var(--text-light);
}

.site-footer {
    background: var(--primary-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background: var(--accent);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-sticky:hover {
    background: #c89660;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 122, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.cookie-content p {
    color: white;
    margin: 0;
}

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

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
}

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

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

.btn-accept:hover {
    background: #c89660;
}

.btn-reject {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .problem-grid,
    .testimonial-grid,
    .trust-grid,
    .footer-grid {
        flex-direction: column;
    }

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

    .service-image {
        flex: 0 0 250px;
    }

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

    .sticky-cta-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

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