/* ============================================================
   WILHELMINA HOTEL & APARTMENTS
   Brand Colours: Deep Navy Blue + Orange (from logo)
   Mobile-First, Responsive, Premium Design
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    /* Logo colours */
    --blue-900: #0f1b4d;
    /* darkest navy */
    --blue-800: #1a2d6b;
    /* primary brand blue */
    --blue-700: #213580;
    /* medium navy */
    --blue-600: #2b44a3;
    /* lighter navy */
    --blue-100: #e8edf8;
    /* very light blue tint */

    --orange: #e8721a;
    /* brand orange */
    --orange-dark: #c4600f;
    --orange-light: #f49040;

    --sky: #87ceeb;
    /* light sky blue (logo bg) */
    --sky-light: #c8e8f5;

    /* Neutral */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-900: #111827;

    /* Semantic */
    --color-primary: var(--blue-800);
    --color-primary-dark: var(--blue-900);
    --color-primary-light: var(--blue-600);
    --color-secondary: var(--orange);
    --color-secondary-dark: var(--orange-dark);
    --color-accent: var(--sky);
    --color-success: #16a34a;
    --color-error: #dc2626;
    --color-warning: var(--orange);

    --color-dark: var(--gray-900);
    --color-dark-medium: var(--gray-600);
    --color-dark-light: var(--gray-400);
    --color-light: var(--gray-50);
    --color-light-medium: var(--gray-100);
    --color-light-dark: var(--gray-200);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

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

    /* Borders */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;

    /* Shadows */
    --sh-sm: 0 2px 8px rgba(26, 45, 107, .10);
    --sh-md: 0 4px 20px rgba(26, 45, 107, .14);
    --sh-lg: 0 8px 36px rgba(26, 45, 107, .18);
    --sh-xl: 0 16px 56px rgba(26, 45, 107, .22);
    --sh-orange: 0 4px 20px rgba(232, 114, 26, .30);

    /* Transitions */
    --t-fast: .18s ease;
    --t-normal: .28s ease;
    --t-slow: .5s ease;

    /* Container */
    --max-w: 1200px;
    --pad-x: 1.5rem;

    /* Header height */
    --header-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-dark);
    background: var(--color-light);
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.section {
    padding: var(--sp-3xl) 0;
}

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

.section--blue {
    background: var(--blue-800);
    color: var(--white);
}

.section--navy {
    background: var(--blue-900);
    color: var(--white);
}

.section--gradient {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
    color: var(--white);
}

.section--sky {
    background: linear-gradient(180deg, var(--sky-light) 0%, var(--white) 100%);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--sp-md);
    line-height: 1.2;
}

.section__subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: var(--sp-xl);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }
}

.animate-fade-up {
    animation: fadeUp .7s ease forwards;
}

.animate-fade-up-delay {
    animation: fadeUp .7s ease .2s forwards;
    opacity: 0;
}

.animate-fade-up-delay-2 {
    animation: fadeUp .7s ease .4s forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn .7s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn .7s ease .2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn .7s ease .4s forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn .5s ease forwards;
}

/* scroll-triggered */
.scroll-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: none;
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--sh-sm);
    z-index: 1000;
    transition: box-shadow var(--t-normal);
}

.header.scrolled {
    box-shadow: var(--sh-md);
}

/* ── Nav layout: [logo] [links] [actions] ────────────────── */
.nav {
    display: flex;
    align-items: center;
    padding: .65rem 0;
    min-height: var(--header-h);
    gap: 1rem;
}

/* Logo */
.nav__logo a {
    display: flex;
    align-items: center;
    gap: .6rem;
    line-height: 1;
}

.nav__logo-img {
    height: 44px;
    width: auto;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.1;
}

.logo-sub {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-800);
}

/* Nav links – centred zone */
.nav__links {
    display: none;
    /* shown by desktop media query */
    list-style: none;
    align-items: center;
    gap: .1rem;
    margin: 0;
    padding: 0;
    /* sits right next to the logo – no centering */
}

/* Actions – right zone */
.nav__actions {
    display: none;
    /* shown by desktop media query */
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    margin-left: auto;
    /* push all the way to the right */
}

/* Keep old class for potential mobile use */
.nav__menu {
    display: none;
}

.nav__link {
    font-weight: 500;
    font-size: .9rem;
    color: var(--gray-900);
    padding: .4rem .75rem;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
    white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
    color: var(--blue-800);
    background: var(--blue-100);
}

.nav__link--cta {
    background: var(--blue-800);
    color: var(--white) !important;
    border-radius: var(--r-md);
    padding: .45rem 1.1rem;
    font-weight: 600;
    font-size: .875rem;
    white-space: nowrap;
}

.nav__link--cta:hover {
    background: var(--orange);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--sh-orange);
}

.nav__link--wa {
    background: #25d366;
    color: var(--white) !important;
    border-radius: var(--r-md);
    padding: .5rem 1.1rem;
    font-weight: 600;
}

.nav__link--wa:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

/* Accommodations dropdown */
.nav__item--dropdown {
    position: relative;
}

.nav__item--dropdown .nav__link {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.nav__item--dropdown .nav__link .fa-chevron-down {
    font-size: .75rem;
    transition: transform var(--t-fast);
    pointer-events: none;
    /* don't block hover hitbox */
}

.nav__item--dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* Keep the nav link highlighted while dropdown is open */
.nav__item--dropdown:hover>.nav__link {
    color: var(--blue-800);
    background: var(--blue-100);
}

.nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    /* flush against the nav link – no gap */
    left: 0;
    background: var(--white);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    box-shadow: var(--sh-lg);
    min-width: 280px;
    padding: .5rem .5rem .6rem;
    border-top: 3px solid var(--blue-800);
    z-index: 200;
}

/* Invisible bridge above the dropdown so the cursor can travel from
   the nav link to the menu without the gap closing it */
.nav__dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    /* covers any remaining gap */
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
    display: block;
}

.nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem 1rem;
    border-radius: var(--r-md);
    transition: background var(--t-fast);
    cursor: pointer;
}

.nav__dropdown-item:hover {
    background: var(--blue-100);
}

.nav__dropdown-item-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-100);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-800);
    font-size: 1rem;
    flex-shrink: 0;
}

.nav__dropdown-item:hover .nav__dropdown-item-icon {
    background: var(--blue-800);
    color: var(--white);
}

.nav__dropdown-item-text strong {
    display: block;
    font-size: .9rem;
    color: var(--gray-900);
}

.nav__dropdown-item-text span {
    font-size: .78rem;
    color: var(--gray-400);
}

/* Language selector */
.nav__lang {
    display: flex;
    align-items: center;
    gap: .35rem;
    position: relative;
}

.nav__lang-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .7rem;
    border-radius: var(--r-md);
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-size: .88rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    transition: all var(--t-fast);
}

.nav__lang-btn:hover {
    border-color: var(--blue-800);
    color: var(--blue-800);
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.nav__lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    /* flush – no gap */
    right: 0;
    background: var(--white);
    border-radius: 0 0 var(--r-md) var(--r-md);
    box-shadow: var(--sh-md);
    min-width: 130px;
    padding: .4rem;
    border: 1px solid var(--gray-200);
    border-top: 2px solid var(--blue-800);
    z-index: 300;
}

/* Invisible bridge so cursor can travel from button to menu */
.nav__lang-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav__lang:hover .nav__lang-dropdown,
.nav__lang:focus-within .nav__lang-dropdown {
    display: block;
}

/* Highlight button while dropdown is open */
.nav__lang:hover .nav__lang-btn {
    border-color: var(--blue-800);
    color: var(--blue-800);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    border-radius: var(--r-sm);
    font-size: .88rem;
    color: var(--gray-900);
    transition: background var(--t-fast);
}

.lang-option:hover {
    background: var(--blue-100);
    color: var(--blue-800);
}

.lang-option.active {
    background: var(--blue-800);
    color: var(--white);
}

/* Mobile hamburger */
.nav__toggle {
    font-size: 1.4rem;
    color: var(--blue-800);
    cursor: pointer;
    display: none;
}

/* Mobile nav */
@media (max-width:900px) {
    .nav__toggle {
        display: flex;
    }

    /* Slide-in panel: the links ul */
    .nav__links {
        position: fixed;
        top: var(--header-h);
        left: -100%;
        width: 100%;
        background: var(--white);
        padding: var(--sp-lg);
        box-shadow: var(--sh-lg);
        transition: left var(--t-normal);
        overflow-y: auto;
        max-height: calc(100vh - var(--header-h));
        flex-direction: column;
        gap: .5rem;
        align-items: stretch;
    }

    .nav__links.active {
        left: 0;
        display: flex;
    }

    /* Actions visible at bottom of mobile menu */
    .nav__actions {
        position: fixed;
        bottom: 0;
        left: -100%;
        width: 100%;
        background: var(--white);
        padding: var(--sp-md) var(--sp-lg);
        border-top: 1px solid var(--gray-200);
        transition: left var(--t-normal);
        justify-content: center;
        gap: 1rem;
    }

    .nav__links.active~.nav__actions,
    .nav__actions.active {
        left: 0;
        display: flex;
    }

    .nav__link {
        width: 100%;
        text-align: center;
        padding: .75rem 1rem;
    }

    .nav__dropdown {
        position: static;
        box-shadow: none;
        border: 1px solid var(--gray-200);
        margin: .25rem 0;
    }

    .nav__item--dropdown .nav__dropdown {
        display: none;
    }

    .nav__item--dropdown.open .nav__dropdown {
        display: block;
    }

    .nav__lang {
        justify-content: center;
    }

    .nav__lang-dropdown {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (min-width:901px) {

    .nav__links,
    .nav__actions {
        display: flex;
    }
}


/* ── Main content ───────────────────────────────────────────── */
.main {
    margin-top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.6rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--r-md);
    transition: all var(--t-fast);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

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

.btn--primary:hover {
    background: var(--blue-900);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

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

.btn--orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--sh-orange);
}

.btn--secondary {
    background: transparent;
    color: var(--blue-800);
    border-color: var(--blue-800);
}

.btn--secondary:hover {
    background: var(--blue-800);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--blue-800);
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .6);
}

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

.btn--wa {
    background: #25d366;
    color: var(--white);
}

.btn--wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.btn--sm {
    padding: .45rem .9rem;
    font-size: .88rem;
}

.btn--block {
    width: 100%;
}

/* ── Page Header (inner pages) ──────────────────────────────── */
.page-header {
    position: relative;
    padding: var(--sp-3xl) 0 var(--sp-xl);
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: .12;
    z-index: 0;
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 27, 77, .85) 0%, rgba(33, 53, 128, .8) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: .75rem;
}

.page-header__subtitle {
    font-size: 1.15rem;
    opacity: .9;
}

/* ── Hero (homepage) ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--sky) 100%);
    color: var(--white);
    padding: var(--sp-2xl) 0 var(--sp-3xl);
    overflow: hidden;
}

/* Hero background slider (managed via admin panel) */
.hero__bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

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

/* Fallback: only shows when no DB images are loaded (hero__bg-slider absent) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    opacity: .18;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 20, 65, .55) 0%, rgba(26, 45, 107, .45) 60%, rgba(135, 206, 235, .1) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* Logo in hero */
.hero__logo {
    width: 120px;
    height: auto;
    margin: 0 auto var(--sp-md);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--sp-md);
}

.hero__title--highlight {
    color: var(--orange);
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    margin-bottom: var(--sp-xl);
    opacity: .92;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: flex;
    gap: var(--sp-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Booking bar */
.booking-bar {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 var(--pad-x) var(--sp-xl);
    margin-top: var(--sp-xl);
}

.booking-bar__content {
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    padding: var(--sp-lg) var(--sp-lg);
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
    align-items: flex-end;
    max-width: var(--max-w);
    margin: 0 auto;
}

.booking-bar__item {
    display: flex;
    gap: .7rem;
    align-items: center;
    flex: 1;
    min-width: 180px;
    color: var(--color-dark);
}

.booking-bar__item i {
    font-size: 1.3rem;
    color: var(--blue-800);
    flex-shrink: 0;
}

.booking-bar__item label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: .2rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.booking-bar__input {
    width: 100%;
    padding: .5rem .75rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: .95rem;
    transition: border-color var(--t-fast);
}

.booking-bar__input:focus {
    outline: none;
    border-color: var(--blue-800);
}

/* ── Social Proof ───────────────────────────────────────────── */
.ratings-strip {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--sp-lg) 0;
}

.ratings-strip__inner {
    display: flex;
    justify-content: center;
    gap: var(--sp-2xl);
    flex-wrap: wrap;
    align-items: center;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.rating-badge__logo {
    height: 32px;
    width: auto;
}

.rating-badge__score {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue-800);
    line-height: 1;
}

.rating-badge__stars {
    color: var(--orange);
    font-size: .9rem;
}

.rating-badge__label {
    font-size: .78rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ── USP Cards ──────────────────────────────────────────────── */
.usp__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-lg);
}

.usp__card {
    background: var(--white);
    padding: var(--sp-xl);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    text-align: center;
    transition: all var(--t-normal);
    border-bottom: 3px solid transparent;
}

.usp__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-bottom-color: var(--blue-800);
}

.usp__icon {
    font-size: 2.5rem;
    color: var(--blue-800);
    margin-bottom: var(--sp-md);
}

.usp__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--sp-xs);
    color: var(--gray-900);
}

.usp__description {
    color: var(--gray-600);
    line-height: 1.65;
}

/* ── Intro photo grid ───────────────────────────────────────── */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-sm);
}

.intro-grid__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--r-md);
    transition: transform var(--t-slow);
}

.intro-grid__img:hover {
    transform: scale(1.03);
}

@media (max-width:640px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Accommodation location cards ───────────────────────────── */
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-xl);
}

.location-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
    transition: all var(--t-normal);
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-xl);
}

.location-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.location-card__badge {
    position: absolute;
    top: var(--sp-sm);
    right: var(--sp-sm);
    background: var(--blue-800);
    color: var(--white);
    padding: .3rem .8rem;
    border-radius: var(--r-md);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.location-card__content {
    padding: var(--sp-lg);
}

.location-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: var(--gray-900);
}

.location-card__desc {
    color: var(--gray-600);
    margin-bottom: var(--sp-md);
}

.location-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .8rem;
    margin-bottom: var(--sp-lg);
}

.location-card__features li {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .88rem;
    color: var(--gray-600);
}

.location-card__features i {
    color: var(--blue-800);
    font-size: .9rem;
    width: 16px;
    text-align: center;
}

.location-card__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

/* ── Reviews ────────────────────────────────────────────────── */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-lg);
    margin-bottom: var(--sp-xl);
}

.review-card {
    background: var(--white);
    padding: var(--sp-xl);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    transition: all var(--t-normal);
    border-left: 4px solid var(--blue-800);
}

.review-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-md);
}

.review-card__stars {
    color: var(--orange);
}

.review-card__source {
    font-size: .82rem;
    color: var(--gray-400);
    font-weight: 600;
}

.review-card__text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--sp-sm);
    color: var(--gray-600);
}

.review-card__author {
    font-weight: 700;
    color: var(--gray-900);
    font-size: .95rem;
}

.reviews__cta {
    text-align: center;
}

/* Platform rating badges */
.platform-ratings {
    display: flex;
    justify-content: center;
    gap: var(--sp-xl);
    flex-wrap: wrap;
    padding: var(--sp-lg) 0;
}

.platform-badge {
    text-align: center;
    padding: 1.25rem var(--sp-lg);
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    min-width: 140px;
    transition: all var(--t-normal);
}

.platform-badge:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.platform-badge__name {
    font-size: .78rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem;
}

.platform-badge__score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-800);
    line-height: 1;
}

.platform-badge__stars {
    color: var(--orange);
    font-size: .85rem;
    margin-top: .25rem;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-filter {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--sp-xl);
}

.filter-btn {
    padding: .5rem 1.25rem;
    border-radius: var(--r-md);
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-weight: 600;
    font-size: .9rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--t-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--blue-800);
    color: var(--white);
    border-color: var(--blue-800);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--sp-sm);
}

.gallery__card {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--gray-200);
}

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

.gallery__card:hover img {
    transform: scale(1.06);
}

.gallery__card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 77, 0);
    transition: background var(--t-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__card:hover .gallery__card__overlay {
    background: rgba(15, 27, 77, .45);
}

.gallery__card__overlay i {
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: opacity var(--t-normal);
}

.gallery__card:hover .gallery__card__overlay i {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 17, 50, .95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.open {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--r-md);
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--t-fast);
}

.lightbox__close:hover {
    color: var(--orange);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--t-fast);
    padding: 1rem;
}

.lightbox__nav--prev {
    left: .5rem;
}

.lightbox__nav--next {
    right: .5rem;
}

.lightbox__nav:hover {
    color: var(--orange);
}

/* ── Facilities ─────────────────────────────────────────────── */
.facilities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-lg);
}

.facility-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: var(--sp-md);
    border-radius: var(--r-md);
    background: var(--white);
    box-shadow: var(--sh-sm);
    transition: all var(--t-normal);
}

.facility-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.facility-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.facility-card__icon--free {
    background: var(--blue-100);
    color: var(--blue-800);
}

.facility-card__icon--paid {
    background: #fef3c7;
    color: #d97706;
}

.facility-card__title {
    font-weight: 600;
    color: var(--gray-900);
}

.facility-card__badge {
    display: inline-block;
    margin-top: .2rem;
    padding: .1rem .5rem;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.facility-card__badge--free {
    background: var(--blue-100);
    color: var(--blue-800);
}

.facility-card__badge--paid {
    background: #fef3c7;
    color: #d97706;
}

/* ── Contact page ───────────────────────────────────────────── */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
}

@media (max-width:768px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
}



.contact__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--sp-md);
}

.contact__text {
    color: var(--gray-600);
    margin-bottom: var(--sp-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}

.contact__detail {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.contact__detail i {
    color: var(--blue-800);
    font-size: 1.1rem;
    margin-top: .2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact__detail span,
.contact__detail a {
    color: var(--gray-600);
    line-height: 1.65;
}

.contact__detail a:hover {
    color: var(--blue-800);
}

/* Form */
.contact__form {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-xl);
    box-shadow: var(--sh-md);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--gray-900);
    font-size: .92rem;
}

.form-control {
    width: 100%;
    padding: .65rem .9rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--t-fast);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-800);
    box-shadow: 0 0 0 3px rgba(26, 45, 107, .1);
}

.form-control.error {
    border-color: var(--color-error);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
}

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

.form-error {
    color: var(--color-error);
    font-size: .82rem;
    margin-top: .3rem;
}

/* ── CTA sections ───────────────────────────────────────────── */
.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--sp-md);
}

.cta__text {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: var(--sp-xl);
}

.cta__buttons {
    display: flex;
    gap: var(--sp-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-simple {
    text-align: center;
}

.cta-simple__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: .75rem;
}

.cta-simple__text {
    font-size: 1.05rem;
    opacity: .9;
    margin-bottom: var(--sp-lg);
}

.cta-box {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-lg);
    box-shadow: var(--sh-md);
    border-left: 5px solid var(--blue-800);
}

.cta-box__icon {
    font-size: 2.5rem;
    color: var(--blue-800);
    margin-bottom: var(--sp-sm);
}

.cta-box__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.cta-box__text {
    color: var(--gray-600);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--blue-900);
    color: var(--white);
    padding-top: var(--sp-3xl);
}

.footer__content {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: var(--sp-xl);
    padding-bottom: var(--sp-xl);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width:900px) {
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footer__content {
        grid-template-columns: 1fr;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: var(--sp-md);
}

.footer__logo-img {
    height: 44px;
    filter: brightness(10);
}

.footer__logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.footer__logo-sub {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.footer__description {
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: var(--sp-lg);
}

.footer__title {
    font-weight: 700;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: var(--sp-md);
}

.footer__links li {
    margin-bottom: .5rem;
}

.footer__links a {
    color: rgba(255, 255, 255, .75);
    font-size: .92rem;
    transition: color var(--t-fast);
}

.footer__links a:hover {
    color: var(--orange);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer__contact li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
}

.footer__contact i {
    color: var(--orange);
    font-size: 1rem;
    margin-top: .2rem;
    width: 18px;
    flex-shrink: 0;
}

.footer__contact a {
    color: rgba(255, 255, 255, .75);
}

.footer__contact a:hover {
    color: var(--orange);
}

.footer__social {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    transition: all var(--t-fast);
}

.footer__social-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__social-link--booking {
    background: rgba(0, 113, 194, .3);
}

.footer__social-link--tripadvisor {
    background: rgba(52, 169, 89, .3);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    padding: var(--sp-lg) 0;
    color: rgba(255, 255, 255, .45);
    font-size: .85rem;
}

.footer__legal {
    display: flex;
    gap: var(--sp-md);
}

.footer__legal a {
    color: rgba(255, 255, 255, .45);
}

.footer__legal a:hover {
    color: var(--orange);
}

/* ── Flash messages ──────────────────────────────────────────── */
.flash-container {
    position: fixed;
    top: calc(var(--header-h) + 1rem);
    right: 1rem;
    z-index: 2000;
    max-width: 400px;
}

.flash {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1.25rem;
    border-radius: var(--r-md);
    margin-bottom: .5rem;
    box-shadow: var(--sh-lg);
    animation: fadeIn .3s ease;
}

.flash--success {
    background: #dcfce7;
    color: #15803d;
    border-left: 4px solid #16a34a;
}

.flash--error {
    background: #fee2e2;
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.flash__close {
    margin-left: auto;
    cursor: pointer;
    opacity: .65;
}

.flash__close:hover {
    opacity: 1;
}

/* ── Accommodation detail page ───────────────────────────────── */
.accom-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    align-items: center;
    padding: var(--sp-3xl) 0;
}

@media (max-width:768px) {
    .accom-hero {
        grid-template-columns: 1fr;
    }
}

.accom-hero__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.accom-hero__photos img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--r-md);
}

.accom-hero__photos img:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.accom-specs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: var(--sp-lg);
}

.spec-tag {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .9rem;
    border-radius: var(--r-md);
    background: var(--blue-100);
    color: var(--blue-800);
    font-size: .88rem;
    font-weight: 600;
}

.spec-tag i {
    font-size: .9rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem var(--sp-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .92rem;
    color: var(--gray-600);
}

.feature-item i {
    color: var(--blue-800);
    width: 18px;
    text-align: center;
    font-size: .95rem;
    flex-shrink: 0;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq__item {
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    overflow: hidden;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem var(--sp-lg);
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-900);
    transition: background var(--t-fast);
}

.faq__question:hover {
    background: var(--blue-100);
}

.faq__question i {
    transition: transform var(--t-fast);
    color: var(--blue-800);
}

.faq__item.open .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    display: none;
    padding: 0 var(--sp-lg) 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq__item.open .faq__answer {
    display: block;
}

/* ── Maps embed ─────────────────────────────────────────────── */
.map-embed {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.map-embed iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

/* ── Responsive utilities ───────────────────────────────────── */
@media (max-width:480px) {
    .btn--large {
        padding: .85rem 1.5rem;
        font-size: 1rem;
    }

    .booking-bar__content {
        padding: var(--sp-md);
    }

    .booking-bar__item {
        min-width: 100%;
    }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {

    .header,
    .footer,
    .booking-bar,
    .hero__cta {
        display: none;
    }

    .main {
        margin-top: 0;
    }
}