/* ==========================================================================
   Base CSS & Variables
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #00A8E8;
    /* Vibrant Blue */
    --primary-hover: #0094CC;
    --secondary-color: #0B2545;
    /* Deep Navy */
    --text-main: #2D3142;
    --text-muted: #6C757D;
    --bg-main: #FFFFFF;
    --bg-light: #F8F9FA;
    --border-color: #E9ECEF;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Sizes */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;

    /* Transitions & Shadows */
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Theme Playground
   Add `theme-cultural` or `theme-lab` to <body> to preview the alternates below.
   Remove the class to snap back to the default colors above.
   ========================================================================== */
body.theme-cultural {
    --primary-color: #E4A321;
    --primary-hover: #C98E1C;
    --secondary-color: #1F3A5F;
    --text-main: #333333;
    --text-muted: #6B6257;
    --bg-main: #FAF8F2;
    --bg-light: #F3EFE6;
    --border-color: #E8DFC9;
}

body.theme-lab {
    --primary-color: #E4A321;
    --primary-hover: #C98E1C;
    --secondary-color: #1F3A5F;
    --secondary-hover: #162A45;
    --text-main: #333333;
    --text-muted: #6B6257;
    --bg-main: #FAF8F2;
    --bg-light: #F3EFE6;
    --border-color: #E8DFC9;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

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

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

.mb-48 {
    margin-bottom: 48px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--border-radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 168, 232, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.hero-cta-outline {
    color: #fff;
    border-color: #fff;
}

.hero-cta-outline:hover {
    color: #000;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: var(--bg-light);
}

.btn-text {
    background-color: transparent;
    color: var(--text-main);
}

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

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

/* ==========================================================================
   Utilities
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-white {
    color: var(--white) !important;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 250;
    padding: 24px 0;
    color: var(--white);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo-icon {
    height: 20px;
    width: auto;
    margin-right: -2px;
}

.navbar .logo-icon {
    filter: brightness(0) invert(1);
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-weight: 700;
    font-size: 16px;
    opacity: 0.9;
    color: var(--white);
}

.nav-links a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: calc(4px * 3 + 11px * 2);
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 300;
    padding: 0;
    color: inherit;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    background: currentColor;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

.nav-toggle span:nth-child(1) {
    bottom: calc(50% + 11px + 4px / 2);
    transition-property: bottom, transform;
    transition-delay: calc(0s + 0.35s) * .6;
}

.nav-toggle span:nth-child(2) {
    top: calc(50% - 4px / 2);
    transition-property: opacity, transform;
    transition-delay: calc(0s + 0.35s * .3);
}

.nav-toggle span:nth-child(3) {
    top: calc(50% + 11px + 4px / 2);
    transition-property: top, transform;
    transition-delay: 0s;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 180;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

body.nav-menu-open .nav-overlay {
    display: block;
    opacity: 1;
}

body.nav-menu-open {
    overflow: hidden;
}

.navbar.is-open .nav-toggle span:nth-child(1) {
    bottom: calc(50% - 4px / 2);
    transform: rotate(-135deg);
    transition-delay: 0s;
}

.navbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: rotate(-135deg);
    transition-delay: calc(0s + 0.35s * .3);
}

.navbar.is-open .nav-toggle span:nth-child(3) {
    top: calc(50% - 4px / 2);
    transform: rotate(-225deg);
    transition-delay: calc(0s + 0.35s * .6);
}

.navbar .btn-text {
    color: var(--white);
}

.navbar .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.navbar .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: calc(100vh + 40px);
    min-height: 690px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--secondary-color);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay, linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.65) 100%));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 84px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .hero-title__break {
        display: block;
    }
}

.hero-tagline {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--white);
    text-transform: none;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 80px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-actions .btn {
    padding: 14px 28px;
    font-size: 16px;
}

.hero-actions .btn-white {
    color: var(--primary-color);
}

/* Hotel Detail Hero Adjustments */
@media (max-width: 768px) {
    .hotel-detail-page .hero.hero-subpage {
        padding-top: 140px;
    }
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 12px 12px 12px 32px;
    border-radius: var(--border-radius-pill);
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
    text-align: left;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
}

.search-item {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: var(--border-radius-pill);
    transition: background-color var(--transition-fast);
}

.search-item:hover {
    background-color: var(--bg-light);
}

.search-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input label {
    font-size: 13px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 2px;
    display: block;
}

.search-input input {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-main);
    outline: none;
    width: 100%;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
    margin: 0 8px;
}

.search-btn {
    padding: 16px 32px;
    font-size: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   Weather Snapshot
   ========================================================================== */
.weather-section {
    position: relative;
    margin-top: -60px;
    padding: 0 0 80px;
    z-index: 5;
}

.weather-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 46px;
    border-radius: 32px;
    --weather-card-bg:
        radial-gradient(circle at 15% 20%, rgba(121, 216, 255, 0.2), rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, #fefefe, #e5f3ff);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(243, 249, 255, 0.65));
    --weather-card-glow: radial-gradient(circle, rgba(0, 168, 232, 0.2), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(15, 28, 45, 0.08);
    --weather-card-divider: rgba(15, 28, 45, 0.1);
    --weather-card-divider-strong: rgba(15, 28, 45, 0.12);
    --weather-card-text: #0f1c2d;
    --weather-card-title: #0d1f33;
    --weather-card-accent: #0f7baf;
    --weather-card-muted: rgba(15, 28, 45, 0.65);
    color: var(--weather-card-text);
    background: var(--weather-card-bg);
    border: 1px solid var(--weather-card-border);
    box-shadow: 0 20px 80px rgba(15, 28, 45, 0.15);
    isolation: isolate;
    transition: background 0.6s ease, border-color 0.6s ease, color 0.3s ease;
}

.weather-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--weather-card-shine);
    pointer-events: none;
    z-index: 0;
}

.weather-card::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -140px;
    right: -20px;
    background: var(--weather-card-glow);
    filter: blur(20px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.weather-card[data-weather-theme="sunny"] {
    --weather-card-bg:
        radial-gradient(circle at 75% 5%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 20% 20%, rgba(255, 233, 150, 0.85), rgba(255, 238, 210, 0.2) 60%),
        linear-gradient(135deg, #fff4d5, #ffd08c);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(255, 233, 186, 0.7));
    --weather-card-glow: radial-gradient(circle, rgba(255, 190, 70, 0.35), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(213, 161, 58, 0.35);
    --weather-card-text: #4b3105;
    --weather-card-title: #3a2400;
    --weather-card-accent: #c98712;
    --weather-card-muted: rgba(58, 36, 0, 0.62);
    --weather-card-divider: rgba(58, 36, 0, 0.15);
    --weather-card-divider-strong: rgba(58, 36, 0, 0.25);
}

.weather-card[data-weather-theme="partly-cloudy"] {
    --weather-card-bg:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, #fefefe, #dfe8ff);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(229, 239, 255, 0.7));
    --weather-card-glow: radial-gradient(circle, rgba(163, 199, 255, 0.3), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(119, 149, 203, 0.35);
}

.weather-card[data-weather-theme="cloudy"] {
    --weather-card-bg:
        radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 60%),
        linear-gradient(145deg, #eef2f8, #cfd6e5);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(234, 238, 247, 0.75));
    --weather-card-glow: radial-gradient(circle, rgba(153, 173, 209, 0.25), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(143, 153, 170, 0.35);
}

.weather-card[data-weather-theme="overcast"] {
    --weather-card-bg:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 55%),
        linear-gradient(145deg, #e1e4ea, #c3c5cc);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(224, 226, 232, 0.7));
    --weather-card-glow: radial-gradient(circle, rgba(143, 149, 163, 0.25), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(115, 118, 128, 0.35);
    --weather-card-text: #222834;
    --weather-card-title: #121724;
    --weather-card-muted: rgba(18, 23, 36, 0.65);
    --weather-card-divider: rgba(18, 23, 36, 0.15);
    --weather-card-divider-strong: rgba(18, 23, 36, 0.24);
}

.weather-card[data-weather-theme="fog"] {
    --weather-card-bg:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 60%),
        linear-gradient(145deg, #f5f5f5, #dcdfe3);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 247, 0.7));
    --weather-card-glow: radial-gradient(circle, rgba(208, 213, 221, 0.25), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(190, 196, 205, 0.45);
    --weather-card-text: #3f3f3f;
    --weather-card-title: #2f2f2f;
    --weather-card-muted: rgba(47, 47, 47, 0.6);
    --weather-card-divider: rgba(47, 47, 47, 0.15);
}

.weather-card[data-weather-theme="rain"] {
    --weather-card-bg:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 55%),
        linear-gradient(145deg, #dfe8f7, #b3c6e6);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(202, 219, 243, 0.7));
    --weather-card-glow: radial-gradient(circle, rgba(88, 133, 195, 0.35), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(68, 107, 160, 0.35);
    --weather-card-text: #0f1f33;
    --weather-card-title: #0a192a;
    --weather-card-accent: #2a6cc2;
    --weather-card-muted: rgba(10, 25, 42, 0.68);
    --weather-card-divider: rgba(10, 25, 42, 0.18);
    --weather-card-divider-strong: rgba(10, 25, 42, 0.26);
}

.weather-card[data-weather-theme="sleet"] {
    --weather-card-bg:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%),
        linear-gradient(145deg, #e5f2ff, #c7dff6);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(219, 236, 255, 0.75));
    --weather-card-glow: radial-gradient(circle, rgba(131, 168, 214, 0.3), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(102, 140, 186, 0.35);
    --weather-card-text: #0f2236;
    --weather-card-title: #0b1b2c;
    --weather-card-muted: rgba(11, 27, 44, 0.65);
    --weather-card-divider: rgba(11, 27, 44, 0.18);
}

.weather-card[data-weather-theme="snow"] {
    --weather-card-bg:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 60%),
        linear-gradient(145deg, #ffffff, #dfefff);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(236, 246, 255, 0.7));
    --weather-card-glow: radial-gradient(circle, rgba(162, 189, 232, 0.25), rgba(255, 255, 255, 0));
    --weather-card-border: rgba(173, 193, 224, 0.4);
    --weather-card-text: #123047;
    --weather-card-title: #0a1e30;
    --weather-card-muted: rgba(12, 36, 55, 0.6);
    --weather-card-divider: rgba(12, 36, 55, 0.16);
}

.weather-card[data-weather-theme="thunderstorms"] {
    --weather-card-bg:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 55%),
        linear-gradient(145deg, #1f2436, #0c1424);
    --weather-card-shine: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(64, 72, 110, 0.3));
    --weather-card-glow: radial-gradient(circle, rgba(108, 99, 255, 0.35), rgba(12, 20, 36, 0));
    --weather-card-border: rgba(111, 103, 210, 0.45);
    --weather-card-text: #f4f6ff;
    --weather-card-title: #ffffff;
    --weather-card-accent: #d7d9ff;
    --weather-card-muted: rgba(244, 246, 255, 0.75);
    --weather-card-divider: rgba(244, 246, 255, 0.2);
    --weather-card-divider-strong: rgba(244, 246, 255, 0.35);
    box-shadow: 0 25px 90px rgba(6, 7, 17, 0.45);
}

.weather-card > * {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

@supports (backdrop-filter: blur(10px)) {
    .weather-card > * {
        background: transparent;
        backdrop-filter: none;
    }
}

.weather-card-eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 700;
    color: var(--weather-card-accent, #0f7baf);
    margin-bottom: 6px;
}


.weather-card-title {
    font-size: 42px;
    margin-bottom: 8px;
    color: var(--weather-card-title, #0d1f33);
    letter-spacing: -0.5px;
}

.weather-card-updated {
    color: var(--weather-card-muted, rgba(15, 28, 45, 0.65));
    font-size: 16px;
    font-weight: 500;
}

.weather-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.weather-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.weather-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.air-main,
.water-main,
.uv-main,
.wind-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.air-details {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-direction: column;
}

.weather-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 8px;
}

.uv-main,
.wind-main {
    gap: 12px;
    text-align: center;
}

.wind-reading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.wind-direction {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--weather-card-muted, rgba(15, 28, 45, 0.7));
    white-space: nowrap;
}

.weather-water-graph {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.weather-temp-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.weather-condition {
    font-size: 24px;
    font-weight: 600;
    color: var(--weather-card-title, #0d1f33);
}

.weather-condition-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-condition-icon img {
    width: 90px;
    height: 90px;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(3, 7, 20, 0.4));
}

.weather-value {
    font-size: 64px;
    font-weight: 700;
    color: var(--weather-card-title, #0d1f33);
}

.weather-detail {
    font-size: 15px;
    color: var(--weather-card-muted, rgba(15, 28, 45, 0.66));
}

.temp-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
    margin-bottom: 4px;
    color: var(--weather-card-muted, rgba(15, 28, 45, 0.65));
}

.temp-value {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--weather-card-title, #0d1f33);
    line-height: 1;
    letter-spacing: -1px;
}

.water-temp {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--weather-card-title, #0d1f33);
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: none;
}

.uv-main .temp-value,
.wind-value {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
}

.tide-mini {
    margin: 0;
    width: 100%;
    height: 80px;
}

.tide-times {
    margin-top: 8px;
    font-size: 13px;
    color: var(--weather-card-muted, rgba(15, 28, 45, 0.65));
    padding-top: 12px;
    border-top: 1px solid var(--weather-card-divider, rgba(15, 28, 45, 0.1));
    width: 100%;
}

.tide-times p {
    margin: 2px 0;
}

.weather-detail a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.tide-chart {
    background: transparent;
    border-radius: 20px;
    padding: 8px 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    border-top: 1px solid var(--weather-card-divider, rgba(15, 28, 45, 0.08));
}

.tide-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tide-chart-area {
    fill: rgba(0, 123, 255, 0.1);
    opacity: 0.18;
}

.tide-chart-wave {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2.5;
}

.current-dot {
    fill: #f6fbff;
    stroke: rgba(4, 32, 62, 0.4);
    stroke-width: 3;
}

.tide-chart-placeholder {
    font-size: 13px;
    color: var(--weather-card-muted, rgba(15, 28, 45, 0.6));
    text-align: center;
    margin: 0;
}

.tide-chart-summary {
    font-size: 13px;
    color: var(--weather-card-muted, rgba(15, 28, 45, 0.6));
    margin-top: 8px;
}

.weather-card-status {
    font-size: 14px;
    color: rgba(15, 28, 45, 0.55);
}

.weather-forecast {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 28, 45, 0.12);
}

.weather-forecast-placeholder {
    color: rgba(15, 28, 45, 0.55);
    font-size: 14px;
}

.weather-forecast-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
    width: 100%;
}

.weather-forecast-item {
    border: none;
    border-radius: 18px;
    padding: 10px;
    text-align: center;
    background: rgba(15, 28, 45, 0.04);
    box-shadow: none;
    border: 1px solid rgba(15, 28, 45, 0.08);
    backdrop-filter: blur(0);
}

.weather-forecast-day {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(15, 28, 45, 0.6);
    margin-bottom: 6px;
}

.weather-forecast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.weather-forecast-icon img {
    width: 44px;
    height: 44px;
    display: block;
}

.weather-forecast-condition {
    font-size: 12px;
    color: rgba(15, 28, 45, 0.55);
    margin-bottom: 4px;
}

.weather-forecast-temps {
    font-size: 14px;
    font-weight: 600;
    color: rgba(15, 28, 45, 0.85);
}

.weather-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(15, 28, 45, 0.12);
    background: rgba(255, 255, 255, 0.9);
    align-self: flex-start;
}

.weather-toggle-btn {
    border: none;
    background: transparent;
    color: rgba(15, 28, 45, 0.75);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.weather-toggle-btn.is-active {
    background: rgba(0, 168, 232, 0.15);
    border-color: transparent;
    color: #0d1f33;
    box-shadow: inset 0 0 0 1px rgba(0, 168, 232, 0.3);
}

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

.weather-card.weather-card--error .weather-card-status {
    color: #b42318;
}

.weather-card.weather-card--error .weather-value {
    color: #b42318;
}

@media (max-width: 900px) {
    .weather-card {
        padding: 32px;
        gap: 24px;
    }

    .weather-section {
        margin-top: -40px;
    }

    .weather-value {
        font-size: 48px;
    }

}

@media (max-width: 640px) {
    .weather-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .weather-metric + .weather-divider {
        display: none;
    }

    .weather-divider {
        display: none;
    }

    .weather-card {
        padding: 24px 20px;
        gap: 20px;
    }

    .weather-section {
        margin-top: -20px;
        padding-bottom: 64px;
    }

    .weather-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   Section Layouts & General Styling
   ========================================================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 40px;
    line-height: 1.2;
}

.section-description {
    max-width: 420px;
    color: var(--text-muted);
    text-align: right;
}

.centered-title {
    margin: 0 auto 48px;
    max-width: 700px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Base Card Styles */
.dest-card,
.offer-card,
.exp-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.dest-card:hover,
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.partner-proof .metrics-grid {
    margin-bottom: 48px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.metric-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 900;
    color: var(--text-muted);
}

.metric-value {
    font-size: 40px;
    font-weight: 900;
    margin: 12px 0 8px;
    color: var(--secondary-color);
}

.metric-note {
    color: var(--text-muted);
    font-size: 14px;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.affiliate-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.affiliate-logo {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondary-color);
}

.affiliate-list {
    list-style: disc inside;
    color: var(--text-muted);
}

.affiliate-list li + li {
    margin-top: 6px;
}

.page-hero {
    padding: 160px 0 120px;
    background: var(--secondary-color);
    color: var(--white);
    text-align: left;
}

.page-hero .hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 900;
    opacity: 0.8;
    display: inline-block;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    max-width: 720px;
}

.page-hero p {
    font-size: 20px;
    max-width: 640px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .hero-actions {
    justify-content: flex-start;
}

.page-hero .btn-white {
    color: var(--primary-color);
}

.partner-page-hero {
    background: linear-gradient(120deg, rgba(11, 37, 69, 0.92), rgba(0, 168, 232, 0.45)), url('img/webp/hoi-an-landmarks-vietnam-2026-01-09-13-09-00-utc.webp');
    background-size: cover;
    background-position: center;
}

.partner-overview {
    background: var(--white);
}

.partner-overview .metrics-grid {
    margin-top: 24px;
}

.partner-playbooks {
    position: relative;
}

.partner-playbooks::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 168, 232, 0.16), transparent 55%);
    z-index: 0;
}

.partner-playbooks .container {
    position: relative;
    z-index: 1;
}

.playbook-card {
    border-top: 3px solid var(--primary-color);
    background: var(--white);
}

.playbook-card h3 {
    font-size: 22px;
}

.playbook-card ul {
    padding-left: 18px;
}

.process-grid {
    margin-top: 32px;
}

.process-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.playbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.playbook-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.playbook-tag {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: var(--border-radius-pill);
    background: rgba(0, 168, 232, 0.12);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.process-step {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.partner-cta {
    background: var(--secondary-color);
    color: var(--white);
    padding: 72px 0;
}

.partner-cta .cta-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.partner-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.card-img {
    position: relative;
    height: 250px;
    background-color: #E9ECEF;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dest-card .card-info,
.offer-card .card-body {
    padding: 24px;
}

.dest-card h3,
.offer-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.rating {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 700;
}

/* ==========================================================================
   Services Section Custom
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.service-item {
    text-align: center;
    padding: 24px;
    border-radius: var(--border-radius-md);
    transition: background-color var(--transition-fast);
}

.service-item:hover {
    background-color: rgba(0, 168, 232, 0.05);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: #E6F6FD;
    /* Light blue */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 900;
}

.service-item p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Gallery Masonry */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: #E9ECEF;
    transition: transform var(--transition-smooth);
}

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

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

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 43, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    z-index: 2000;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox__figure {
    margin: 0;
    max-width: min(1080px, 90vw);
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    background: #000;
}

.gallery-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.gallery-lightbox__nav--prev,
.gallery-lightbox__nav--next {
    flex-shrink: 0;
}

body.lightbox-open {
    overflow: hidden;
}

.inline-media {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.inline-media figure {
    margin: 0;
    flex: 1 1 240px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: #E9ECEF;
    display: flex;
    flex-direction: column;
}

.inline-media figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1 1 auto;
}

.inline-media--double figure {
    min-height: 240px;
}

.inline-media--triple figure {
    flex: 1 1 calc(33.333% - 12px);
    min-height: 220px;
}

.inline-media--wide figure {
    flex: 1 1 100%;
    min-height: 320px;
}

.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-3 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-5 {
    grid-column: span 4;
    grid-row: span 1;
}

/* ==========================================================================
   Offers Section Custom
   ========================================================================== */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-pill.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cards-grid > * {
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.cards-grid > *.is-hiding {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
}

.offer-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

body.tours-page .offer-card .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

body.tours-page .offer-card {
    cursor: pointer;
}

body.tours-page .offer-card .view-details-btn {
    width: 100%;
    text-align: center;
}

body.tours-page .card-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

#experience-summary .summary-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}

.summary-body {
    flex: 1 1 460px;
    min-width: 280px;
}

.summary-card {
    flex: 1 1 280px;
    min-width: 260px;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-card ul {
    color: var(--text-muted);
    padding-left: 18px;
    margin: 0 0 16px;
    font-size: 14px;
}

.summary-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.summary-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.summary-nav-list li {
    display: flex;
    align-items: center;
}

.summary-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

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

.summary-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    font-size: 11px;
    margin-right: 6px;
}

.summary-nav-link:focus .summary-nav-icon,
.summary-nav-link:hover .summary-nav-icon {
    background: rgba(226, 132, 19, 0.15);
}

.summary-subtle {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 14px;
}

.summary-meta {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--text-muted);
    font-size: 14px;
}

.summary-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    font-size: 12px;
    margin-right: 6px;
}

.summary-meta li {
    display: flex;
    align-items: center;
}

.summary-price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

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

.summary-review-card {
    margin-top: 16px;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.summary-review-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
}

.price {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary-color);
}

.price span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 700;
}

/* ==========================================================================
   Experiences Section Custom
   ========================================================================== */
.experiences {
    padding: 100px 0;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.experience-text {
    max-width: 400px;
    color: var(--text-muted);
}

.exp-card {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.exp-card .exp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.exp-card h3 {
    position: relative;
    z-index: 3;
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
}

/* ==========================================================================
   Contact Form Custom
   ========================================================================== */
.newsletter {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-panel {
    background: linear-gradient(135deg, #0B2545, #00A8E8);
    padding: 64px 48px;
    position: relative;
}

.contact-info-panel h2 {
    color: var(--white);
    font-size: 40px;
    line-height: 1.2;
}

.mt-16 {
    margin-top: 16px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-32 {
    margin-bottom: 32px;
}

.contact-details {
    font-size: 16px;
    opacity: 0.9;
}

.contact-benefits {
    margin-top: 32px;
    display: grid;
    gap: 12px;
}

.contact-benefits p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-panel {
    padding: 64px 48px;
    background: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 900;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-main);
    background-color: var(--bg-light);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.1);
}

.form-group-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    padding: 0;
    accent-color: var(--primary-color);
}

.form-group-checkbox label {
    font-weight: 700;
    color: var(--text-main);
}

.form-helper-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: -12px;
}

.btn-full {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
}

.form-status {
    font-size: 15px;
    font-weight: 700;
    margin-top: 12px;
    color: var(--secondary-color);
}

.form-status::before {
    display: none;
}

.form-status.is-pending {
    color: var(--primary-color);
}

.form-status.is-success {
    color: #0F8C50;
}

.form-status.is-error {
    color: #B00020;
}

/* ==========================================================================
   Footer Custom
   ========================================================================== */
.footer {
    background-color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 300px;
}

.contact-info p {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-weight: 700;
    align-items: center;
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-weight: 900;
}

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

.legal-hero {
    background: var(--bg-light);
    padding: 120px 0 60px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.legal-hero p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.legal-content {
    padding: 60px 0 100px;
    background: var(--bg-main);
}

.legal-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.legal-card h2 {
    margin-bottom: 16px;
}

.legal-card section + section {
    margin-top: 32px;
}

.legal-list {
    list-style: disc inside;
    color: var(--text-muted);
    margin-top: 12px;
}

.legal-list li + li {
    margin-top: 8px;
}

.legal-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 24px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }

    .search-bar {
        flex-direction: column;
        border-radius: var(--border-radius-lg);
        bottom: -150px;
        padding: 20px;
        gap: 12px;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }

    .search-btn {
        width: 100%;
        margin-top: 16px;
    }

    .explore-places {
        margin-top: 200px;
    }

    .cards-grid,
    .services-grid,
    .footer-grid,
    .affiliate-grid,
    .playbook-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .item-5 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .cards-grid,
    .services-grid,
    .footer-grid,
    .metrics-grid,
    .affiliate-grid,
    .playbook-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .experience-header {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

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

    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 24px;
    }

    .page-hero {
        padding: 120px 0 100px;
    }

    .page-hero .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .nav-content {
        width: 100%;
        box-sizing: border-box;
        padding: 0 clamp(16px, 4vw, 32px);
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: clamp(16px, 4vw, 32px);
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 80%);
        background: #0f172a;
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 32px 40px;
        gap: 32px;
        transform: translateX(100%);
        transition: transform var(--transition-fast);
        z-index: 260;
        margin-left: 0;
        pointer-events: none;
    }

    .navbar.is-open .nav-menu {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-links {
        position: static;
        left: auto;
        transform: none;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .nav-links a {
        font-size: 20px;
        text-align: center;
        width: 100%;
    }

    .nav-actions {
        display: none;
    }

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

@media (min-width: 1025px) {
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        width: auto;
    }
}
