/* assets/css/style.css - Majestic Cyber-Gold & Sapphire Dark Theme for Fasin India */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-deep: #030611;        /* Deep space-black background */
    --bg-surface: #0a0f24;     /* Dark obsidian panels */
    --bg-card: rgba(10, 16, 36, 0.7); /* Semi-transparent glassmorphic slate */
    --border-glow: rgba(212, 175, 55, 0.15);
    
    --primary: #00f2fe;        /* Glowing High-Tech Neon Cyan */
    --primary-glow: rgba(0, 242, 254, 0.25);
    --secondary: #d4af37;     /* Bright Majestic Gold */
    --secondary-glow: rgba(212, 175, 55, 0.45);
    --sapphire: #3b82f6;       /* Sapphire Blue */
    
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #070a13;
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 32px;
    
    --glass: rgba(10, 16, 36, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* High-Impact Drifting Background Orbs */
.aurora-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    inset: 0;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.22;
    mix-blend-mode: screen;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.aurora-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 75%);
    top: 5%;
    right: -100px;
}

.aurora-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 75%);
    top: 38%;
    left: -200px;
    animation-delay: -3s;
    animation-duration: 20s;
}

.aurora-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 75%);
    bottom: 12%;
    right: -100px;
    animation-delay: -7s;
    animation-duration: 18s;
}

.floating-orb-1, .floating-orb-2 {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 1;
    animation: bounceOrb 18s infinite alternate ease-in-out;
}
.floating-orb-1 { top: 20%; left: 10%; }
.floating-orb-2 { bottom: 25%; right: 12%; animation-delay: -5s; }

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.18; }
    50% { transform: translate(7%, 12%) scale(1.15); opacity: 0.28; }
    100% { transform: translate(-5%, -6%) scale(0.9); opacity: 0.18; }
}

@keyframes bounceOrb {
    0% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-50px) translateX(30px) scale(1.2); }
    100% { transform: translateY(30px) translateX(-40px) scale(0.9); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.luxury-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    background: linear-gradient(135deg, var(--secondary) 30%, #fff7d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface);
    border: 2px solid var(--bg-deep);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Premium Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Scroll Reveal Base Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Glassmorphism Panels */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Dynamic 3D Cards with Glowing Mouse Border Glows */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.15s ease-out, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* dynamic tracking radial reflection */
.glass-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(circle 250px at var(--x, 0) var(--y, 0), rgba(0, 242, 254, 0.3), rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.glass-card:hover {
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 30px 60px rgba(0, 242, 254, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Gold card variant highlights */
.gold-card {
    border: 1px solid var(--border-glow);
}

.gold-card::before {
    background: radial-gradient(circle 250px at var(--x, 0) var(--y, 0), rgba(212, 175, 55, 0.45), rgba(0, 242, 254, 0.15) 50%, transparent 100%);
}

.gold-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Sheen sweep animation overlay */
.card-sheen-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-25deg);
    transition: 0.75s ease;
    z-index: 4;
    pointer-events: none;
}

.glass-card:hover .card-sheen-sweep, .resort-card:hover .card-sheen-sweep {
    left: 150%;
}

/* Header Navigation styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(3, 6, 17, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 105px;
    transition: var(--transition);
}

header.scrolled .navbar {
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
}

.logo span {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 8px 0;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
    transition: var(--transition);
}

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

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

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

/* Dynamic Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00b4d8 100%);
    color: var(--text-dark);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #b89327 100%);
    color: var(--text-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
    background: var(--secondary);
    color: var(--bg-deep);
    box-shadow: 0 0 20px var(--secondary-glow);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    background: radial-gradient(circle at 82% 28%, rgba(0, 242, 254, 0.18) 0%, transparent 60%),
                radial-gradient(circle at 18% 72%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
                var(--bg-deep);
}

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

.hero-title {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--secondary);
    display: inline-block;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

/* Auto-typing glowing title */
#auto-type-text {
    background: linear-gradient(to right, var(--primary) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* 3D Depth Image Frame in Hero */
.hero-image-wrapper {
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero-image-card {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 75px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-image-card {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
}

.hero-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,6,17,0.7) 0%, transparent 60%);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: 22px 26px;
    background: var(--bg-surface);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translateZ(50px);
    animation: bounceFloat 6s infinite alternate ease-in-out;
}

@keyframes bounceFloat {
    0% { transform: translateY(0) translateZ(40px); }
    100% { transform: translateY(-12px) translateZ(50px); }
}

/* Counters section */
.counters-section {
    padding: 55px 0;
    background: rgba(10, 16, 36, 0.55);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.counter-num {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.counter-num span {
    color: var(--secondary);
}

.counter-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
}

/* Resorts Catalog */
.resorts-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #00b4d8 100%);
    color: var(--text-dark);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
    transform: translateY(-2.5px);
}

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

/* 3D Resorts Cards */
.resort-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease-out, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Resorts border glow mouse-tracker */
.resort-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(circle 200px at var(--x, 0) var(--y, 0), rgba(212, 175, 55, 0.4), transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resort-card:hover::before {
    opacity: 1;
}

.resort-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.18);
}

.resort-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.resort-card:hover .resort-img {
    transform: scale(1.05) translateZ(10px);
}

.resort-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(3, 6, 17, 0.9);
    border: 1px solid var(--secondary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.resort-body {
    padding: 24px;
    background: var(--bg-surface);
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.resort-loc {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.resort-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.resort-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.resort-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--glass-border);
    padding-top: 16px;
}

.amenity-tag {
    font-size: 11px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    color: var(--text-muted);
}

/* Membership Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.plan-card {
    display: flex;
    flex-direction: column;
    padding: 45px 24px;
}

.plan-popular-tag {
    position: absolute;
    top: 24px;
    right: -32px;
    background: var(--secondary);
    color: var(--bg-deep);
    padding: 6px 36px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

.plan-name {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-white);
    transform: translateZ(30px);
}

.plan-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    transform: translateZ(40px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.plan-duration {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
    transform: translateZ(20px);
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
    transform: translateZ(10px);
}

.plan-features li {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
}

/* Testimonials Slider */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 50px 40px;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 28px;
    color: var(--text-white);
}

.testimonial-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    border: 2px solid var(--secondary);
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.testimonial-name {
    font-weight: 700;
    font-size: 16px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-bottom: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--secondary);
}

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

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 22px 24px;
    background: var(--bg-surface);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

.faq-header::after {
    content: '+';
    font-size: 20px;
    transition: var(--transition);
    color: var(--secondary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.1);
}

.faq-item.active .faq-header::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    background: rgba(10, 16, 36, 0.25);
    color: var(--text-muted);
}

.faq-item.active .faq-body {
    padding: 22px 24px;
    max-height: 200px;
}

/* Standard visual Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    background: rgba(3, 6, 17, 0.75);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Alert Notification styles */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 15px;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success);
    color: #a7f3d0;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--warning);
    color: #fde68a;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--danger);
    color: #fecaca;
}

.slide-in-down {
    animation: slideInDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Footer Section */
footer {
    background: #02040b;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-title {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-desc {
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 6px;
    text-shadow: 0 0 5px var(--secondary-glow);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact span {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* User Dashboard & Account Pages */
.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-top: 40px;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-item {
    margin-bottom: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-muted);
}

.sidebar-link:hover, .sidebar-link.active {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
}

.sidebar-link.active {
    border-left: 3px solid var(--secondary);
    background: rgba(212, 175, 55, 0.05);
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Stats visual widget */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Visual Tables */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
}

.custom-table th {
    padding: 16px 20px;
    border-bottom: 2px solid var(--glass-border);
    color: var(--text-muted);
    font-weight: 600;
}

.custom-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-white);
}

.custom-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Badges for status */
.badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success { background: rgba(16, 185, 129, 0.15); color: var(--success); border: 1px solid var(--success); }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: var(--warning); border: 1px solid var(--warning); }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: var(--danger); border: 1px solid var(--danger); }
.badge-info { background: rgba(0, 242, 254, 0.15); color: var(--primary); border: 1px solid var(--primary); }

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .navbar {
        height: 90px;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-links a {
        font-size: 13px;
        letter-spacing: 0.2px;
    }
    .logo img {
        height: 42px !important;
    }
    .nav-actions {
        gap: 8px;
    }
    .nav-actions .user-greeting {
        display: none;
    }
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .resorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-title {
        font-size: 46px;
    }
    .hero-image-card {
        transform: none !important;
    }
    .hero-floating-card {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        display: none; /* Dynamic in JS */
    }
    .plans-grid, .resorts-grid, .counters-grid, .footer-grid, .dashboard-grid, .stats-row {
        grid-template-columns: 1fr;
    }
}
