/* ==========================================================================
   CSS Variables & Tokens (Upscale Resort Aesthetic)
   ========================================================================== */
:root {
    /* Colors - Deep Oceanic & Sand Gold */
    --primary-color: #D4AF37;       /* Champagne Gold */
    --primary-hover: #C5A059;
    --secondary-color: #0F2537;     /* Deep Oceanic Teal/Charcoal */
    --secondary-light: #183B56;
    --accent-color: #5B8B88;        /* Soft Spa Green/Teal */
    
    /* Neutrals */
    --text-main: #F5F5F5;
    --text-muted: #A0B0C0;
    --bg-main: #0A1924;
    --bg-light: #0D2030;
    --bg-dark: #050d14;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-pad: 80px 0;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(15, 37, 55, 0.1);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 8px;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

.section {
    padding: var(--section-pad);
}

.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mx-2 { margin-left: 1rem; margin-right: 1rem; }

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.header-divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto 2rem;
}

.header-divider-left {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0.5rem 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px; /* Squarish to match premium glassmorphism style */
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ==========================================================================
   Futuristic Navigation
   ========================================================================== */
.futuristic-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
    padding: 15px 30px;
    transition: all 0.5s ease;
    background: rgba(15, 37, 55, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.futuristic-nav.scrolled {
    top: 10px;
    padding: 10px 30px;
    background: rgba(15, 37, 55, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}

.glass-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.custom-svg-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    margin-right: 5px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.glass-links {
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 20px;
    border-radius: 12px; /* Squarish */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 0;
    white-space: nowrap;
}

.glass-links a:hover, .glass-links a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.glass-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--primary-color);
}

.glass-links a:hover::after, .glass-links a.active::after {
    width: 100%;
}

.nav-caret {
    font-size: 0.7rem;
    margin-left: 3px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.nav-phone {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--primary-color);
}

.cyber-btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px; /* Squarish */
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cyber-btn-small:hover {
    background: var(--primary-color);
    color: #0A1924;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Futuristic Hero Section
   ========================================================================== */
.futuristic-hero {
    position: relative;
    height: 70vh; /* Reduced from 100vh to avoid massive wasted space */
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    margin-top: 80px; /* Offset for fixed header */
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: blur(3px) brightness(0.8);
    transform: scale(1.05);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 36, 0.9) 0%, rgba(15, 37, 55, 0.6) 100%);
    z-index: 2;
}

.hero-content-glass {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    width: 100%;
}

.glass-hero-panel {
    background: rgba(15, 37, 55, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 20px rgba(255,255,255,0.05);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   Infinite Scrolling Ticker (Repeater)
   ========================================================================== */
.brand-ticker-container {
    background: #0A1924;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.brand-ticker {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 0 40px;
    white-space: nowrap;
}

.ticker-item i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .futuristic-hero { height: auto; padding: 60px 20px; margin-top: 60px; }
}

/* ==========================================================================
   Premium Services Section
   ========================================================================== */
.futuristic-services {
    background-color: #081119; /* Very dark slate/navy */
    position: relative;
    padding-bottom: 120px;
}

.text-gradient-gold {
    background: linear-gradient(to right, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-divider-center {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 2rem;
}

.services-intro-premium {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.intro-glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.intro-quote-icon {
    position: absolute;
    top: -15px;
    left: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    background: #081119;
    padding: 0 10px;
}

.intro-glass-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 5rem;
}

.premium-service-card {
    position: relative;
    background: rgba(15, 37, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.premium-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.service-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
    z-index: 0;
}

.premium-service-card:hover .service-glow-bg {
    width: 200%;
    height: 200%;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-icon-hex {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px; /* Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    transform: rotate(45deg);
}

.service-icon-hex i {
    transform: rotate(-45deg);
}

.premium-service-card:hover .service-icon-hex {
    background: var(--primary-color);
    color: #081119;
    transform: rotate(0deg);
}

.premium-service-card:hover .service-icon-hex i {
    transform: rotate(0deg);
}

.premium-service-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cyber-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cyber-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.premium-service-card:hover .cyber-link {
    color: var(--primary-color);
}

.premium-service-card:hover .cyber-link i {
    transform: translateX(5px);
}

/* VIP Memberships & Packages Grid */
.vip-cards-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.vip-credit-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 260px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}

.vip-credit-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-chip {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.card-contactless {
    position: absolute;
    top: 35px;
    right: 30px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.card-body h4 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.card-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-holder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Black Card styling */
.black-card {
    background: linear-gradient(135deg, #111 0%, #222 50%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.black-card .card-chip { color: #d4af37; } /* Gold chip */
.black-card .card-number { color: #d4af37; }

/* Crystal Card styling */
.crystal-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Action overlay */
.card-hover-action {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(8, 17, 25, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vip-credit-card:hover .card-hover-action {
    opacity: 1;
}

.card-hover-action h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-hover-action p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.gold-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.gold-outline:hover {
    background: var(--primary-color);
    color: #081119;
}

/* ==========================================================================
   Futuristic Banner Section
   ========================================================================== */
.futuristic-banner {
    background-color: var(--bg-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.banner-glass-panel {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.05);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.banner-glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.banner-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.banner-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.banner-disclaimer {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cyber-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px; /* Squarish for credit card aesthetic */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.cyber-btn-gold:hover {
    background: var(--primary-color);
    color: #0A1924;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

/* ==========================================================================
   Futuristic Mission Section
   ========================================================================== */
.futuristic-mission {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3c54 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.mission-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 1;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
    animation: pulseOrb 10s infinite alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    bottom: -150px;
    left: -100px;
    animation: pulseOrb 12s infinite alternate-reverse;
}

@keyframes pulseOrb {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

.mission-glass-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mission-glass-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.mission-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.glass-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-bottom: 30px;
}

.mission-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.mission-glass-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.glass-chamber-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(141, 198, 63, 0.1);
    border: 1px solid rgba(141, 198, 63, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.glass-chamber-badge .badge-icon {
    font-size: 2rem;
    color: #8DC63F;
    filter: drop-shadow(0 0 8px rgba(141, 198, 63, 0.4));
}

.glass-chamber-badge .badge-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.glass-chamber-badge .badge-text strong {
    color: #8DC63F;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.mission-image-wrapper {
    position: relative;
    padding: 20px;
}

.glass-image-frame {
    position: relative;
    border-radius: 24px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.glass-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.mission-image-inner {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.float-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: floatIcon 6s ease-in-out infinite;
}

.float-1 {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    top: -20px;
    right: -20px;
}

.float-2 {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    bottom: 40px;
    left: -30px;
    animation-delay: -3s;
}

@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .mission-glass-layout {
        grid-template-columns: 1fr;
    }
    
    .glass-image-frame {
        transform: none;
    }
    .glass-image-frame:hover {
        transform: scale(1.02);
    }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.platform-logo {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.platform-logo.vagaro { color: #f26b5b; }
.g-blue { color: #4285F4; }
.g-red { color: #DB4437; }
.g-yellow { color: #F4B400; }
.g-green { color: #0F9D58; }

.stars {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-avatar {
    font-size: 2rem;
    color: var(--secondary-light);
}

.client-details h4 {
    font-size: 1rem;
    margin-bottom: 0;
    font-family: var(--font-body);
}

.client-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Memorial Section
   ========================================================================== */
.memorial-section {
    background-color: var(--bg-main);
}

.memorial-content {
    max-width: 600px;
    margin: 0 auto;
}

.memorial-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.7;
}

.memorial-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.memorial-dates {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.memorial-quote {
    font-style: italic;
    color: var(--accent-color);
}

/* ==========================================================================
   Premium Footer (Regal Seal Style)
   ========================================================================== */
.site-footer {
    background-color: var(--secondary-color); /* Matches the navy header */
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-logo-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--font-body); /* Using sans-serif for modern bold look like Regal Seal */
}

.footer-blurb {
    margin-bottom: 25px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}

/* Footer Box (New Paver Install style) */
.footer-box {
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(255,255,255,0.02);
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: inline-block;
}

.box-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.box-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.box-link:hover {
    color: var(--primary-color);
}

/* Footer Badges (Checkmarks) */
.footer-badges {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-badges li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-badges li i {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

/* Clean Links List */
.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-list li {
    margin-bottom: 15px;
}

.clean-list a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition-fast);
}

.clean-list a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Hours List */
.hours-clean-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.hours-clean-list li:last-child {
    border-bottom: none;
}

.hours-clean-list .day {
    color: rgba(255,255,255,0.6);
}

.hours-clean-list .time {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Contact Column */
.hotline-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hotline-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.btn-footer-primary {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-footer-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.footer-map iframe {
    /* Map remains colorful */
}

.footer-bottom {
    padding: 25px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

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

.social-links-small a {
    color: rgba(255,255,255,0.4);
    margin: 0 10px;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-links-small a:hover {
    color: #fff;
}

/* ==========================================================================
   Futuristic Testimonials Section
   ========================================================================== */
.futuristic-section {
    position: relative;
    background-color: var(--bg-dark); /* Extremely dark, almost black for high contrast */
    overflow: hidden;
    padding: 100px 0;
    color: #fff;
}

/* Background animated glow blobs */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
    animation: floatBlob 15s infinite alternate ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.1); }
    100% { transform: translate(-50px, 100px) scale(0.9); }
}

.position-relative {
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.text-light {
    color: rgba(255, 255, 255, 0.7) !important;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Glassmorphism Carousel Wrapper */
.futuristic-carousel-wrapper {
    width: 100%;
    padding: 20px 0;
}

.futuristic-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.futuristic-carousel::-webkit-scrollbar {
    display: none;
}

/* Glass Card */
.glass-card {
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Subtle glow inside card on hover */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

.platform-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vagaro-badge {
    background: rgba(242, 107, 91, 0.15);
    color: #f26b5b;
    border: 1px solid rgba(242, 107, 91, 0.3);
}

.google-badge {
    background: rgba(66, 133, 244, 0.15);
    color: #8ab4f8;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.stars-glowing {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.glass-card .review-text {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.glass-card .client-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card .client-avatar {
    color: var(--primary-color);
    font-size: 2.5rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.glass-card .client-details h4 {
    color: #fff;
    font-family: var(--font-body);
}

.glass-card .client-details span {
    color: rgba(255, 255, 255, 0.5);
}

/* Glass Buttons */
.glass-btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.glow-btn {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.glow-btn:hover::after {
    opacity: 1;
}

/* ==========================================================================
   Futuristic Action Vouchers (Bottom of Testimonials)
   ========================================================================== */
.voucher-actions-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

.futuristic-voucher {
    position: relative;
    background: rgba(15, 37, 55, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    text-align: left;
}

.futuristic-voucher:hover {
    transform: translateY(-8px);
}

/* VIP Booking Pass */
.booking-voucher {
    border-left: 4px solid var(--accent-color);
}

.booking-voucher:hover {
    box-shadow: 0 15px 35px rgba(91, 139, 136, 0.2);
}

.voucher-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.voucher-chip i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.booking-voucher h3 {
    color: #fff;
    letter-spacing: 2px;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.booking-voucher p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.cyber-btn {
    position: relative;
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    overflow: hidden;
    z-index: 1;
    display: block;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.cyber-btn:hover::before {
    left: 0;
}

.cyber-btn:hover {
    color: #0A1924;
}

.voucher-barcode {
    height: 12px;
    width: 100%;
    margin-top: 25px;
    background: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.4) 2px,
        transparent 2px,
        transparent 4px,
        rgba(255, 255, 255, 0.4) 4px,
        rgba(255, 255, 255, 0.4) 5px,
        transparent 5px,
        transparent 8px
    );
    opacity: 0.5;
}

/* Golden Gift Certificate */
.gift-voucher {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.gift-voucher:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
}

.voucher-stamp {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.08);
    transform: rotate(15deg);
    pointer-events: none;
}

.gold-gradient-text {
    background: linear-gradient(to right, #F9D976, #E2B743, #F9D976);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.gift-voucher p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.inline-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 10px 10px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.voucher-value {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.gift-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    margin: 0; /* Override default */
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .quick-actions-grid { grid-template-columns: 1fr; }
    .mission-layout { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: block; }
    
    .hero-title { font-size: 3rem; }
    
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About Us Page Specifics
   ========================================================================== */
.about-hero {
    height: 50vh;
    min-height: 400px;
}

.futuristic-about-content {
    background: #081119;
    position: relative;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-glass-card {
    background: rgba(15, 37, 55, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.about-glass-card h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-glass-card p {
    margin-bottom: 15px;
}

.license-text {
    font-style: italic;
    color: var(--primary-color) !important;
    font-size: 0.9rem;
    margin-top: 20px;
}

.about-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0A1924;
    height: 100%;
    min-height: 400px;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.about-image-card:hover img {
    opacity: 1;
}

.location-hours-section {
    background: linear-gradient(135deg, #0A1924 0%, #081119 100%);
    padding: 100px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.glass-panel {
    background: rgba(15, 37, 55, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: #fff;
}

.info-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-block p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding-left: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
}

.service-area-banner {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 25px 40px;
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin-top: 60px;
    font-size: 1.1rem;
}

.service-area-banner strong {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .about-grid, .location-grid { grid-template-columns: 1fr; }
    .about-image-card { min-height: 300px; }
}

/* ==========================================================================
   OCM Club Page Specifics
   ========================================================================== */
.club-hero {
    height: 55vh;
    min-height: 450px;
}

.club-intro-section {
    background: #081119;
    padding: 80px 0 40px;
    text-align: center;
}

.club-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.pricing-section {
    background: linear-gradient(135deg, #0A1924 0%, #081119 100%);
    padding: 60px 0 100px;
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.vip-pricing-card {
    background: linear-gradient(145deg, rgba(20, 45, 65, 0.8) 0%, rgba(10, 25, 36, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vip-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0,0,0,0.6), 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
}

.vip-pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.card-tier-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-price-container {
    margin: 30px 0;
}

.card-price {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.card-currency {
    font-size: 2rem;
    margin-top: 10px;
    margin-right: 5px;
}

.card-decimals {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-left: 5px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.card-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-features li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.card-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-top: 20px;
}

.benefits-section {
    background: #081119;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.benefit-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.3s ease;
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.payments-contact-section {
    background: linear-gradient(to top, #0A1924, #081119);
    padding: 60px 0 100px;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.payment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-paypal {
    background: #00457C;
    border: 1px solid #0079C1;
}
.btn-paypal:hover { background: #0079C1; }

.btn-venmo {
    background: #008CFF;
    border: 1px solid #339FFF;
}
.btn-venmo:hover { background: #339FFF; }

.contact-banner {
    background: rgba(15, 37, 55, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 60px auto 0;
}

.contact-banner p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
}

@media (max-width: 900px) {
    .pricing-cards-container, .benefits-grid { grid-template-columns: 1fr; }
    .payment-methods { flex-direction: column; max-width: 300px; margin: 30px auto 0; }
}

/* ==========================================================================
   Blog Page Specifics
   ========================================================================== */
.blog-hero {
    height: 45vh;
    min-height: 350px;
}

.blog-section {
    background: linear-gradient(to bottom, #081119, #0A1924);
    padding: 80px 0 120px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: rgba(15, 37, 55, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-meta {
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.8);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-excerpt {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.blog-read-more i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-color);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

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

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

/* ==========================================================================
   Contact Page Specifics
   ========================================================================== */
.contact-hero {
    height: 40vh;
    min-height: 350px;
}

.contact-section {
    background: linear-gradient(135deg, #0A1924 0%, #081119 100%);
    padding: 80px 0;
}

.contact-panel {
    background: rgba(15, 37, 55, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    margin-top: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

/* Glassmorphic Form Elements */
.glass-form .form-group {
    margin-bottom: 25px;
}

.glass-form label {
    display: block;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.glass-form label .required {
    color: #e74c3c;
    margin-left: 4px;
}

.glass-form .form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-form .form-control:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.glass-form .form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

.glass-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.glass-form select.form-control option {
    background: #0A1924;
    color: #fff;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
}

.radio-group input[type="radio"] {
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Dark Mode Map */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.dark-map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) contrast(110%);
    transition: filter 0.5s ease;
}

/* Bottom Pain Section */
.pain-section {
    background: #081119;
    padding: 80px 0;
    text-align: center;
}

.pain-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.pain-image-card {
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(255,255,255,0.05);
}

.pain-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.pain-text {
    max-width: 800px;
    margin: 20px auto 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.pain-text strong {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .map-container { height: 350px; }
}

@media (max-width: 768px) {
    .contact-panel { padding: 30px 20px; }
    .pain-image-grid { grid-template-columns: 1fr; }
    .pain-image-card { height: 200px; }
}

/* ==========================================================================
   Memorial Section Specifics
   ========================================================================== */
.memorial-section {
    background: radial-gradient(circle at center, #0A1924 0%, #050a0f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.memorial-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.memorial-glass {
    background: rgba(10, 20, 30, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 40px rgba(212, 175, 55, 0.05);
    position: relative;
}

.memorial-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.memorial-portrait {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    padding: 5px;
    position: relative;
}

.memorial-portrait::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
    100% { transform: rotate(360deg); }
}

.memorial-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    filter: sepia(0.2) contrast(1.1);
}

.memorial-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.memorial-relation {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.memorial-dates {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.memorial-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.memorial-quote::before, .memorial-quote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    position: absolute;
    font-family: serif;
}

.memorial-quote::before {
    top: -20px;
    left: -30px;
}

.memorial-quote::after {
    bottom: -40px;
    right: -30px;
}

@media (max-width: 768px) {
    .memorial-glass { padding: 40px 20px; }
    .memorial-quote { font-size: 1.3rem; }
    .memorial-portrait { width: 150px; height: 150px; }
}

/* ==========================================================================
   Services Page Specifics
   ========================================================================== */
.services-hero {
    height: 50vh;
    min-height: 400px;
}

.services-list-section {
    background: #081119;
    padding: 80px 0;
}

.luxury-service-panel {
    background: rgba(15, 37, 55, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    margin-bottom: 60px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.luxury-service-panel.reverse {
    flex-direction: row-reverse;
}

.service-panel-image {
    width: 40%;
    position: relative;
    min-height: 400px;
}

.service-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-panel-image::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to right, transparent, rgba(15,37,55,0.8));
}
.luxury-service-panel.reverse .service-panel-image::after {
    background: linear-gradient(to left, transparent, rgba(15,37,55,0.8));
}

.service-panel-content {
    width: 60%;
    padding: 50px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-panel-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-meta {
    margin: 25px 0;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.service-meta p {
    margin-bottom: 10px;
}
.service-meta p:last-child {
    margin-bottom: 0;
}

.service-meta strong {
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.pricing-table {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pricing-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-pill .time {
    color: rgba(255,255,255,0.7);
}

.pricing-pill .price {
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Policies */
.policies-section {
    background: linear-gradient(135deg, #0A1924 0%, #081119 100%);
    padding: 80px 0;
}

.policies-panel {
    background: rgba(10, 25, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 60px;
}

.policies-panel h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 30px;
    font-size: 1.3rem;
}
.policies-panel h4:first-child { margin-top: 0; }

.policy-note {
    color: #e74c3c;
    font-style: italic;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

@media (max-width: 1024px) {
    .luxury-service-panel, .luxury-service-panel.reverse {
        flex-direction: column;
    }
    .service-panel-image, .service-panel-content {
        width: 100%;
    }
    .service-panel-image { min-height: 250px; }
    .service-panel-image::after {
        background: linear-gradient(to top, rgba(15,37,55,0.9), transparent) !important;
    }
    .actions-grid { grid-template-columns: 1fr; }
}

/* Mobile Fixes added via automation */
@media (max-width: 768px) {
    .voucher-actions-grid { flex-direction: column !important; }
    .nav-links.mobile-active, .nav-actions.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 25, 36, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 1000;
        align-items: center;
        gap: 15px;
    }
    .mobile-toggle { margin-left: auto; margin-right: 15px; }
}

/* Override sub-page hero heights on mobile */
@media (max-width: 768px) {
    .futuristic-hero,
    .about-hero,
    .services-hero,
    .club-hero,
    .blog-hero,
    .contact-hero {
        height: auto !important;
        min-height: auto !important;
        padding: 90px 20px 40px 20px !important;
    }
    .glass-hero-panel {
        padding: 40px 20px !important;
    }
}



/* FINAL MOBILE TIGHTENING */
@media (max-width: 768px) {
    body .futuristic-hero,
    body .about-hero,
    body .services-hero,
    body .club-hero,
    body .blog-hero,
    body .contact-hero {
        padding: 85px 10px 25px 10px !important;
        margin-top: 0 !important;
    }
    body .glass-hero-panel {
        padding: 25px 15px !important;
        margin-bottom: 0 !important;
    }
    body .hero-title {
        font-size: 2.1rem !important;
    }
}

/* Logo Mobile Spacing Fix */
@media (max-width: 768px) {
    .futuristic-nav, .futuristic-nav.scrolled {
        padding: 10px 15px !important;
    }
    .glass-logo {
        margin-left: -5px; 
    }
    .logo-text {
        font-size: 1.15rem !important;
        margin-right: 20px !important;
    }
}


/* Mobile Hero Buttons Full Width Fix */
@media (max-width: 768px) {
    body .hero-buttons .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box;
    }
}


/* Services Page Mobile Pricing Pills Grid */
@media (max-width: 768px) {
    body .pricing-table {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    body .pricing-pill {
        width: 100% !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2px !important;
        padding: 12px 10px !important; text-align: center !important;
    }
    body .pricing-pill .time {
        font-size: 0.8rem !important;
    }
    body .pricing-pill .price {
        font-size: 0.95rem !important;
    }
}

