/* ============================================================
   REDDORA RESORT — Premium Casino Resort Design System
   Emerald Crown Edition · Token-based · Deep Luxury Glassmorphism
   Playfair Display · Inter · Emerald & Gold Prestige
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    /* Backgrounds — deep obsidian with emerald undertone */
    --bg-dark:     #030A06;
    --bg-soft:     #06100A;
    --bg-surface:  #0A1910;
    --bg-elevated: #102018;
    --bg-glass:    rgba(4, 12, 8, 0.95);

    /* Accent — Emerald Primary */
    --accent-primary:  #10B981;
    --accent-hover:    #34D399;
    --accent-warm:     #059669;
    --accent-muted:    rgba(16, 185, 129, 0.10);
    --accent-border:   rgba(16, 185, 129, 0.22);
    --accent-glow:     rgba(16, 185, 129, 0.25);

    /* Gold secondary highlight */
    --gold-primary:    #D4AF6E;
    --gold-soft:       rgba(212, 175, 110, 0.10);
    --gold-border:     rgba(212, 175, 110, 0.20);
    --gold-glow:       rgba(212, 175, 110, 0.14);

    /* Champagne */
    --champagne:       #E8D9B8;

    /* Supporting glow */
    --glow-emerald:    rgba(16, 185, 129, 0.08);

    /* Text */
    --text-primary: #EDF7F2;
    --text-muted:   #7BA891;
    --text-faint:   #1A3328;

    /* Borders */
    --border:       #0D1F14;
    --border-soft:  rgba(16, 185, 129, 0.08);

    /* Radius */
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 34px;

    /* Shadows */
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.72);
    --shadow-deep: 0 32px 80px rgba(0, 0, 0, 0.88);
    --glow-soft:   0 8px 48px rgba(16, 185, 129, 0.40);
    --glow-card:   0 4px 32px rgba(16, 185, 129, 0.18);
    --glow-gold:   0 4px 28px rgba(212, 175, 110, 0.16);

    /* Transitions */
    --transition:      240ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 380ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.72;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding-top: 72px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: color var(--transition);
}

/* ── Header & Navigation ────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition-slow), box-shadow var(--transition-slow), backdrop-filter var(--transition-slow);
}

.site-header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(16, 185, 129, 0.12), 0 8px 32px rgba(0, 0, 0, 0.60);
}

.site-header .navbar {
    padding: 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 2rem;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.18);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.navbar-brand:hover .brand-logo {
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.35);
    border-color: rgba(16, 185, 129, 0.45);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    line-height: 1;
}

.brand-text em {
    font-style: italic;
    color: var(--accent-primary);
}

/* Nav links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.855rem;
    font-weight: 500;
    color: rgba(237, 247, 242, 0.72) !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem !important;
    border-radius: 8px;
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px;
    height: 1.5px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
    background: rgba(16, 185, 129, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* CTA Button in nav */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-warm) 100%);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.30);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-nav-cta:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 28px rgba(16, 185, 129, 0.48);
    filter: brightness(1.08);
    color: #fff !important;
}

/* Mobile toggler */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.4rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.toggler-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background var(--transition);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-warm) 100%);
    color: #fff;
    padding: 0.78rem 1.8rem;
    font-size: 0.9rem;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--glow-soft);
    filter: brightness(1.1);
    color: #fff;
    text-decoration: none;
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    padding: 0.78rem 1.8rem;
    font-size: 0.9rem;
    border: 1px solid rgba(237, 247, 242, 0.22);
}

.btn-outline-light:hover {
    background: rgba(237, 247, 242, 0.06);
    border-color: rgba(237, 247, 242, 0.44);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.btn-lg {
    padding: 0.95rem 2.2rem;
    font-size: 0.98rem;
}

.btn-submit {
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.88rem 2rem;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(3, 10, 6, 0.90) 0%,
        rgba(6, 16, 10, 0.78) 40%,
        rgba(10, 25, 16, 0.60) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 1rem 4rem;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
    color: var(--accent-primary);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.38rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.4rem;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.12;
    margin-bottom: 1.3rem;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-primary);
}

.gold-word {
    color: var(--gold-primary);
    font-style: normal;
}

.hero .lead {
    font-size: 1.05rem;
    color: rgba(237, 247, 242, 0.78);
    max-width: 620px;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.6rem;
}

.hero-microcopy {
    font-size: 0.78rem;
    color: rgba(237, 247, 242, 0.45);
    letter-spacing: 0.04em;
    margin-bottom: 2.2rem;
}

/* Destinations pills */
.destinations-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.destination-pill {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.18);
    color: rgba(237, 247, 242, 0.72);
    font-size: 0.76rem;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    transition: background var(--transition), border-color var(--transition);
}

.destination-pill strong {
    color: var(--accent-primary);
}

.destination-pill:hover {
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(16, 185, 129, 0.32);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 1.5px;
    height: 44px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    border-radius: 2px;
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Experience Strip ─────────────────────────────────────────── */
.experience-strip {
    background: var(--bg-surface);
    border-top: 1px solid rgba(16, 185, 129, 0.08);
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    padding: 1.4rem 0;
    overflow: hidden;
}

.experience-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(237, 247, 242, 0.62);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.experience-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.experience-item:hover {
    color: var(--text-primary);
}

.experience-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.30);
    flex-shrink: 0;
}

/* ── Stats Strip ─────────────────────────────────────────────── */
.stats-strip {
    background: var(--bg-elevated);
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem 3rem;
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-number.champagne {
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(16, 185, 129, 0.12);
    flex-shrink: 0;
}

/* ── Sections ──────────────────────────────────────────────────── */
.section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.section-alt {
    background: var(--bg-soft);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.18);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-label-champagne {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: rgba(212, 175, 110, 0.08);
    border: 1px solid rgba(212, 175, 110, 0.18);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.18;
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
}

.section-intro {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.72;
}

/* ── Resort Featured ──────────────────────────────────────────── */
.resort-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid rgba(16, 185, 129, 0.10);
    box-shadow: var(--shadow-soft);
    transition: box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.resort-featured:hover {
    box-shadow: var(--glow-card), var(--shadow-deep);
    border-color: rgba(16, 185, 129, 0.22);
}

.resort-featured-image {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.resort-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.resort-featured:hover .resort-featured-image img {
    transform: scale(1.04);
}

.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(16, 32, 24, 0.72) 100%);
}

.resort-featured-body {
    padding: 3rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resort-meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.resort-featured-body h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.resort-featured-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

/* Amenity tags */
.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.6rem;
}

.amenity-tag {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.16);
    color: rgba(237, 247, 242, 0.72);
    font-size: 0.74rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.amenity-tag:hover {
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(16, 185, 129, 0.30);
    color: var(--text-primary);
}

.featured-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.featured-trust-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ── Resort Grid ──────────────────────────────────────────────── */
.resort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.resort-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.resort-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-card), var(--shadow-soft);
    border-color: rgba(16, 185, 129, 0.22);
}

.resort-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.resort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.resort-card:hover .resort-card-image img {
    transform: scale(1.06);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 32, 24, 0.75) 0%, transparent 55%);
}

.resort-card-body {
    padding: 1.5rem 1.6rem 1.8rem;
}

.resort-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.resort-card-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* ── Info Grid (Why section) ──────────────────────────────────── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

.info-block {
    background: var(--bg-elevated);
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem 2.2rem;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.info-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-card);
    border-color: rgba(16, 185, 129, 0.22);
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0.06) 100%);
    border: 1px solid rgba(16, 185, 129, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.info-block h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.55rem;
}

.info-block p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.testimonial-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(16, 185, 129, 0.10);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    margin: 0;
    position: relative;
    transition: box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.2rem;
    left: 1.6rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(16, 185, 129, 0.18);
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--glow-card);
    border-color: rgba(16, 185, 129, 0.22);
}

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.9rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: rgba(237, 247, 242, 0.72);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-card footer strong {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 600;
    font-style: normal;
}

.testimonial-card footer span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── CTA Box ──────────────────────────────────────────────────── */
.cta-box {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(16, 40, 28, 0.9) 100%);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-badge {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(16, 185, 129, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 1.2rem;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-box p {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.72;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}

.cta-microcopy {
    font-size: 0.77rem;
    color: rgba(237, 247, 242, 0.38);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0;
}

/* ── Page Header ─────────────────────────────────────────────── */
.page-header {
    position: relative;
    padding-top: 72px;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-header-image {
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3, 10, 6, 0.96) 0%,
        rgba(6, 16, 10, 0.78) 45%,
        rgba(10, 25, 16, 0.50) 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

.page-header-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    line-height: 1.15;
}

.page-header-content p {
    font-size: 0.98rem;
    color: rgba(237, 247, 242, 0.68);
    max-width: 560px;
    line-height: 1.6;
}

/* ── Content Section & Cards ─────────────────────────────────── */
.content-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.content-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.8rem 3rem;
    line-height: 1.75;
}

.content-card h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.10);
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p {
    font-size: 0.95rem;
    color: rgba(237, 247, 242, 0.72);
    line-height: 1.75;
    margin-bottom: 0.8rem;
}

.content-card ul {
    padding-left: 1.4rem;
    color: rgba(237, 247, 242, 0.72);
    font-size: 0.95rem;
    line-height: 1.75;
}

.content-card ul li {
    margin-bottom: 0.4rem;
}

.content-card a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-card a:hover {
    color: var(--accent-hover);
}

.policy-updated {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem !important;
}

/* ── About Layout ─────────────────────────────────────────────── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(6, 16, 10, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: var(--radius);
    padding: 0.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
}

.about-image-badge .stat-number {
    font-size: 1.6rem;
    color: var(--gold-primary);
}

.about-image-badge span:last-child {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.8rem;
}

.about-highlight-item {
    text-align: center;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.10);
    border-radius: var(--radius);
}

.highlight-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.highlight-label {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* About Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2.5rem;
}

.value-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    text-align: center;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-card);
    border-color: rgba(16, 185, 129, 0.22);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(16, 185, 129, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--accent-primary);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Responsible Gaming Notice ─────────────────────────────────── */
.rg-notice {
    display: flex;
    gap: 1rem;
    background: rgba(212, 175, 110, 0.05);
    border: 1px solid rgba(212, 175, 110, 0.14);
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
    margin-top: 1.5rem;
    align-items: flex-start;
}

.rg-notice-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.rg-notice p {
    font-size: 0.875rem;
    color: rgba(237, 247, 242, 0.65);
    line-height: 1.6;
    margin: 0 !important;
}

.rg-notice a {
    color: var(--gold-primary) !important;
}

/* ── Contact Page ──────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(16, 185, 129, 0.10);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2rem;
}

.contact-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.contact-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    line-height: 1.65;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.4rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-detail h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.contact-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(16, 185, 129, 0.08);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(16, 185, 129, 0.10);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2.2rem;
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
    line-height: 1.6;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.14) !important;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-faint);
    color: rgba(123, 168, 145, 0.45);
}

.form-control:focus {
    border-color: rgba(16, 185, 129, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.10);
    background: rgba(16, 185, 129, 0.07);
    outline: none;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-privacy-note {
    font-size: 0.77rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.8rem;
    margin-bottom: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.form-privacy-note a {
    color: var(--accent-primary);
}

.text-danger {
    color: #f87171 !important;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.alert-success-custom {
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.24);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1.4rem;
    color: var(--accent-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

/* ── Trust Badges ──────────────────────────────────────────────── */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.4rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    color: rgba(237, 247, 242, 0.58);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    letter-spacing: 0.03em;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.trust-badge:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.22);
    color: var(--text-primary);
}

.trust-badge-champagne {
    background: rgba(212, 175, 110, 0.06);
    border-color: rgba(212, 175, 110, 0.14);
    color: rgba(212, 175, 110, 0.72);
}

.trust-badge-champagne:hover {
    background: rgba(212, 175, 110, 0.12);
    border-color: rgba(212, 175, 110, 0.26);
    color: var(--gold-primary);
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid rgba(16, 185, 129, 0.08);
    margin-top: auto;
}

.footer-top {
    padding: 4.5rem 0 3rem;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.footer-logo-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.14);
    border-radius: 8px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.footer-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.68;
    margin-bottom: 1.2rem;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.86rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-responsible-gaming {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.06);
}

.footer-rg-text {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(237, 247, 242, 0.38);
    line-height: 1.6;
    margin: 0;
}

.footer-rg-text a {
    color: rgba(212, 175, 110, 0.60);
    text-underline-offset: 2px;
}

.footer-rg-text a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(16, 185, 129, 0.06);
    padding: 1.4rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.footer-bottom-inner p {
    font-size: 0.8rem;
    color: rgba(237, 247, 242, 0.30);
    margin: 0;
}

.footer-bottom-inner a {
    color: rgba(237, 247, 242, 0.45);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom-inner a:hover {
    color: var(--accent-primary);
}

.footer-disclaimer {
    font-size: 0.74rem !important;
    color: rgba(237, 247, 242, 0.20) !important;
}

/* ── Text Center Header ─────────────────────────────────────────── */
.text-center-header {
    text-align: center;
}

/* ── Champagne utility class ──────────────────────────────────── */
.champagne {
    color: var(--gold-primary);
}

/* ── Margin helpers ───────────────────────────────────────────── */
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.w-100 { width: 100%; }

/* ── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.22);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.40);
}

/* ── Selection ─────────────────────────────────────────────────── */
::selection {
    background: rgba(16, 185, 129, 0.25);
    color: var(--text-primary);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resort-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .resort-featured {
        grid-template-columns: 1fr;
    }

    .resort-featured-image {
        min-height: 300px;
    }

    .featured-image-overlay {
        background: linear-gradient(to top, rgba(16, 32, 24, 0.85) 0%, transparent 70%);
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 0.8rem 1.8rem;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 64px;
    }

    .site-header .container {
        height: 64px;
    }

    .hero-content {
        padding: 3.5rem 1rem 3.5rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .section {
        padding: 4rem 0;
    }

    .resort-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-row {
        flex-direction: column;
        gap: 0;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .stat-item {
        padding: 1.2rem 1rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .content-card {
        padding: 2rem 1.6rem;
    }

    .resort-featured-body {
        padding: 2rem 1.6rem;
    }

    /* Mobile nav */
    .navbar-collapse {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(16, 185, 129, 0.12);
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.60);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .nav-link {
        width: 100%;
        padding: 0.6rem 0.8rem !important;
    }

    .nav-cta {
        width: 100%;
        margin-top: 0.5rem;
    }

    .btn-nav-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .featured-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}
