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

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

@media (max-width: 767px) {
    html {
        font-size: 16px;
    }
}

/* CSS Custom Properties - Brand Colors */
:root {
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;

    /* Brand Colors */
    --soft-blue: #7BA7BC;
    --petrol: #4A6B7C;
    --warm-white: #FEFCF8;
    --neutral-warm-white: #FEFCF8;
    --greige: #D4CFC4;
    --light-taupe: #E8E3D8;
    --terracotta: #C17B5A;
    --clay: #B8704F;
    --olive: #8B9A7A;
    --sage: #9CAE8F;
    --soft-gold: #D4AF37;

    /* Text Colors */
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --text-light: #85929E;
    --text-white: #FFFFFF;

    /* Location Accent Colors */
    --sylt-primary: var(--soft-blue);
    --sylt-secondary: var(--warm-white);
    --sylt-accent: var(--greige);

    --ostsee-primary: var(--soft-blue);
    --ostsee-secondary: var(--sage);
    --ostsee-accent: var(--warm-white);

    --toskana-primary: var(--terracotta);
    --toskana-secondary: var(--olive);
    --toskana-accent: var(--soft-gold);

    --duesseldorf-primary: var(--greige);
    --duesseldorf-secondary: var(--soft-blue);
    --duesseldorf-accent: var(--soft-gold);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: radial-gradient(circle at 10% 10%, rgba(123, 167, 188, 0.12), transparent 35%),
        radial-gradient(circle at 95% 15%, rgba(212, 175, 55, 0.12), transparent 28%),
        var(--neutral-warm-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--text-primary);
    color: var(--text-white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 1000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 48px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--soft-blue);
    color: var(--text-white);
    border-color: var(--soft-blue);
}

.btn-primary:hover {
    background-color: var(--petrol);
    border-color: var(--petrol);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(254, 252, 248, 0.94), rgba(248, 244, 236, 0.94));
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(74, 107, 124, 0.18);
}

.header.scrolled {
    box-shadow: 0 12px 30px rgba(31, 57, 70, 0.12);
}

.nav {
    padding: var(--spacing-sm) 0;
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--soft-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--soft-blue), var(--soft-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: none;
}

.nav-item-auth-mobile {
    display: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
    @media (max-width: 767px) {
        .nav {
            padding: 0.65rem 0 0.45rem;
        }

        .nav-container {
            flex-wrap: wrap;
            row-gap: 0.55rem;
            align-items: center;
        }

        .nav-logo .logo {
            height: 40px;
        }

        .header__lang {
            margin: 0 0 0 auto;
            gap: 0.25rem;
            font-size: 0.78rem;
        }

        .lang {
            padding: 0.2rem 0.45rem;
        }

        .nav-toggle {
            display: none;
        }

        .nav-menu {
            display: flex;
            position: static;
            order: 4;
            left: auto;
            top: auto;
            width: 100%;
            padding: 0.1rem 0 0.2rem;
            margin: 0;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-start;
            gap: 0.45rem;
            overflow-x: auto;
            overscroll-behavior-x: contain;
            background: transparent;
            box-shadow: none;
            border-bottom: 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .nav-menu::-webkit-scrollbar {
            display: none;
        }

        .nav-item {
            margin: 0;
            flex: 0 0 auto;
        }

        .nav-item--rose {
            display: none;
        }

        .nav-link {
            display: block;
            padding: 0.45rem 0.8rem;
            font-size: 0.82rem;
            line-height: 1.2;
            white-space: nowrap;
            border: 1px solid rgba(74, 107, 124, 0.18);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.72);
        }

        .nav-link::after {
            display: none;
        }

        .hero-controls {
            gap: 0.6rem;
            bottom: 1rem;
        }

        .hero-prev,
        .hero-next {
            width: 34px;
            height: 34px;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            min-width: 10px;
            min-height: 10px;
            padding: 0;
        }
    }

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all var(--transition-base);
}

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

    .nav-cta {
        display: block;
    }

    .nav-toggle {
        display: none;
    }

    .header__lang {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
        margin-left: var(--spacing-sm);
        font-size: var(--font-size-sm);
        font-weight: 600;
        white-space: nowrap;
    }

    .lang {
        text-decoration: none;
        color: var(--text-secondary);
        transition: color var(--transition-fast);
        padding: 4px;
        border-radius: var(--radius-sm);
    }

    .lang:hover {
        color: var(--soft-blue);
    }

    .lang.active {
        color: var(--text-primary);
        background-color: var(--light-taupe);
    }

    .lang__sep {
        color: var(--greige);
        user-select: none;
    }
}

@media (max-width: 767px) {
    .nav {
        padding: 0.8rem 0;
    }

    .header__lang {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
        margin-right: var(--spacing-sm);
        font-size: var(--font-size-sm);
        font-weight: 600;
        order: 2;
    }

    .nav-toggle {
        order: 3;
        display: block;
        cursor: pointer;
    }

    .nav-logo {
        order: 1;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.98));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(74, 107, 124, 0.16);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-item-auth-mobile {
        display: block;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    padding-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 31, 41, 0.32), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    z-index: 2;
    width: 90%;
    max-width: 600px;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.hero-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.8;
}

.hero-controls {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.hero-dot.active {
    background: var(--text-white);
    transform: scale(1.2);
}

.hero-brand {
    position: absolute;
    top: calc(85px + var(--spacing-md));
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.brand-claim {
    font-size: var(--font-size-3xl);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
}

.brand-claim::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--soft-gold);
}

.brand-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 300;
    letter-spacing: 1.5px;
    opacity: 0.95;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--warm-white);
}

/* Location-specific hero styling */
.hero-slide[data-location="sylt"] .hero-content .btn {
    background-color: var(--sylt-primary);
    border-color: var(--sylt-primary);
}

.hero-slide[data-location="ostsee"] .hero-content .btn {
    background-color: var(--ostsee-primary);
    border-color: var(--ostsee-primary);
}

.hero-slide[data-location="toskana"] .hero-content .btn {
    background-color: var(--toskana-primary);
    border-color: var(--toskana-primary);
}

.hero-slide[data-location="duesseldorf"] .hero-content .btn {
    background-color: var(--duesseldorf-primary);
    border-color: var(--duesseldorf-primary);
}

/* Introduction Section */
.intro {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(254, 252, 248, 0.9);
}

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

.intro-title {
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.intro-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

/* Destinations Section — superseded by .cards-section in site.css */
/* .destinations { … } */

/* Botanical vine — superseded by site.css */
/* .botanical-vine { … } */

/* Hero corners — superseded by site.css .hero-corner / .hc-* rules */
/* .hero-corner { … } */

/* trust-badges — superseded by .trust-strip in site.css */
/* .trust-badges { … } */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* destinations-grid + destination-card — kept for reference, no conflict with .pcard */
.destination-card {
    background: var(--text-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(74, 107, 124, 0.14);
}

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

/* .destination-card entrance animation owned by majestic-motion.js (GSAP) */

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

.card-placeholder {
    width: 100%;
    height: 100%;
    background: #ccc;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

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

.card-content .btn {
    margin-top: auto;
    margin-bottom: 20px;
}

.card-title {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    font-size: 0.875rem;
    min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: flex-start;
    margin-top: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.feature {
    background-color: var(--light-taupe);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(0, 34, 71, 0.12);
}

/* Location-specific card styling */
.destination-card[data-location="sylt"] .card-title {
    color: var(--sylt-primary);
}

.destination-card[data-location="sylt"] .feature {
    background-color: var(--sylt-accent);
}

.destination-card[data-location="ostsee"] .card-title {
    color: var(--ostsee-primary);
}

.destination-card[data-location="ostsee"] .feature {
    background-color: var(--ostsee-secondary);
    color: var(--text-white);
}

.destination-card[data-location="toskana"] .card-title {
    color: var(--toskana-primary);
}

.destination-card[data-location="toskana"] .feature {
    background-color: var(--toskana-secondary);
    color: var(--text-white);
}

.destination-card[data-location="duesseldorf"] .card-title {
    color: var(--duesseldorf-secondary);
}

.destination-card[data-location="duesseldorf"] .feature {
    background-color: var(--duesseldorf-primary);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #36556a 0%, #4a6b7c 38%, #6f8775 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
}

.cta-text {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: var(--spacing-2xl);
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: var(--font-size-base);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--soft-gold);
    opacity: 0.9;
    margin-top: var(--spacing-xs);
    position: relative;
    padding-top: var(--spacing-sm);
    display: inline-block;
}

.footer-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--soft-gold);
}

@media (min-width: 768px) {
    .footer-tagline::before {
        left: 0;
        transform: none;
    }
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
}

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

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

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-list a:hover {
    color: var(--soft-blue);
}

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

/* About Page / Team Styles */
.about-content {
    padding: var(--spacing-3xl) 0;
}

.about-content .content-section {
    background: var(--text-white);
    border-radius: var(--radius-2xl);
    padding: clamp(1.25rem, 2.5vw, 2.25rem);
    box-shadow: var(--shadow-md);
}

.about-content .section-title {
    margin-bottom: var(--spacing-md);
}

.about-content .lead {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    font-weight: 600;
}

.about-content .section-text p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.about-content .cta-box {
    margin-top: 0;
}

/* Contact Page Styles */
.contact-content {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, #f6f9fb 0%, #eef3f7 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    background: var(--text-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    padding: clamp(1.25rem, 2.5vw, 2rem);
}

.section-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.65;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.contact-form .form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 0.8rem;
    padding: 0.75rem 0.9rem;
    font-family: inherit;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    background: #fbfcfd;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--soft-blue);
    box-shadow: 0 0 0 3px rgba(91, 148, 179, 0.18);
    background: #fff;
}

.checkbox-group {
    margin-top: 0.2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.checkbox-label input {
    margin-top: 0.12rem;
    accent-color: var(--soft-blue);
}

.checkbox-label a {
    color: var(--petrol);
    text-decoration: underline;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-method {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    background: #fafcfe;
}

.method-icon {
    color: var(--petrol);
    flex-shrink: 0;
}

.method-content h3 {
    margin: 0 0 0.2rem;
    font-size: var(--font-size-base);
}

.method-content p {
    margin: 0 0 0.25rem;
    color: var(--text-secondary);
}

.method-content small {
    color: var(--text-light);
}

.method-content a {
    color: var(--petrol);
    text-decoration: none;
}

.method-content a:hover {
    text-decoration: underline;
}

.faq-section,
.emergency-contact {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px dashed rgba(15, 23, 42, 0.18);
}

.faq-section h3,
.emergency-contact h3 {
    margin-bottom: var(--spacing-sm);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #f7fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
}

.faq-item h4 {
    margin: 0 0 0.3rem;
    font-size: var(--font-size-base);
    color: var(--text-primary);
}

.faq-item p,
.emergency-contact p,
.emergency-contact small {
    margin: 0;
    color: var(--text-secondary);
}

.emergency-number {
    margin-top: 0.4rem;
    margin-bottom: 0.3rem;
}

.emergency-number a {
    color: var(--petrol);
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-decoration: none;
}

.emergency-number a:hover {
    text-decoration: underline;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.team-member {
    background: var(--text-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: var(--spacing-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.member-role {
    font-size: var(--font-size-base);
    color: var(--soft-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--font-size-sm);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 992px) {
    .section-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .section-grid.reverse {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .section-grid.reverse .section-text {
        order: 2;
    }

    .section-grid.reverse .section-image {
        order: 1;
    }
}

.section-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.value-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--text-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.value-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-icon {
    color: var(--soft-blue);
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.value-title {
    margin-bottom: var(--spacing-sm);
}

.value-description {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Legal Pages Styles */
.page-hero {
    background: linear-gradient(135deg, var(--soft-blue), var(--petrol));
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
    margin-top: 60px;
}

.page-hero .hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.page-hero .hero-subtitle {
    font-size: var(--font-size-xl);
    opacity: 1;
    color: var(--text-white);
    font-weight: 300;
}

.legal-content {
    padding: var(--spacing-3xl) 0;
    background: var(--neutral-warm-white);
}

.legal-section {
    background: var(--text-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.legal-section h2 {
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--light-taupe);
}

.legal-section h3 {
    color: var(--text-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.legal-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.legal-info ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
}

.legal-info li {
    margin-bottom: var(--spacing-xs);
}

.legal-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.back-to-top {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Trust & Safety Page Specific Styles */
.trust-content {
    padding: var(--spacing-3xl) 0;
    background: var(--neutral-warm-white);
}

.content-section {
    margin-bottom: var(--spacing-3xl);
}

.content-section:last-child {
    margin-bottom: 0;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.trust-feature {
    background: var(--text-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.trust-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    color: var(--soft-blue);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-3xl);
}

.trust-feature h3 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.trust-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.safety-category {
    background: var(--text-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.category-title {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--light-taupe);
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-list li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.safety-list li::before {
    content: "✓";
    color: var(--soft-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.cert-item {
    background: var(--text-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.cert-item:hover {
    transform: translateY(-3px);
}

.cert-badge {
    color: var(--soft-blue);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-3xl);
}

.cert-item h3 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

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

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.insurance-item {
    background: var(--text-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.insurance-item h3 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

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

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.emergency-item {
    background: var(--text-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--terracotta);
}

.emergency-item h3 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.emergency-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.review-item {
    background: var(--text-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.review-stars {
    color: var(--soft-gold);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.review-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.review-item cite {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.cta-box {
    background: linear-gradient(135deg, var(--soft-blue), var(--petrol));
    color: var(--text-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
}

/* Responsive Design */
@media (max-width: 767px) {

    /* Base adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Header */
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.98));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(74, 107, 124, 0.16);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .trust-badges__row {
        gap: var(--spacing-sm);
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }

    /* Hero Slider */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content {
        padding: 2rem 1rem;
    }

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

    .slide-subtitle {
        font-size: 1rem;
    }

    /* Hero Brand */
    .hero-brand {
        top: var(--spacing-lg);
    }

    .brand-claim {
        font-size: var(--font-size-xl);
    }

    /* Introduction */
    .intro {
        padding: 3rem 0;
    }

    .intro-title {
        font-size: var(--font-size-2xl);
    }

    .intro-description {
        font-size: 1rem;
    }

    /* Destinations */
    .destinations {
        padding: 3rem 0;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .destination-card {
        margin: 0;
    }

    /* Property Pages */
    .property-hero {
        height: 60vh;
        min-height: 400px;
    }

    .property-hero .hero-content {
        padding: 2rem 1rem;
    }

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

    .property-content {
        padding: 3rem 0;
    }

    .property-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .property-sidebar {
        order: -1;
    }

    .booking-widget {
        position: static;
        margin-bottom: 2rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-item:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    /* Contact Form */
    .contact-content {
        padding: 3rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Section Titles */
    .section-title {
        font-size: var(--font-size-2xl);
    }

    /* Legal Pages */
    .page-hero {
        padding: 6rem 0 3rem;
    }

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

    .page-hero .hero-subtitle {
        font-size: 1rem;
    }

    .legal-content {
        padding: 3rem 0;
    }

    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    /* Trust & Safety */
    .trust-content {
        padding: 3rem 0;
    }

    .trust-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certifications {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .emergency-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    /* CTA Section */
    .cta-title {
        font-size: var(--font-size-2xl);
    }

    .cta-description {
        font-size: 1rem;
    }

    /* Utility Classes */
    .text-center-mobile {
        text-align: center;
    }

    .hide-mobile {
        display: none;
    }

    .show-mobile {
        display: block;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-layout {
        grid-template-columns: 2fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trust-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

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

    .slide-title {
        font-size: 4rem;
    }

    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications {
        grid-template-columns: repeat(3, 1fr);
    }

    .insurance-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-slider {
        animation: none;
    }

    .slide {
        transition: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-neutral-50: #1a1a1a;
        --color-neutral-100: #2d2d2d;
        --color-neutral-200: #404040;
        --color-neutral-300: #525252;
        --color-neutral-400: #737373;
        --color-neutral-500: #a3a3a3;
        --color-neutral-600: #d4d4d4;
        --color-neutral-700: #e5e5e5;
        --color-neutral-800: #f5f5f5;
        --color-neutral-900: #ffffff;
    }
}

#whatsapp-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

#whatsapp-contact:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#whatsapp-contact img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Base adjustments */
@media (max-width: 767px) {
    #whatsapp-contact {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    #whatsapp-contact img {
        width: 28px;
        height: 28px;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .nav-toggle,
    .hero-slider,
    .btn,
    .booking-widget,
    .cta {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
        color: black;
    }

    p,
    li {
        orphans: 3;
        widows: 3;
    }

    .legal-section {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.hero-prev:focus,
.hero-next:focus,
.hero-dot:focus {
    outline: 2px solid var(--soft-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --soft-blue: #0066CC;
        --petrol: #003366;
    }
}

/* Image Gallery from property.css */
.image-gallery {
    margin-top: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item.main {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-more {
    width: 100%;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item.main {
        grid-row: span 1;
    }
}

/* Form Elements & Layout */
.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--light-taupe);
    border-radius: var(--radius-md);
    background-color: var(--text-white);
    color: var(--text-primary);
    font-family: inherit;
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--soft-blue);
    box-shadow: 0 0 0 3px rgba(123, 167, 188, 0.2);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

/* Booking Progress Bar */
.progress-container {
    margin-bottom: var(--spacing-xl);
}

.progress-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.progress-bar-wrapper {
    height: 8px;
    background-color: var(--light-taupe);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--soft-blue);
    transition: width var(--transition-slow);
}

/* Confirmation Styles */
.confirmation-card {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--text-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: var(--spacing-xl) auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--sage);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 40px;
}

.confirmation-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.confirmation-message {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

/* Team Section Enhancements */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.team-member {
    background: var(--text-white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    border: 4px solid var(--warm-white);
    box-shadow: var(--shadow-sm);
}

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

.member-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.member-role {
    font-size: var(--font-size-base);
    color: var(--soft-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.member-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Language Switcher */
.header__lang {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin: 0 var(--spacing-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.lang {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.lang:hover {
    color: var(--soft-blue);
    background-color: var(--warm-white);
}

.lang.active {
    color: var(--soft-blue);
    background-color: rgba(37, 99, 235, 0.1);
}

.lang__sep {
    color: var(--light-taupe);
    font-weight: 400;
}

/* Booking Step 2 Styles */
.booking-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding-top: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-header .section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.booking-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.booking-date-badge {
    display: inline-block;
    background-color: var(--light-taupe);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: var(--spacing-sm);
    border: 1px solid var(--greige);
}

.booking-selection-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: var(--spacing-3xl);
}

@media (max-width: 768px) {
    .booking-selection-grid {
        grid-template-columns: 1fr !important;
    }
}

.booking-selection-item {
    height: 100%;
}

.booking-property-card {
    background: var(--text-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    border: 2px solid transparent;
}

.booking-property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.booking-card-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.booking-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transition: transform var(--transition-slow);
}

.booking-property-card:hover .booking-card-image img {
    transform: scale(1.05);
}

.booking-card-body {
    padding: var(--spacing-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.booking-card-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.booking-card-location {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.booking-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.booking-tag {
    background-color: var(--light-taupe);
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-card-pricing {
    margin-top: auto;
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--light-taupe);
}

.price-per-night {
    display: block;
    color: var(--soft-blue);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.price-total {
    display: block;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-top: 2px;
    font-weight: 500;
}

.booking-radio-hidden {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
    height: 0;
}

.booking-select-btn {
    width: 100%;
    pointer-events: none;
    /* Let the label click handle it */
}

.booking-radio-hidden:checked+.booking-property-card {
    border-color: var(--soft-blue);
    box-shadow: 0 0 0 4px rgba(123, 167, 188, 0.2);
}

.booking-radio-hidden:checked+.booking-property-card .booking-select-btn {
    background-color: var(--petrol);
    border-color: var(--petrol);
}

/* Progress Bar Fixes */
.booking-progress {
    margin-bottom: 2rem;
}

.booking-progress__text {
    font-size: 0.875rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.5rem;
}

.booking-progress__bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.booking-progress__fill {
    height: 100%;
    background: var(--soft-blue, #2d3a8c);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ── Layout fixes ────────────────────────────────────────────
   1. Sticky footer: body fills full viewport height as a flex
      column; main stretches to fill remaining space.
   2. Content under fixed navbar: main gets padding-top equal
      to the navbar height (~70px) so no content is hidden.
   ──────────────────────────────────────────────────────────── */
/* Removed legacy layout fixes in favor of Universal Luxury Stabilization in site.css */
/* Legacy home-nav transparency and layout logic relocated to site.css Unified Baseline */

/* ═══════════════════════════════════════════════════════════
   CHANGE 5 — Trust strip
   ═══════════════════════════════════════════════════════════ */
.trust-strip {
    background: linear-gradient(to right, var(--warm-white), var(--soft-blue));
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
}

.trust-ornament {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    color: var(--petrol, #4A6B7C);
    opacity: 0.5;
}

.trust-ornament--bottom {
    transform: scaleY(-1);
}

.ornament-svg {
    width: 100%;
    height: auto;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    max-width: 700px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-icon {
    color: var(--soft-gold, #D4AF37);
    font-size: 0.75rem;
}

.trust-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--petrol, #4A6B7C);
    font-variant: all-small-caps;
    letter-spacing: 2px;
}

.trust-divider {
    color: var(--soft-gold, #D4AF37);
    font-size: 0.5rem;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
   CHANGE 6 — Property cards: clickable + aligned
   ═══════════════════════════════════════════════════════════ */
.destination-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.destination-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   CHANGE 8 — Footer logo larger (original updated at line ~954)
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   CHANGE 9 — Mobile optimizations
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        height: 100svh;
    }

    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
    }

    .hero-dot {
        min-width: 44px;
        min-height: 44px;
    }

    .hero-label-name {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .hero-label-location {
        font-size: 0.75rem;
    }

    /* Transparent navbar: hamburger white */
/* Desktop/Mobile header state profile consolidated in site.css */

    /* Trust strip */
    .trust-items {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-divider {
        display: none;
    }

    /* Property cards: single column, taller image */
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 220px !important;
    }

    /* Footer: stack + center */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-column {
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .trust-items {
        flex-direction: column;
        gap: 1rem;
    }
    .trust-divider { display: none; }
}

@media (max-width: 767px) {
    .nav {
        padding: 0.65rem 0 0.45rem;
    }

    .nav-container {
        flex-wrap: wrap;
        row-gap: 0.55rem;
        align-items: center;
    }

    .nav-logo .logo {
        height: 40px;
    }

    .header__lang {
        margin: 0 0 0 auto;
        gap: 0.25rem;
        font-size: 0.78rem;
    }

    .lang {
        padding: 0.2rem 0.45rem;
    }

    .nav-toggle {
        order: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid rgba(74, 107, 124, 0.18);
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 8px 18px rgba(31, 57, 70, 0.08);
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 84px;
        left: 16px;
        right: 16px;
        width: auto;
        margin: 0;
        padding: 0.9rem;
        flex-direction: column;
        gap: 0.55rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.98));
        border: 1px solid rgba(74, 107, 124, 0.14);
        border-radius: 18px;
        box-shadow: 0 20px 34px rgba(31, 57, 70, 0.16);
        max-height: calc(100svh - 104px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    }

    .nav-menu.active {
        left: 16px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-item--rose {
        display: none;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
        font-size: 0.95rem;
        line-height: var(--line-height-base);
        white-space: normal;
        border: none;
        border-radius: 0;
        background: transparent;
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        height: clamp(430px, 68svh, 560px);
        min-height: 430px;
    }

    .hero-brand {
        top: 96px;
    }

    .hero-frame-outer {
        inset: 12px;
    }

    .hero-frame-inner {
        inset: 18px;
    }

    .hero-controls {
        gap: 0.6rem;
        bottom: 0.65rem;
    }

    .hero-prev,
    .hero-next {
        width: 34px;
        height: 34px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        padding: 0;
    }
}