/* ==========================================================================
   Atlantis Healing Premium Design System & Stylesheet
   ========================================================================== */

/* Google Fonts & Custom Variables */
:root {
    /* Color Palette - Deep Atlantean Waters & Cosmic Light */
    --bg-deep: #06070f;
    --bg-primary: #0a0b18;
    --bg-secondary: #11132e;
    --bg-glass: rgba(10, 12, 34, 0.6);
    --bg-glass-bright: rgba(18, 22, 58, 0.85);
    
    --accent-gold: #dfb76c;
    --accent-gold-dark: #b8914a;
    --accent-teal: #2ad4d4;
    --accent-teal-dark: #1b9e9e;
    
    --glow-teal: rgba(42, 212, 212, 0.4);
    --glow-gold: rgba(223, 183, 108, 0.35);
    
    --text-primary: #f0f4ff;
    --text-secondary: #a3afd5;
    --text-muted: #6e799c;
    --border-color: rgba(223, 183, 108, 0.15);
    --border-teal: rgba(42, 212, 212, 0.2);
    
    /* Layout & Shadows */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow-teal: 0 0 30px rgba(42, 212, 212, 0.3);
    --shadow-glow-gold: 0 0 30px rgba(223, 183, 108, 0.2);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-deep);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--accent-teal-dark) 50%, var(--accent-gold) 100%);
    border-radius: 5px;
    border: 2px solid var(--bg-deep);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-teal) 0%, var(--accent-gold) 100%);
}

/* Reusable Containers & Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4.5rem 0;
    position: relative;
    z-index: 2;
}

/* Atlantis Moving Background Canvas */
#atlantis-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0e122b 0%, #05060f 100%);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(42, 212, 212, 0.3);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), var(--shadow-glow-teal);
    transform: translateY(-5px);
}

/* Typography Elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #ffffff 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-teal);
    text-shadow: 0 0 10px rgba(42, 212, 212, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-teal);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(42, 212, 212, 0.5);
}

.badge {
    background: rgba(223, 183, 108, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(223, 183, 108, 0.15);
}

/* Beautiful Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-teal-dark) 100%);
    color: var(--bg-deep);
    box-shadow: var(--shadow-glow-teal);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: 0.6s ease;
}

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

.btn-primary:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 12px 35px var(--glow-teal);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: var(--shadow-glow-gold);
    transform: translateY(-2px);
    background: rgba(223, 183, 108, 0.05);
}

/* Glassmorphic Header / Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 7, 15, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(6, 7, 15, 0.85);
    border-bottom: 1px solid var(--border-teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    transition: var(--transition-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(180deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-nav {
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 105;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Active state for mobile toggle */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--accent-teal);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--accent-teal);
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-glass-bright);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-teal);
    z-index: 99;
    padding: 100px 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
}

.mobile-link:hover {
    color: var(--accent-teal);
    padding-left: 10px;
}

.btn-menu {
    margin-top: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-gold) 100%);
    color: var(--bg-deep);
}

/* ==========================================================================
   Hero Section Styles
   ========================================================================== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 1.5rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    animation: fadeInUp 1s var(--transition-smooth) forwards;
}

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

.hero-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(42, 212, 212, 0.4));
}

/* Crystal Float Visualizer */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.crystal-container {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crystal-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(42, 212, 212, 0.28) 0%, rgba(223, 183, 108, 0.1) 50%, transparent 70%);
    filter: blur(35px);
    z-index: 1;
}

.sacred-geometry-bg {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    z-index: 2;
    animation: rotateSlow 30s linear infinite;
    opacity: 0.65;
}

.crystal-img {
    width: 90%;
    max-width: 380px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 15px 45px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 35px var(--glow-teal));
}

/* Floating animation */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   About Section Styles
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

.about-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-info .highlight-paragraph {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefits-list {
    margin-top: 3rem;
    display: grid;
    gap: 1.8rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: rgba(42, 212, 212, 0.3);
}

.benefit-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-top: 0.2rem;
}

.benefit-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.benefit-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.about-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-card {
    border-left: 4px solid var(--accent-gold);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 8rem;
    color: rgba(223, 183, 108, 0.07);
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quote-author strong {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.quote-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.details-card {
    border-color: var(--border-teal);
    padding: 2rem 2.2rem;
}

.details-card-title {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(223, 183, 108, 0.15);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.details-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.details-card-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    padding-left: 1.2rem;
}

.details-card-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    text-shadow: 0 0 8px var(--glow-teal);
}

.about-effects {
    margin-top: 2.5rem;
    background: rgba(42, 212, 212, 0.03);
    border: 1px solid rgba(42, 212, 212, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.about-effects:hover {
    border-color: rgba(42, 212, 212, 0.25);
    background: rgba(42, 212, 212, 0.05);
}

.about-effects h4 {
    color: var(--accent-gold);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}

.effects-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.effects-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.effect-bullet {
    color: var(--accent-teal);
    font-weight: bold;
    text-shadow: 0 0 8px var(--glow-teal);
}

/* ==========================================================================
   Steps Section Styles (Kako Deluje)
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -25px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), transparent);
    z-index: 1;
    opacity: 0.4;
}

.steps-grid .step-card:last-child::before {
    display: none;
}

.step-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow-teal);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    color: rgba(42, 212, 212, 0.15);
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: rgba(42, 212, 212, 0.07);
    color: var(--accent-teal);
    border: 1px solid var(--border-teal);
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon {
    background: var(--accent-teal);
    color: var(--bg-deep);
    box-shadow: 0 0 15px var(--accent-teal);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   Pricing Section Styles
   ========================================================================== */
.pricing {
    background: radial-gradient(circle at 50% 100%, rgba(42, 212, 212, 0.05) 0%, transparent 60%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.pricing-card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-card-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    min-height: 48px;
}

.price {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price .duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-card-features {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-card-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pricing-card-features li {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-teal);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pricing-card-footer {
    text-align: center;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
}

/* Featured 3-Session Card Styles */
.pricing-card.featured {
    border-color: var(--accent-gold);
    background: rgba(18, 22, 56, 0.7);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow-gold);
    transform: scale(1.03);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 1.5px solid var(--accent-gold);
    pointer-events: none;
    box-shadow: inset 0 0 25px rgba(223, 183, 108, 0.15);
}

.featured-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-deep);
    padding: 0.5rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(223, 183, 108, 0.4);
    z-index: 10;
}

.pricing-card.featured .price .amount {
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(223, 183, 108, 0.2);
}

.pricing-card.featured .check-icon {
    color: var(--accent-gold);
}

.price-savings {
    background: rgba(42, 212, 212, 0.1);
    color: var(--accent-teal);
    border: 1px solid var(--border-teal);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

/* ==========================================================================
   Booking Section Styles
   ========================================================================== */
.glass-booking-container {
    background: var(--bg-glass-bright);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-teal);
    border-radius: 28px;
    box-shadow: var(--shadow-premium), 0 0 40px rgba(42, 212, 212, 0.05);
    padding: 4.5rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.booking-info h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.booking-info p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.booking-price-preview {
    background: rgba(6, 7, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem 0;
    align-items: center;
}

.preview-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.preview-value {
    text-align: right;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.price-highlight {
    color: var(--accent-gold);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(223, 183, 108, 0.2);
}

.preview-divider {
    grid-column: span 2;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.3rem 0;
}

.booking-guarantee {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guarantee-icon {
    font-size: 1.6rem;
}

.booking-guarantee p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.booking-guarantee p strong {
    color: var(--text-secondary);
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(6, 7, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23dfb76c' 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 1.2rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-teal);
    outline: none;
    box-shadow: 0 0 15px rgba(42, 212, 212, 0.15);
    background: rgba(6, 7, 15, 0.8);
}

.form-notice {
    background: rgba(223, 183, 108, 0.05);
    border: 1px solid rgba(223, 183, 108, 0.18);
    color: var(--text-secondary);
    padding: 1.1rem 1.4rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    padding: 1.1rem;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-teal);
}

.faq-item.active {
    border-color: var(--border-teal);
    background: rgba(18, 22, 56, 0.45);
    box-shadow: var(--shadow-glow-teal);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.6rem 2rem;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    outline: none;
}

.faq-arrow {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 2rem 1.8rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   Booking Success Modal
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(3, 4, 9, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    max-width: 550px;
    width: 100%;
    text-align: center;
    position: relative;
    border-color: var(--accent-teal);
    animation: scaleDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal.active .modal-content {
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
}

.modal-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
}

.modal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.modal-subtext {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 2rem !important;
}

.modal-details {
    background: rgba(6, 7, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem 1.6rem;
    margin-bottom: 2.2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-details p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.modal-details span {
    color: var(--text-primary);
    font-weight: 600;
}

.modal-details p:last-child span {
    color: var(--accent-gold);
}

.modal-btn-close {
    width: 100%;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer {
    background: #04050a;
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-teal);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.disclaimer {
    max-width: 850px;
    margin: 0 auto;
}

.disclaimer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.disclaimer p strong {
    color: var(--text-secondary);
}

/* ==========================================================================
   Animations & Transitions
   ========================================================================== */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleDown {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.85);
    }
}

/* Scroll Animation classes (applied via JS) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    section {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-card-wrapper {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .step-card::before {
        display: none; /* Hide arrows on tablets */
    }
    
    .glass-booking-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    /* Navbar styling for mobile */
    .mobile-toggle {
        display: flex;
    }
    
    .nav, .btn-nav {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1; /* Place crystal above text on mobile */
    }
    
    .about-card-wrapper {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .footer-brand, .footer-desc {
        align-items: center;
        max-width: 100%;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2.5rem 1.8rem;
    }
    
    .glass-booking-container {
        padding: 2rem 1.5rem;
    }
    
    .preview-value {
        font-size: 0.9rem;
    }
    
    .price-highlight {
        font-size: 1.3rem;
    }
}
