/* ============================================
   Days Inn & Suites Gatlinburg - Main Stylesheet
   Modern, Responsive, Accessible Design
   ============================================ */

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
    /* Color Palette - Days Inn Brand Colors */
    --color-primary: #003B73;           /* Days Inn Blue */
    --color-primary-dark: #002855;      /* Darker blue for hover states */
    --color-primary-light: #1E5AA8;     /* Lighter blue */
    --color-secondary: #5B7FA3;         /* Soft blue accent */
    --color-secondary-dark: #456B8A;    /* Darker secondary */
    --color-accent: #FFD100;            /* Days Inn Sunshine Yellow */
    --color-accent-dark: #E5BC00;       /* Darker gold for hover */
    --color-background: #F8F9FA;        /* Clean White */
    --color-background-alt: #EEF2F6;    /* Light blue-gray */
    --color-text: #1A1A2E;              /* Deep navy text */
    --color-text-light: #4A5568;        /* Lighter text */
    --color-white: #FFFFFF;
    --color-error: #DC2626;
    --color-success: #059669;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes - Mobile First (rem based) */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */

    /* Spacing Scale */
    --space-1: 0.25rem;      /* 4px */
    --space-2: 0.5rem;       /* 8px */
    --space-3: 0.75rem;      /* 12px */
    --space-4: 1rem;         /* 16px */
    --space-5: 1.25rem;      /* 20px */
    --space-6: 1.5rem;       /* 24px */
    --space-8: 2rem;         /* 32px */
    --space-10: 2.5rem;      /* 40px */
    --space-12: 3rem;        /* 48px */
    --space-16: 4rem;        /* 64px */
    --space-20: 5rem;        /* 80px */
    --space-24: 6rem;        /* 96px */

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;
    --header-height-mobile: 70px;

    /* Borders & Shadows */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    border-style: none;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ============================================
   Skip Link (Accessibility)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    z-index: var(--z-tooltip);
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-4);
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

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

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

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

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

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

@media (min-width: 768px) {
    h1 {
        font-size: var(--text-5xl);
    }

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

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

@media (min-width: 1024px) {
    h1 {
        font-size: var(--text-6xl);
    }
}

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: var(--text-lg);
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .lead {
        font-size: var(--text-xl);
    }
}

strong, b {
    font-weight: 600;
}

/* ============================================
   Links
   ============================================ */
.link {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.link:hover,
.link:focus {
    color: var(--color-primary-dark);
}

/* ============================================
   Focus Styles (Accessibility)
   ============================================ */
:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================
   Layout - Container
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* ============================================
   Layout - Section
   ============================================ */
.section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .section {
        padding-top: var(--space-16);
        padding-bottom: var(--space-16);
    }
}

@media (min-width: 1024px) {
    .section {
        padding-top: var(--space-20);
        padding-bottom: var(--space-20);
    }
}

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

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

.section--primary h2,
.section--primary h3 {
    color: var(--color-white);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
    .section__header {
        margin-bottom: var(--space-12);
    }
}

.section__subtitle {
    color: var(--color-secondary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.section--primary .section__subtitle {
    color: var(--color-accent);
}

.section__title {
    margin-bottom: var(--space-4);
}

.section__description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-light);
}

.section--primary .section__description {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section with parallax background */
.section--cta {
    position: relative;
    background-image: url('/images/attractions/smoky_mountain_sunset.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--color-white);
}

.section--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 59, 115, 0.75), rgba(0, 59, 115, 0.85));
    z-index: 1;
}

.section--cta .container {
    position: relative;
    z-index: 2;
}

.section--cta h2,
.section--cta h3 {
    color: var(--color-white);
}

.section--cta .section__subtitle {
    color: var(--color-accent);
}

.section--cta .section__description,
.section--cta .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Disable parallax on mobile for performance */
@media (max-width: 1023px) {
    .section--cta {
        background-attachment: scroll;
    }
}

/* ============================================
   Layout - Grid
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-6);
}

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

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

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

@media (min-width: 640px) {
    .grid--2,
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (min-width: 1024px) {
    .grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid {
        gap: var(--space-8);
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

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

.btn--primary:hover,
.btn--primary:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

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

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

.btn--accent {
    background-color: var(--color-accent);
    color: var(--color-text);
    border-color: var(--color-accent);
}

.btn--accent:hover,
.btn--accent:focus {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

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

.btn--white:hover,
.btn--white:focus {
    background-color: var(--color-background);
    border-color: var(--color-background);
}

.btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn--sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

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

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.btn-group--center {
    justify-content: center;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    height: var(--header-height-mobile);
}

@media (min-width: 1024px) {
    .header {
        height: var(--header-height);
    }
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .header__logo {
        font-size: var(--text-xl);
    }
}

.header__logo-icon {
    width: 80px;
    height: auto;
}

@media (min-width: 768px) {
    .header__logo-icon {
        width: 100px;
        height: auto;
    }
}

@media (min-width: 1024px) {
    .header__logo-icon {
        width: 120px;
        height: auto;
    }
}

.header__logo-text {
    display: none;
    flex-direction: column;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .header__logo-text {
        display: flex;
    }
}

.header__logo-name {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

@media (min-width: 768px) {
    .header__logo-name {
        font-size: var(--text-base);
    }
}

@media (min-width: 1024px) {
    .header__logo-name {
        font-size: var(--text-lg);
    }
}

.header__logo-location {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-text-light);
    font-family: var(--font-body);
}

@media (min-width: 768px) {
    .header__logo-location {
        font-size: var(--text-sm);
    }
}

/* Desktop Navigation */
.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
        align-items: center;
        gap: var(--space-8);
    }
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav__link {
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link:focus,
.nav__link--active {
    color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link:focus::after,
.nav__link--active::after {
    width: 100%;
}

.nav__cta {
    margin-left: var(--space-4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: var(--space-2);
    cursor: pointer;
    background: none;
    border: none;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle__bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    z-index: var(--z-fixed);
    padding: var(--space-6);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
}

.mobile-nav[aria-hidden="false"] {
    transform: translateX(0);
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-nav__link {
    display: block;
    padding: var(--space-4);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus,
.mobile-nav__link--active {
    background-color: var(--color-background-alt);
    color: var(--color-primary);
}

.mobile-nav__cta {
    margin-top: var(--space-6);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .hero {
        min-height: 80vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 59, 115, 0.85) 0%,
        rgba(0, 59, 115, 0.7) 50%,
        rgba(30, 90, 168, 0.6) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 700px;
}

.hero__subtitle {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: var(--text-base);
    }
}

.hero__title {
    color: var(--color-white);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

@media (min-width: 768px) {
    .hero__description {
        font-size: var(--text-xl);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 140px); /* viewport minus header (70px) and sticky bar (70px) */
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-slider {
        height: calc(100vh - 155px); /* viewport minus header (80px) and sticky bar (75px) */
    }
}

.hero-slider__track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.hero-slider__slide {
    position: relative;
    min-width: 100%;
    height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .hero-slider__slide {
        height: calc(100vh - 155px);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator__icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

@media (min-width: 1024px) {
    .hero-slider__slide {
        min-height: 85vh;
    }
}

.hero-slider__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 59, 115, 0.85) 0%,
        rgba(0, 59, 115, 0.7) 50%,
        rgba(30, 90, 168, 0.6) 100%
    );
    z-index: 1;
}

.hero-slider__content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 700px;
    padding: var(--space-6);
}

@media (min-width: 768px) {
    .hero-slider__content {
        padding: var(--space-8);
    }
}

.hero-slider__subtitle {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .hero-slider__subtitle {
        font-size: var(--text-base);
    }
}

.hero-slider__title {
    color: var(--color-white);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-slider__description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

@media (min-width: 768px) {
    .hero-slider__description {
        font-size: var(--text-xl);
    }
}

/* Slider Controls */
.hero-slider__controls {
    position: absolute;
    bottom: calc(var(--space-20) + 20px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.hero-slider__dots {
    display: flex;
    gap: var(--space-2);
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.hero-slider__dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.hero-slider__dot--active {
    background-color: var(--color-accent);
    border-color: var(--color-white);
    transform: scale(1.2);
}

.hero-slider__arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.hero-slider__arrow svg {
    width: 20px;
    height: 20px;
}

/* Page Hero (smaller for interior pages) */
.hero--page {
    min-height: 300px;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .hero--page {
        min-height: 350px;
        padding-top: var(--space-16);
        padding-bottom: var(--space-16);
    }
}

.hero--page .hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   Cards
   ============================================ */
.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--color-background-alt);
}

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

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

.card__body {
    padding: var(--space-6);
}

.card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.card__subtitle {
    font-size: var(--text-sm);
    color: var(--color-secondary);
    margin-bottom: var(--space-3);
}

.card__description {
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

.card__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.card__feature {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    background-color: var(--color-background);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
}

.card__feature svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* Room Card Variant */
.card--room .card__body {
    padding: var(--space-5);
}

.card--room .card__title {
    font-size: var(--text-lg);
}

/* Amenity Card Variant */
.card--amenity {
    text-align: center;
    padding: var(--space-8) var(--space-6);
}

.card--amenity:hover {
    transform: translateY(-2px);
}

.card--amenity .card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    color: var(--color-primary);
}

.card--amenity .card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.card--amenity .card__description {
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* ============================================
   Value Props
   ============================================ */
.value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .value-props {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-6);
    }
}

.value-prop {
    text-align: center;
    padding: var(--space-4);
}

.value-prop__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-3);
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .value-prop__icon {
        width: 56px;
        height: 56px;
    }
}

.value-prop__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

@media (min-width: 768px) {
    .value-prop__title {
        font-size: var(--text-lg);
    }
}

.value-prop__text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* ============================================
   Tabs
   ============================================ */
.tabs {
    margin-bottom: var(--space-8);
}

.tabs__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    border-bottom: 2px solid var(--color-background-alt);
    padding-bottom: var(--space-4);
}

.tabs__button {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text-light);
    background-color: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tabs__button:hover,
.tabs__button:focus {
    color: var(--color-primary);
    background-color: var(--color-background-alt);
}

.tabs__button[aria-selected="true"] {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.tabs__panel {
    display: none;
    animation: fadeIn var(--transition-base);
}

.tabs__panel[aria-hidden="false"] {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

@media (min-width: 640px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }
}

@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery__item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color var(--transition-fast);
}

.gallery__item:hover::after,
.gallery__item:focus::after {
    background-color: rgba(0, 0, 0, 0.2);
}

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

.gallery__item:hover img,
.gallery__item:focus img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox__close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    color: var(--color-text);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox__close:hover,
.lightbox__close:focus {
    background-color: var(--color-accent);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox__nav:hover,
.lightbox__nav:focus {
    background-color: var(--color-white);
}

.lightbox__nav--prev {
    left: var(--space-4);
}

.lightbox__nav--next {
    right: var(--space-4);
}

.lightbox__caption {
    text-align: center;
    color: var(--color-white);
    margin-top: var(--space-4);
    font-size: var(--text-sm);
}

/* ============================================
   Forms
   ============================================ */
.form {
    max-width: 600px;
}

.form--centered {
    margin-left: auto;
    margin-right: auto;
}

.form__group {
    margin-bottom: var(--space-5);
}

.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.form__label--required::after {
    content: ' *';
    color: var(--color-error);
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    border: 2px solid var(--color-background-alt);
    border-radius: var(--radius-md);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 59, 115, 0.1);
    outline: none;
}

.form__input--error,
.form__textarea--error {
    border-color: var(--color-error);
}

.form__input--error:focus,
.form__textarea--error:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__hint {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-top: var(--space-1);
}

.form__error {
    font-size: var(--text-sm);
    color: var(--color-error);
    margin-top: var(--space-1);
}

.form__row {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .form__row--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Checkbox & Radio */
.form__check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.form__check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.form__check-label {
    font-weight: 400;
}

/* ============================================
   Alerts / Messages
   ============================================ */
.alert {
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
}

.alert--success {
    background-color: rgba(0, 59, 115, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary-dark);
}

.alert--error {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

.alert--info {
    background-color: rgba(30, 90, 168, 0.1);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary-dark);
}

/* ============================================
   Map
   ============================================ */
.map {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--color-background-alt);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Contact Info
   ============================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info__item {
    display: flex;
    gap: var(--space-4);
}

.contact-info__icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: var(--space-1);
}

.contact-info__content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.contact-info__content p,
.contact-info__content a {
    color: var(--color-text-light);
}

.contact-info__content a:hover {
    color: var(--color-primary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding-top: var(--space-12);
    padding-bottom: var(--space-6);
}

.footer__grid {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

@media (min-width: 640px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-10);
    }
}

.footer__brand {
    max-width: 350px;
}

.footer__logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    transition: opacity var(--transition-base);
}

.footer__logo-link:hover {
    opacity: 0.9;
}

.footer__logo-img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .footer__logo-img {
        width: 120px;
    }
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer__logo-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-white);
}

@media (min-width: 768px) {
    .footer__logo-name {
        font-size: var(--text-xl);
    }
}

.footer__logo-location {
    font-size: var(--text-sm);
    color: var(--color-accent);
    font-weight: 500;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.footer__social-link:hover,
.footer__social-link:focus {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__heading {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer__link:hover,
.footer__link:focus {
    color: var(--color-accent);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-accent);
}

.footer__contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer__copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
    display: flex;
    gap: var(--space-4);
    font-size: var(--text-sm);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

/* ============================================
   Mobile Booking Button (Sticky)
   ============================================ */
/* Sticky bottom booking bar - all screen sizes */
.sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-3) var(--space-4);
    background-color: var(--color-white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: var(--space-3);
}

.sticky-booking .btn {
    flex: 1;
    max-width: 200px;
}

@media (min-width: 768px) {
    .sticky-booking {
        padding: var(--space-3) var(--space-8);
    }

    .sticky-booking .btn {
        flex: none;
        min-width: 180px;
    }
}

@media (min-width: 1024px) {
    .sticky-booking {
        padding: var(--space-4) var(--space-12);
    }

    .sticky-booking .btn {
        min-width: 200px;
    }
}

/* Add bottom padding to body to account for fixed bar */
body {
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 75px;
    }
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
}

.breadcrumb__link {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
    color: var(--color-white);
}

.breadcrumb__separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__current {
    color: var(--color-accent);
}

/* ============================================
   Attraction Cards
   ============================================ */
.attraction-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .attraction-card--horizontal {
        flex-direction: row;
    }

    .attraction-card--horizontal .attraction-card__image {
        width: 300px;
        flex-shrink: 0;
    }
}

.attraction-card__image {
    aspect-ratio: 16 / 10;
    background-color: var(--color-background-alt);
}

.attraction-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-card__body {
    padding: var(--space-5);
    flex: 1;
}

.attraction-card__category {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    margin-bottom: var(--space-2);
}

.attraction-card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.attraction-card__description {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.attraction-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.attraction-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.attraction-card__meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* ============================================
   List Styles
   ============================================ */
.list {
    list-style: none;
}

.list--check li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-3);
}

.list--check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   Two Column Layout
   ============================================ */
.two-col {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: start;
    }
}

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse > * {
    direction: ltr;
}

/* ============================================
   Utilities
   ============================================ */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

/* ============================================
   Decorative Mountain/Forest Elements
   ============================================ */
.mountain-divider {
    width: 100%;
    height: 80px;
    background-image: url('/images/decorative/mountain-divider.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    line-height: 0;
}

@media (min-width: 768px) {
    .mountain-divider {
        height: 120px;
    }
}

@media (min-width: 1024px) {
    .mountain-divider {
        height: 160px;
    }
}

.mountain-divider--flip {
    transform: scaleY(-1);
}

.mountain-footer {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.mountain-footer img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section with mountain divider at top - blends from white to mountain blue */
.section--mountain {
    background-color: #34597F;
    color: #fff;
    position: relative;
    padding-top: 0;
}

.section--mountain .section__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section--mountain .section__description {
    color: rgba(255, 255, 255, 0.9);
}

.section--mountain .section-divider-top {
    width: 100%;
    line-height: 0;
    margin-bottom: var(--space-12);
}

.section--mountain .section-divider-top img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bottom divider for transitioning from dark to light */
.section--mountain .section-divider-bottom {
    width: 100%;
    line-height: 0;
    margin-top: var(--space-12);
}

.section--mountain .section-divider-bottom img {
    width: 100%;
    height: auto;
    display: block;
    transform: scaleY(-1);
}

/* Bear icon accent */
.bear-accent {
    width: 60px;
    height: 48px;
    color: var(--color-primary);
    opacity: 0.15;
}

.bear-accent--sm {
    width: 40px;
    height: 32px;
}

.bear-accent--lg {
    width: 80px;
    height: 64px;
}

/* Mountain background pattern for sections */
.section--mountain-bg {
    position: relative;
    overflow: hidden;
}

.section--mountain-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: url('/images/decorative/mountain-divider.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

/* Tree pattern accent */
.tree-pattern {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-image: url('/images/decorative/section-divider.svg');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.1;
    pointer-events: none;
}

/* ============================================
   Featured Card Badge
   ============================================ */
.card--featured {
    position: relative;
    border: 2px solid var(--color-accent);
}

.card__badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background-color: var(--color-accent);
    color: var(--color-text);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

/* ============================================
   Animations & Transitions
   ============================================ */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grid items */
.grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* Hero content animation */
.hero__content,
.hero-slider__content {
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle,
.hero-slider__subtitle {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title,
.hero-slider__title {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__description,
.hero-slider__description {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero .btn-group,
.hero-slider .btn-group {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Value props animation */
.value-prop {
    animation: fadeInUp 0.5s ease-out both;
}

.value-prop:nth-child(1) { animation-delay: 0.1s; }
.value-prop:nth-child(2) { animation-delay: 0.2s; }
.value-prop:nth-child(3) { animation-delay: 0.3s; }
.value-prop:nth-child(4) { animation-delay: 0.4s; }

/* Section header animation */
.section__header {
    animation: fadeInUp 0.6s ease-out;
}

/* Button hover animations */
.btn {
    transition: all var(--transition-base), transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Card hover enhancements */
.card {
    transition: all var(--transition-base), box-shadow 0.3s ease, transform 0.3s ease;
}

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

.card--featured:hover {
    box-shadow: 0 25px 50px rgba(0, 59, 115, 0.2);
}

/* Image zoom on card hover */
.card__image img {
    transition: transform 0.5s ease;
}

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

/* Link underline animation */
.footer__link,
.nav__link {
    position: relative;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-base);
}

.footer__link:hover::after {
    width: 100%;
}

/* Social icon hover */
.footer__social-link {
    transition: all var(--transition-fast), transform 0.2s ease;
}

.footer__social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Gallery item hover */
.gallery__item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Tab button animation */
.tabs__button {
    transition: all var(--transition-fast), transform 0.2s ease;
}

.tabs__button:hover {
    transform: translateY(-2px);
}

/* Form input focus animation */
.form__input,
.form__textarea,
.form__select {
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform 0.2s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    transform: translateY(-1px);
}

/* Attraction card animation */
.attraction-card {
    transition: all var(--transition-base), transform 0.3s ease;
}

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

/* Mobile menu animation */
.mobile-nav {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav__link {
    transition: all var(--transition-fast), padding-left 0.2s ease;
}

.mobile-nav__link:hover {
    padding-left: var(--space-6);
}

/* Breadcrumb hover */
.breadcrumb__link {
    transition: color var(--transition-fast), transform 0.2s ease;
    display: inline-block;
}

.breadcrumb__link:hover {
    transform: translateX(-2px);
}

/* List check mark animation */
.list--check li {
    animation: slideInLeft 0.4s ease-out both;
}

.list--check li:nth-child(1) { animation-delay: 0.1s; }
.list--check li:nth-child(2) { animation-delay: 0.15s; }
.list--check li:nth-child(3) { animation-delay: 0.2s; }
.list--check li:nth-child(4) { animation-delay: 0.25s; }
.list--check li:nth-child(5) { animation-delay: 0.3s; }
.list--check li:nth-child(6) { animation-delay: 0.35s; }

/* Icon hover effects */
.value-prop__icon,
.card--amenity .card__icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.value-prop:hover .value-prop__icon,
.card--amenity:hover .card__icon {
    transform: scale(1.15);
    color: var(--color-accent);
}

/* Contact info item hover */
.contact-info__item {
    transition: transform 0.2s ease;
}

.contact-info__item:hover {
    transform: translateX(5px);
}

/* Skip link animation */
.skip-link {
    transition: top var(--transition-fast), opacity var(--transition-fast);
}

/* Loading state for buttons */
.btn--loading {
    position: relative;
    pointer-events: none;
    color: transparent;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Page transition */
main {
    animation: fadeIn 0.4s ease-out;
}

/* ============================================
   Footer Newsletter
   ============================================ */
.footer__newsletter {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    margin-top: var(--space-8);
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.newsletter-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-gold, #d4a853);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.newsletter-input-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group input[type="email"]:focus {
    outline: none;
    border-color: var(--color-gold, #d4a853);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group button {
    padding: 0.875rem 1.5rem;
    background: var(--color-gold, #d4a853);
    color: #1a1a1a;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.newsletter-input-group button:hover {
    background: #c4983f;
}

.newsletter-input-group button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: var(--space-3);
    padding: var(--space-3);
    border-radius: 4px;
    font-size: 0.875rem;
}

.newsletter-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
    }
}


/* ============================================
   Sticky Bottom Bar
   ============================================ */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.sticky-logo-text {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-primary, #1a365d);
    white-space: nowrap;
}

.sticky-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sticky-btn svg {
    flex-shrink: 0;
}

.sticky-btn-offer {
    background: linear-gradient(135deg, #d4a853 0%, #f0c674 100%);
    color: #1a1a1a;
}

.sticky-btn-offer:hover {
    background: linear-gradient(135deg, #c4983f 0%, #e0b654 100%);
}

.sticky-btn-offer.hidden {
    display: none;
}

.sticky-btn-primary {
    background: var(--color-accent, #d97706);
    color: #fff;
}

.sticky-btn-primary:hover {
    background: #c26800;
    color: #fff;
}

.sticky-btn-secondary {
    background: var(--color-primary, #1a365d);
    color: #fff;
}

.sticky-btn-secondary:hover {
    background: #142a4a;
    color: #fff;
}

.sticky-btn-call {
    background: #059669;
    color: #fff;
}

.sticky-btn-call:hover {
    background: #047857;
    color: #fff;
}

@media (max-width: 768px) {
    .sticky-logo-text {
        display: none;
    }

    .sticky-bar-content {
        justify-content: center;
    }

    .sticky-btn span {
        display: none;
    }

    .sticky-btn {
        padding: 0.625rem;
    }

    .sticky-btn svg {
        width: 20px;
        height: 20px;
    }

    .sticky-btn-offer span {
        display: inline;
    }

    .sticky-btn-offer {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        gap: 0.375rem;
    }
}


/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--color-primary, #1a365d);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark, #142a4a);
    transform: translateY(-2px);
}


/* ============================================
   Newsletter Popup
   ============================================ */
.newsletter-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.newsletter-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup {
    background: #fff;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.newsletter-popup-overlay.active .newsletter-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 1;
}

.popup-close:hover {
    background: #e5e7eb;
}

.popup-close svg {
    color: #6b7280;
}

.popup-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a853 0%, #f0c674 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.popup-icon svg {
    color: #1a1a1a;
}

.popup-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text, #1a1a1a);
    margin-bottom: 0.75rem;
}

.popup-content > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.popup-form {
    position: relative;
}

.popup-form input[type="email"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.popup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-gold, #d4a853);
}

.popup-form button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #d4a853 0%, #f0c674 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-form button:hover {
    background: linear-gradient(135deg, #c4983f 0%, #e0b654 100%);
    transform: translateY(-1px);
}

.popup-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.popup-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.popup-message.success {
    background: #d1fae5;
    color: #059669;
}

.popup-message.error {
    background: #fee2e2;
    color: #dc2626;
}

.popup-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1rem;
    margin-bottom: 0;
}


/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .footer,
    .mobile-booking,
    .btn,
    .sticky-bottom-bar,
    .back-to-top,
    .newsletter-popup-overlay {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }

    .hero {
        min-height: auto;
        padding: var(--space-8) 0;
    }

    .hero::before {
        display: none;
    }

    .hero__content {
        color: var(--color-text);
    }
}
