:root {
    /* NubiCode logo colors (from brand assets) */
    --logo-blue: #00AEEF;
    --logo-blue-dark: #0099cc;
    --logo-gray: #b8b8b8;
    --bg-color: #0c1419;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #edebdf;
    --accent-teal: #00AEEF;
    --accent-teal-dark: #0099cc;
    --accent-teal-light: #33bff2;
    --accent-gold: #ffd700;
    --accent-gold-dark: #ccaa00;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --glow: 0 0 20px rgba(0, 174, 239, 0.3);
    --glow-gold: 0 0 30px rgba(255, 215, 0, 0.4);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.4);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    
}

/* Ocean-style background – calm top-view, Get Waves inspired */
.ocean-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.ocean-base {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 20%, rgba(0, 174, 239, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 80% 100% at 80% 60%, rgba(0, 153, 204, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, #0c1419 0%, #0a1c28 35%, #0c1419 100%);
}

.ocean-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    opacity: 0.1;
    animation: oceanWaveSlide 25s linear infinite;
}

.ocean-waves-offset {
    opacity: 0.06;
    animation-duration: 30s;
    animation-direction: reverse;
}

.ocean-waves path {
    stroke: rgba(0, 174, 239, 0.25);
    stroke-width: 0.5;
}

.ocean-waves .wave-path-1 { fill: rgba(0, 174, 239, 0.4); }
.ocean-waves .wave-path-2 { fill: rgba(0, 153, 204, 0.3); }
.ocean-waves .wave-path-3 { fill: rgba(0, 140, 190, 0.45); }

@keyframes oceanWaveSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Wave section dividers – Get Waves style (https://getwaves.io/) */
.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    color: var(--bg-color);
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.wave-divider-top svg {
    height: 50px;
}

.wave-divider-mid {
    color: rgba(255, 255, 255, 0.03);
}

.wave-divider-mid svg {
    height: 40px;
}

/* Dynamic water-inspired background */
.blob-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -1;
    overflow: hidden;
}

.blob-bg::before,
.blob-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-bg::before {
    width: 80vmax;
    height: 80vmax;
    top: -20vmax;
    left: -20vmax;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.18) 0%, rgba(0, 174, 239, 0.06) 40%, transparent 70%);
    animation-duration: 25s;
    animation-delay: 0s;
}

.blob-bg::after {
    width: 60vmax;
    height: 60vmax;
    top: 30vmax;
    left: 40vmax;
    background: radial-gradient(circle, rgba(184, 184, 184, 0.1) 0%, rgba(184, 184, 184, 0.03) 40%, transparent 70%);
    animation-duration: 22s;
    animation-delay: -5s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(5vmax, -5vmax) scale(1.1) rotate(5deg);
    }
    50% {
        transform: translate(-5vmax, 3vmax) scale(0.95) rotate(-3deg);
    }
    75% {
        transform: translate(3vmax, 5vmax) scale(1.05) rotate(2deg);
    }
}

/* Base gradient layer (NubiCode logo) */
.blob-bg {
    background: 
        radial-gradient(ellipse 120% 80% at 20% 30%, rgba(0, 174, 239, 0.08), transparent 50%),
        radial-gradient(ellipse 80% 120% at 80% 70%, rgba(0, 153, 204, 0.06), transparent 50%);
    animation: blobRotate 60s linear infinite, blobPulse 10s ease-in-out infinite;
}

@keyframes blobRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes blobPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

/* Water ripple background – [Madras Academy](https://www.madrasacademy.com/create-an-animated-water-ripple-background-with-html-and-css/) */
.ripple-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.ripple {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(0, 174, 239, 0.22);
    background: transparent;
    animation: ripple-animation 6s ease-out infinite;
    opacity: 0;
}

.ripple:nth-child(odd) {
    border-color: rgba(184, 184, 184, 0.15);
}

@keyframes ripple-animation {
    0% {
        transform: scale(0.4);
        opacity: 0.6;
    }
    50% {
        transform: scale(2.5);
        opacity: 0.2;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple:nth-child(1) {
    animation-delay: 0s;
    left: 25%;
    top: 35%;
}

.ripple:nth-child(2) {
    animation-delay: 1.2s;
    left: 65%;
    top: 45%;
}

.ripple:nth-child(3) {
    animation-delay: 2.5s;
    left: 50%;
    top: 25%;
}

.ripple:nth-child(4) {
    animation-delay: 3.8s;
    left: 75%;
    top: 60%;
}

.ripple:nth-child(5) {
    animation-delay: 5s;
    left: 35%;
    top: 70%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-purple));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 10px 0;
}
.announcement-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.announcement-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0 4px;
}
.announcement-close:hover { opacity: 1; }

header {
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 20, 25, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    min-height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logo {
        height: 60px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 200px;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-purple));
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
}

/* Hero */
.hero-section {
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.hero-logo {
    display: block;
    max-width: 1200px;
    width: 40%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-main {
    flex: 1 1 320px;
    min-width: 0;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 340px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

.hero-opening {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vw, 36px) clamp(28px, 4vw, 44px);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 1px rgba(0, 174, 239, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 24px 48px rgba(0, 0, 0, 0.3);
}

.hero-opening-label {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0;
}

.hero-opening-label-start {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-opening-label-accent {
    color: var(--accent-teal);
    text-shadow: 0 0 40px rgba(0, 174, 239, 0.4);
}

.hero-opening-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    max-width: 240px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-opening {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-opening {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 16px;
        padding: 20px 24px;
        width: 100%;
    }

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

    .hero-opening-sub {
        margin-top: 10px;
        text-align: left;
        max-width: none;
    }
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.05);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color), transparent 50%);
    pointer-events: none;
}

.hero-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.reveal-text {
    display: block;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
    position: relative;
}

.highlight::after {
    content: 'AND WELLNESS';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-teal);
    width: 0%;
    overflow: hidden;
    white-space: nowrap;
    animation: fillText 2s 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 40px rgba(0, 174, 239, 0.4);
}

@keyframes fillText {
    to { width: 100%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 480px;
    margin-bottom: 32px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-section .text-btn {
    color: rgba(255, 255, 255, 0.95);
}

.hero-section .text-btn:hover {
    color: #ffffff;
}

.btn {
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    color: #fff;
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: buttonGradient 3s ease infinite;
}

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn.glow-effect:hover {
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.4), 0 0 50px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.secondary-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
}

.secondary-btn:hover {
    background: var(--card-border);
}

.text-btn {
    background: transparent;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-btn:hover .arrow {
    transform: translateX(5px);
}

.arrow {
    transition: transform 0.3s;
}

/* Marquee Section */
.marquee-section {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
    background: var(--bg-color);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 20px;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-secondary);
    transition: color 0.3s;
}

.marquee-content span.dot {
    -webkit-text-stroke: 0;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    animation: dotGradient 3s ease infinite;
}

@keyframes dotGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.marquee-content:hover span {
    color: var(--text-secondary);
}

.marquee-content:hover span.dot {
    -webkit-text-fill-color: var(--accent-teal);
    animation: none;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

/* Glass Panels & Bento Grid */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Card Background Images */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.8s ease;
    opacity: 0.6;
}

.glass-panel:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85));
    z-index: -1;
}

/* Content Z-index fix for text over images */
.card-text, .card-content {
    position: relative;
    z-index: 1;
}

.card-text h3,
.card-text p,
.card-content h4,
.card-content p {
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.898);
}

.glass-panel:hover {
    border-color: rgba(0, 174, 239, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 174, 239, 0.1), 0 0 20px rgba(139, 92, 246, 0.08);
}

/* Gradient Accent Overlays */
.card-gradient-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-panel:hover .card-gradient-accent {
    opacity: 0.3;
}

.gradient-1 {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.3), rgba(59, 130, 246, 0.2));
}

.gradient-2 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(236, 72, 153, 0.2));
}

.gradient-3 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.2));
}

.gradient-4 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(0, 174, 239, 0.2));
}

.gradient-5 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(255, 215, 0, 0.2));
}

/* Gradient Background Cards */
.gradient-card {
    position: relative;
    overflow: hidden;
}

.card-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.8s ease;
}

.gradient-card:hover .card-gradient-bg {
    opacity: 0.6;
    transform: scale(1.1);
}

.gradient-6 {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
}

.gradient-7 {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink), var(--accent-gold));
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

.vision-grid .large-card {
    grid-column: span 1;
    min-height: 400px;
}

@media (min-width: 768px) {
    .vision-grid .large-card {
        grid-column: span 3;
    }
}

.bento-card {
    min-height: 300px;
}

/* Hours */
.hours-card {
    margin: 56px auto 0;
    max-width: 960px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 36px;
}

.hours-card .hours-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 640px;
}

.hours-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 174, 239, 0.35);
    background: rgba(0, 174, 239, 0.08);
    color: var(--accent-teal-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hours-eyebrow svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hours-card .hours-header h3 {
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
    line-height: 1.25;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: -0.01em;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hours-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.hours-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.25));
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hours-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 174, 239, 0.45);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.12);
}

.hours-tile .hours-day {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
}

.hours-tile .hours-time {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.3rem, 1rem + 1.2vw, 1.75rem);
    font-weight: 700;
    color: #f1f5f9;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.hours-tile .hours-time small {
    font-size: 0.6em;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.85);
    margin-left: 2px;
    letter-spacing: 0.04em;
}

.hours-tile .hours-time em {
    font-style: normal;
    color: var(--accent-teal);
    margin: 0 2px;
}

.hours-tile-closed .hours-time {
    color: rgba(148, 163, 184, 0.9);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hours-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.3;
    text-align: center;
}

.hours-note svg {
    color: var(--accent-gold);
    opacity: 0.85;
}

@media (max-width: 480px) {
    .hours-card {
        padding: 36px 20px;
        gap: 28px;
    }

    .hours-note {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}


/* Pricing */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 960px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Reset justify-end from glass-panel general rule */
}

.pricing-card.featured {
    border-color: var(--accent-teal);
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 174, 239, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pricing-card.featured:hover {
    border-color: var(--accent-teal-light);
    box-shadow: 
        0 0 40px rgba(0, 174, 239, 0.2),
        0 0 60px rgba(139, 92, 246, 0.1);
    transform: translateY(-8px) scale(1.02);
}

.badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 174, 239, 0.35);
    letter-spacing: 0.05em;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0, 174, 239, 0.6); }
}

.plan-name {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.plan-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-teal);
}

/* Booking Section */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.booking-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-card.featured-booking {
    border-color: var(--accent-teal);
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.1);
}

.booking-card.featured-booking::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 174, 239, 0.08), transparent);
    animation: shine 3s infinite;
}

.booking-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 174, 239, 0.35);
    letter-spacing: 0.05em;
}

.booking-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 174, 239, 0.3));
}

.booking-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.booking-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.booking-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.booking-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1rem;
}

.booking-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    width: 100%;
}

.booking-features li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.booking-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-teal);
    flex-shrink: 0;
}

.booking-card .btn {
    margin-top: auto;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.booking-card.featured-booking:hover {
    border-color: var(--accent-teal-light);
    box-shadow: 
        0 0 40px rgba(0, 174, 239, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

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

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.event-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.2), rgba(139, 92, 246, 0.1));
}

.event-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

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

.event-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.15), rgba(139, 92, 246, 0.1));
}

.event-image-placeholder::after {
    content: '🎉';
    font-size: 3rem;
    opacity: 0.4;
}

.event-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    line-height: 1;
    width: fit-content;
}

.event-date-badge .event-month {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date-badge .event-day {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.event-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-spots {
    font-weight: 600;
    color: var(--accent-teal);
}

.event-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.event-card.past-event {
    opacity: 0.55;
}

.event-card.past-event:hover {
    opacity: 0.8;
}

.event-past-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

.events-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.event-detail-modal {
    max-width: 600px;
    width: 90%;
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.event-detail-hero {
    width: 100%;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.event-detail-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.event-detail-body {
    padding: 28px 32px 32px;
}

.event-detail-body h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 0 0 16px;
    color: var(--text-primary);
}

.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.event-detail-meta .event-spots {
    color: var(--accent-teal);
    font-weight: 600;
}

.event-detail-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.event-detail-full {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 12px;
    padding: 16px 20px;
    background: rgba(14, 116, 144, 0.06);
    border-left: 3px solid var(--accent-teal);
    border-radius: 0 8px 8px 0;
}

.event-detail-divider {
    border: none;
    border-top: 1px solid var(--card-border);
    margin: 24px 0;
}

.event-detail-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 0 0 16px;
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .event-detail-body {
        padding: 20px;
    }
    .event-detail-hero {
        border-radius: 16px 16px 0 0;
    }
}

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

.plan-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 174, 239, 0.6);
    animation: featureDot 2s ease-in-out infinite;
}

@keyframes featureDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Lifestyle Section */
.lifestyle-grid {
    margin-bottom: 60px;
}

.lifestyle-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-teal);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    padding: 0;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.922);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(184, 184, 184, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Location */
.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 400px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .location-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
    }
    .location-text,
    .location-map {
        min-width: 0;
        flex: 1 1 300px;
    }
    .location-info {
        flex-basis: 100%;
    }
}

.location-text {
    flex: 1;
    min-width: 0;
}

.location-text h2 {
    margin-bottom: 12px;
}

.location-text .address {
    color: var(--text-secondary);
    margin-bottom: 8px;
    word-wrap: break-word;
}

.loc-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.location-map {
    flex: 1;
    height: 100%;
    min-height: 280px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.map-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

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

.map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    background: rgba(0, 0, 0, 0.65);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 174, 239, 0.3);
    transition: all 0.3s ease;
}

.map-link:hover .map-placeholder {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 174, 239, 0.55);
    transform: translate(-50%, -50%) scale(1.05);
}

.map-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.65);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    z-index: 2;
    pointer-events: none;
}

.map-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.location-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7);
    animation: locationPulse 2s infinite;
}

@keyframes locationPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 10px rgba(0, 174, 239, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
    }
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.info-item {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.info-item:hover {
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.1);
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--accent-teal);
}

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

.reference-link {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reference-link:hover {
    color: var(--accent-teal-light);
    text-decoration: underline;
}

.location-actions {
    margin-top: 20px;
}

.location-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    white-space: nowrap;
    text-align: center;
}

/* Location responsiveness */
@media (max-width: 991px) {
    .location-wrapper {
        gap: 24px;
    }
    .location-map {
        min-height: 260px;
    }
    .location-info {
        margin-top: 32px;
    }
}

@media (max-width: 767px) {
    .location-wrapper {
        min-height: auto;
        gap: 20px;
    }
    .location-text .address {
        font-size: 0.95rem;
    }
    .loc-details {
        flex-direction: column;
        gap: 4px;
    }
    .location-actions .btn {
        width: 100%;
        max-width: 320px;
        white-space: nowrap;
    }
    .location-info {
        margin-top: 24px;
        gap: 16px;
    }
    .info-item {
        padding: 20px;
    }
    .info-item h4 {
        font-size: 1.1rem;
    }
    .info-item p {
        font-size: 0.9rem;
    }
    .map-placeholder {
        padding: 16px 20px;
    }
    .map-placeholder p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .location-map {
        min-height: 220px;
    }
    .location-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    padding: 24px;
    cursor: pointer;
    justify-content: flex-start; /* Reset flex-end */
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    width: 100%;
}

.faq-content {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-content {
    margin-top: 16px;
    max-height: 200px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: var(--accent-teal);
}

.faq-item:hover {
    border-color: rgba(0, 174, 239, 0.3);
}

.faq-item.active {
    border-color: rgba(0, 174, 239, 0.5);
    background: rgba(0, 174, 239, 0.05);
}

.faq-content {
    max-height: 0;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.icon {
    transition: transform 0.3s;
    font-size: 1.5rem;
    line-height: 1;
}

/* Social / Instagram section */
.social-cta {
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.instagram-handle {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.instagram-handle:hover {
    color: var(--accent-purple);
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 60px 0;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 96px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.socials a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.3s;
}

.socials a {
    position: relative;
    transition: all 0.3s ease;
}

.socials a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.3), transparent);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.socials a:hover {
    color: var(--accent-teal);
    transform: translateY(-2px);
}

.socials a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Animations */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Newsletter Section */
.newsletter-section .section-header {
    text-align: center;
}

.newsletter-section .section-header p {
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-embed {
    max-width: 640px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: left;
}

.newsletter-embed iframe {
    border: none;
    width: 100%;
    min-height: 0;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .lifestyle-features {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-color);
    margin: auto;
    padding: 40px;
    border: 1px solid var(--card-border);
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-modal {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-teal);
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group select option {
    background: var(--bg-color);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.phone-input-group {
    display: flex;
    gap: 8px;
}

.phone-input-group .country-code-select {
    width: 120px;
    flex-shrink: 0;
    padding: 12px 8px;
    font-size: 0.9rem;
}

.phone-input-group input[type="tel"] {
    flex: 1;
    min-width: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.2);
}

.modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.field-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.extra-dates-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.extra-date-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.extra-date-row input[type="date"] {
    flex: 1;
}

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

.booking-offer-note,
.plan-offer {
    color: var(--accent-teal);
    font-size: 0.9rem;
    margin-top: 4px;
}

.booking-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding: 12px 16px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
}

.coupon-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.coupon-input-row input {
    flex: 1;
}

.coupon-message {
    margin-top: 6px;
    font-size: 0.85rem;
    min-height: 1.2em;
}

.coupon-message.success {
    color: var(--accent-teal);
}

.coupon-message.error {
    color: #f87171;
}

.booking-total-breakdown {
    margin-top: 12px;
    padding: 10px 16px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
}

.booking-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.booking-discount-line {
    color: var(--accent-teal);
}

.booking-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.booking-actions-row .btn {
    width: 100%;
    margin-top: 0;
    cursor: pointer;
}

.booking-actions-row .secondary-btn {
    border: 1.5px solid var(--accent-teal);
    color: var(--accent-teal);
    background: rgba(0, 174, 239, 0.08);
}

.booking-actions-row .secondary-btn:hover {
    background: rgba(0, 174, 239, 0.18);
}

.modal button[type="submit"] {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

#bookingMessage {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.success-message {
    color: #4ade80;
}

.error-message {
    color: #f87171;
}

/* ── Frequent Client Loyalty Section ── */

.loyalty-teaser {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.loyalty-teaser-copy h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.loyalty-teaser-copy p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.loyalty-teaser-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}

.loyalty-teaser-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.12);
    border: 1px solid rgba(0, 174, 239, 0.35);
    color: var(--accent-teal-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.loyalty-teaser-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.loyalty-teaser-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Mock wallet card illustration */
.loyalty-teaser-card {
    display: flex;
    justify-content: center;
}

.teaser-card {
    width: 100%;
    max-width: 340px;
    background: linear-gradient(135deg, #0e7490, #0891b2 60%, #155e75);
    border-radius: 20px;
    padding: 22px 24px;
    color: #f1f5f9;
    box-shadow:
        0 20px 40px -20px rgba(8, 145, 178, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    transform: perspective(900px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.4s ease;
}

.teaser-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.25), transparent 60%);
    pointer-events: none;
}

.loyalty-teaser-card:hover .teaser-card {
    transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.teaser-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.teaser-card-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.teaser-card-visits {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.75);
}

.teaser-card-visits strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0;
}

.teaser-card-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 28px 0 6px;
    position: relative;
    z-index: 1;
}

.teaser-card-reward {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.teaser-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.teaser-card-qr {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
}

.qr-grid {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, #0f172a 50%, transparent 50%),
        linear-gradient(0deg, #0f172a 50%, transparent 50%);
    background-size: 8px 8px, 8px 8px;
    background-position: 0 0, 4px 4px;
    opacity: 0.85;
    border-radius: 2px;
}

.teaser-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: right;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .loyalty-teaser {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
    }

    .teaser-card {
        transform: none;
    }

    .loyalty-teaser-card {
        order: -1;
    }
}

