:root {
    --primary: #1a4d6e;
    --secondary: #e8a54b;
    --accent: #2d8a6e;
    --dark: #1c1c1c;
    --light: #f9f7f4;
    --muted: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d4942f;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #143d56;
}

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

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

.nav-logo span {
    color: var(--secondary);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Split Screen Sections */
.split-section {
    display: flex;
    min-height: 100vh;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(26,77,110,0.3), transparent);
}

/* Hero Section */
.hero {
    padding-top: 80px;
}

.hero .split-content {
    background: var(--light);
}

.hero-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--primary);
}

.hero p {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Features Strip */
.features-strip {
    background: var(--primary);
    padding: 48px 0;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* About Preview */
.about-preview .split-content {
    background: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.about-preview h2 {
    margin-bottom: 20px;
    color: var(--dark);
}

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

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 8px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    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-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-card-content {
    padding: 28px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-from {
    font-size: 0.85rem;
    color: var(--muted);
}

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

.price-unit {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Destinations */
.destinations-section {
    padding: 100px 0;
    background: var(--white);
}

.destinations-flex {
    display: flex;
    gap: 24px;
}

.destination-large {
    flex: 2;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 500px;
}

.destination-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.destination-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.destination-overlay p {
    opacity: 0.9;
}

.destinations-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.destination-small {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.destination-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-small .destination-overlay {
    padding: 24px;
}

.destination-small h3 {
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

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

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

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}

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

.author-info p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--secondary);
    text-align: center;
}

.cta-section h2 {
    color: var(--dark);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(0,0,0,0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form Section */
.form-section {
    padding: 100px 0;
    background: var(--light);
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 20px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

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

.contact-text p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 32px;
}

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

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

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

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

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

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

.cookie-btns .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

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

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages */
.content-section {
    padding: 80px 0;
}

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

.content-wrapper h2 {
    margin: 40px 0 20px;
    color: var(--primary);
}

.content-wrapper h3 {
    margin: 32px 0 16px;
    color: var(--dark);
}

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

.content-wrapper ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--muted);
}

.content-wrapper li {
    margin-bottom: 8px;
}

/* Services Page */
.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    gap: 48px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail h3 {
    margin-bottom: 16px;
    color: var(--dark);
}

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--muted);
}

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

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
}

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

.contact-card {
    background: var(--light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-card h3 {
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-card p {
    color: var(--muted);
    margin-bottom: 8px;
}

.map-placeholder {
    flex: 1;
    background: var(--light);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--light), var(--white));
}

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thanks-content h1 {
    color: var(--primary);
    margin-bottom: 16px;
}

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

.selected-service {
    background: var(--primary);
    color: var(--white);
    padding: 20px 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    display: inline-block;
}

.selected-service span {
    font-weight: 700;
}

/* About Page */
.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.about-split-content {
    flex: 1;
}

.about-split-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    background: var(--light);
    border-radius: 12px;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.value-card h3 {
    margin-bottom: 12px;
}

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 40px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-image {
        min-height: 400px;
    }

    .split-content {
        padding: 60px 32px;
    }

    .features-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-item {
        flex: 1;
        min-width: 200px;
    }

    .destinations-flex {
        flex-direction: column;
    }

    .destination-large {
        min-height: 350px;
    }

    .destinations-stack {
        flex-direction: row;
    }

    .destination-small {
        min-height: 250px;
    }

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

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 100%;
        margin-bottom: 32px;
    }

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

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

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

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

    .value-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-btns {
        flex-direction: column;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .destinations-stack {
        flex-direction: column;
    }

    .destination-small {
        min-height: 200px;
    }

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

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

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

    .cookie-btns {
        width: 100%;
        justify-content: center;
    }
}
