/* ====================================
   אורם - Premium Design System
   Version 3.0 - Luxe Memorial Service
   ==================================== */

/* CSS Variables - Ultra Premium Design System */
:root {
    /* Primary Brand Colors - Refined */
    --primary-color: #1a5f7a;
    --primary-dark: #134b61;
    --primary-darker: #0d3d4d;
    --primary-light: #2a8faa;
    --primary-lighter: #3ba5c2;
    --primary-gradient: linear-gradient(135deg, #1a5f7a 0%, #2a8faa 100%);
    
    /* Secondary & Accent Colors - Luxe Gold */
    --secondary-color: #c9a227;
    --secondary-dark: #b08d1f;
    --secondary-light: #ddb94c;
    --gold-light: #f7eed7;
    --gold-lighter: #faf6ec;
    --gold-accent: #e8c547;
    
    /* Gradients - Ultra Premium */
    --gold-gradient: linear-gradient(135deg, #c9a227 0%, #e8c547 25%, #f7eed7 50%, #e8c547 75%, #c9a227 100%);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(247, 238, 215, 0.3) 100%);
    --background-gold: linear-gradient(180deg, #faf6ec 0%, #f0e8d5 100%);
    --premium-gradient: linear-gradient(135deg, #1a5f7a 0%, #2a8faa 50%, #1a5f7a 100%);
    --hero-gradient: linear-gradient(135deg, rgba(26, 95, 122, 0.94) 0%, rgba(13, 61, 77, 0.97) 100%);
    --elegant-gradient: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 50%, #1a5f7a 100%);
    --whatsapp-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Text Colors - Refined */
    --text-dark: #1a1a2e;
    --text-medium: #3d4f5f;
    --text-light: #ffffff;
    --text-muted: #6b7c8a;
    --text-subtle: #94a3b3;
    
    /* Shadows - Luxe Layered */
    --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-light: 0 4px 25px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 50px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 80px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 60px rgba(201, 162, 39, 0.3);
    --shadow-glow-primary: 0 0 60px rgba(26, 95, 122, 0.25);
    --shadow-elevated: 0 30px 100px rgba(0, 0, 0, 0.2);
    --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow-card-hover: 0 30px 80px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-inset: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    
    /* Border Radius - Refined Modern */
    --border-radius-sm: 12px;
    --border-radius: 20px;
    --border-radius-lg: 32px;
    --border-radius-xl: 48px;
    --border-radius-full: 9999px;
    
    /* Spacing - Harmonious */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --spacing-2xl: 120px;
    
    /* Transitions - Silk Smooth */
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Typography */
    --font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.75rem;
    --font-size-5xl: 3.5rem;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    
    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-overlay: 1500;
    --z-modal: 2000;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-normal);
    color: var(--text-dark);
    background: #faf9f7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Elegant Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(201, 162, 39, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(26, 95, 122, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Selection Styling */
::selection {
    background: var(--secondary-color);
    color: var(--text-light);
}

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

::-webkit-scrollbar-track {
    background: #f0ebe3;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    border: 2px solid #f0ebe3;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

/* Typography - Refined */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    font-weight: 800;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700;
}

h3 { 
    font-size: clamp(1.4rem, 3vw, 1.875rem); 
    font-weight: 600;
}

h4 { 
    font-size: 1.25rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: var(--line-height-relaxed);
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles - Premium */
.section {
    padding: 100px 0;
    position: relative;
}

.section-gold {
    background: linear-gradient(180deg, #faf6ec 0%, #f0e8d5 50%, #faf6ec 100%);
    position: relative;
}

.section-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 95, 122, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 4px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-subtitle {
    display: inline-block;
    background: var(--gold-gradient-subtle);
    color: var(--secondary-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.text-center {
    text-align: center;
}

/* Buttons - Premium Refined */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

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

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

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(26, 95, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(26, 95, 122, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-light);
    transform: translateY(-4px);
}

.btn-white {
    background: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-outline-white:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-4px);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.5);
}

/* ====================================
   Header & Navigation - Premium
   ==================================== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 1px 0 rgba(201, 162, 39, 0.1);
    transition: var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 1;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 14px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    background: transparent;
    transition: var(--transition);
}

.logo:hover {
    background: rgba(201, 162, 39, 0.05);
}

.logo img {
    height: 60px;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.3));
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(201, 162, 39, 0.4));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 8px 0;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(201, 162, 39, 0.1);
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ====================================
   Hero Section - Luxe Premium
   ==================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--hero-gradient), 
                url('https://images.unsplash.com/photo-1475503572774-15a45e5d60b9?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    padding-top: 90px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at center bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(250, 249, 247, 1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Candle Animation - Refined */
.candle-animation {
    margin: 0 auto 40px;
    position: relative;
    width: 70px;
    height: 160px;
}

.candle-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 90px;
    background: linear-gradient(180deg, #f8f4ea 0%, #e8e0d0 100%);
    border-radius: 4px 4px 6px 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.candle-body::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 1px;
}

.flame {
    position: absolute;
    bottom: 105px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 45px;
    background: 
        radial-gradient(ellipse at center bottom, #fff 0%, transparent 60%),
        linear-gradient(180deg, #ff6b35 0%, #ffd93d 40%, rgba(255,255,255,0.9) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1.5s infinite ease-in-out;
    box-shadow: 
        0 0 40px rgba(255, 217, 61, 0.8), 
        0 0 80px rgba(255, 107, 53, 0.6), 
        0 0 120px rgba(255, 107, 53, 0.4);
}

@keyframes flicker {
    0%, 100% {
        transform: translateX(-50%) scale(1) rotate(-1deg);
        opacity: 1;
    }
    25% {
        transform: translateX(-50%) scale(1.03) rotate(1deg);
        opacity: 0.97;
    }
    50% {
        transform: translateX(-50%) scale(0.97) rotate(-0.5deg);
        opacity: 1;
    }
    75% {
        transform: translateX(-50%) scale(1.02) rotate(1.5deg);
        opacity: 0.98;
    }
}

.hero h1 {
    color: var(--text-light);
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 50px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    opacity: 0.8;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* ====================================
   Features Section - Luxe Premium
   ==================================== */
.features {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 35px 45px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-spring);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, var(--gold-pale) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(201, 162, 39, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-card:hover::after {
    opacity: 0.5;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    transition: var(--transition-spring);
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.4;
}

.feature-card:hover .feature-icon i {
    color: var(--text-light);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.35rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1.02rem;
}

/* ====================================
   How It Works Preview - Premium
   ==================================== */
.steps-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--bg-primary);
    padding: 45px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border: 1px solid var(--border-color);
}

.step-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
    opacity: 0;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-light);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.35);
    transition: var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(26, 95, 122, 0.45);
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====================================
   Testimonials - Luxe Premium
   ==================================== */
.testimonials {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--gold-pale) 50%, var(--bg-secondary) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 45px 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: var(--transition-spring);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 100%);
    border-radius: 0 var(--border-radius-lg) 0 100%;
    opacity: 0.8;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(201, 162, 39, 0.3);
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 3.5rem;
    color: var(--secondary-color);
    opacity: 0.25;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.3);
    transition: var(--transition);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
}

.author-avatar i {
    font-size: 1.7rem;
    color: var(--text-light);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 4px;
    font-weight: 700;
}

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

/* ====================================
   CTA Section - Luxe Premium
   ==================================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.15) 0%, transparent 50%);
    animation: cta-glow 10s linear infinite;
}

@keyframes cta-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--text-light);
    margin-bottom: 18px;
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.cta p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====================================
   Footer - Luxe Premium
   ==================================== */
.footer {
    background: linear-gradient(180deg, #1a3a4a 0%, #0f2832 100%);
    color: var(--text-light);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 168, 83, 0.4);
    border-color: var(--secondary-color);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

/* ====================================
   About Page Styles - Premium
   ==================================== */
.page-hero {
    padding: 160px 0 90px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--gold-pale) 100%);
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 800;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Premium Hero Styles */
.page-hero.premium-hero {
    padding: 150px 0 110px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #0d3d4d 100%);
    position: relative;
    overflow: hidden;
}

.page-hero.premium-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: float-glow 15s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.page-hero.premium-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero.premium-hero .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero.premium-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero.premium-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.35) 0%, rgba(201, 162, 39, 0.15) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.page-hero.premium-hero .hero-badge i {
    color: var(--secondary-color);
}

.page-hero.premium-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.page-hero.premium-hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.page-hero.premium-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.page-hero.premium-hero .hero-stat {
    text-align: center;
}

.page-hero.premium-hero .hero-stat .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.page-hero.premium-hero .hero-stat .stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
}

/* Mission Statement Section - Premium */
.mission-statement {
    background: linear-gradient(135deg, var(--gold-light) 0%, #e8d5b0 50%, var(--gold-pale) 100%);
    padding: 100px 0;
    position: relative;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
}

.mission-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.mission-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    box-shadow: 0 15px 40px rgba(26, 95, 122, 0.35);
    transition: var(--transition);
}

.mission-icon:hover {
    transform: scale(1.05);
}

.mission-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.mission-content blockquote {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 25px;
}

.mission-content cite {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 500;
}

/* Section Label - Premium */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-pale) 100%);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.section-label i {
    color: var(--secondary-color);
}

/* About Features List */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    background: var(--gold-pale);
    border-radius: 30px;
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.about-feature i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* Image Frame with Badge - Premium */
.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.image-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    transition: var(--transition);
}

.image-badge:hover {
    transform: translateY(-3px);
}

.image-badge i {
    color: var(--secondary-color);
}

/* Premium Value Cards */
.values-grid.premium-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.values-grid.premium-cards .value-card {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.values-grid.premium-cards .value-card .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: var(--transition);
}

.values-grid.premium-cards .value-card:hover .card-glow {
    opacity: 1;
}

.values-grid.premium-cards .value-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.values-grid.premium-cards .value-card .card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), #e8b94d);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.values-grid.premium-cards .value-card .card-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.values-grid.premium-cards .value-card .card-footer span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.values-grid.premium-cards .value-card .card-footer i {
    color: var(--secondary-color);
}

.about-intro {
    background: #fff;
}

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

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text p.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    background: var(--gold-light);
    border-radius: var(--border-radius);
    padding: 60px;
    text-align: center;
    border: 3px solid var(--secondary-color);
}

.about-image-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Responsive Premium Hero */
@media (max-width: 768px) {
    .page-hero.premium-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero.premium-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero.premium-hero p {
        font-size: 1rem;
    }
    
    .page-hero.premium-hero .hero-stats {
        gap: 30px;
    }
    
    .page-hero.premium-hero .hero-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .mission-content blockquote {
        font-size: 1.2rem;
    }
    
    .values-grid.premium-cards {
        grid-template-columns: 1fr;
    }
    
    .values-grid.premium-cards .value-card.featured {
        transform: none;
    }
    
    .about-features {
        flex-direction: column;
    }
}

/* Values Section - Premium */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.value-card {
    background: var(--bg-primary);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-light);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.value-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-card:hover .value-icon i {
    color: var(--text-light);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Team Section - Premium */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.team-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.team-photo {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.team-photo i {
    font-size: 4.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 700;
}

.team-info span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.team-info p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ====================================
   How It Works Page - Premium
   ==================================== */

/* Hero Process Preview */
.hero-process-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.process-mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.process-mini-step .mini-step-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-spring);
}

.process-mini-step.active .mini-step-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8912a 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.45);
}

.process-mini-step span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
}

.process-mini-step.active span {
    color: var(--secondary-color);
    font-weight: 700;
}

.process-arrow {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
}

.process-section {
    background: var(--bg-primary);
}

.process-timeline {
    max-width: 950px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 45px;
    margin-bottom: 70px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    right: 44px;
    top: 90px;
    width: 3px;
    height: calc(100% + 25px);
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-pale) 100%);
    border-radius: 3px;
}

.process-step:last-child::before {
    display: none;
}

.process-number {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    font-size: 2.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 35px rgba(26, 95, 122, 0.35);
    transition: var(--transition);
}

.process-step:hover .process-number {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(26, 95, 122, 0.45);
}

.process-content {
    flex: 1;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border: 1px solid var(--border-color);
}

.process-content:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-light);
}

.process-content h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: 1.4rem;
    font-weight: 700;
}

.process-content p {
    color: var(--text-dark);
    line-height: 1.85;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-process-preview {
        gap: 12px;
    }
    
    .process-mini-step .mini-step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .process-mini-step span {
        font-size: 0.78rem;
    }
    
    .process-arrow {
        font-size: 0.75rem;
    }
}

/* Service/App Preview - Premium */
.app-preview {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--gold-pale) 50%, var(--bg-secondary) 100%);
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.app-feature {
    background: var(--bg-primary);
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border: 1px solid var(--border-color);
}

.app-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-light);
}

.app-feature i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.app-feature:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.app-feature h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

/* FAQ Section - Premium */
.faq-section {
    background: var(--bg-primary);
}

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

.faq-item {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--bg-secondary) 100%);
    margin-bottom: 18px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    padding: 28px 35px;
    background: none;
    border: none;
    text-align: right;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question i {
    transition: var(--transition-spring);
    color: var(--secondary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 35px 28px;
    color: var(--text-dark);
    line-height: 1.85;
}

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

/* ====================================
   Products Page - Premium
   ==================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(201, 162, 39, 0.3);
}

.product-image {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.product-image i {
    font-size: 5.5rem;
    color: var(--primary-color);
    opacity: 0.85;
    transition: var(--transition);
}

.product-card:hover .product-image i {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8912a 100%);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
    z-index: 1;
}

.product-info {
    padding: 35px;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.3rem;
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.7;
}

.product-price {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 22px;
}

.product-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.product-features {
    margin-bottom: 28px;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ====================================
   Stories Page
   ==================================== */
/* ====================================
   Stories Page - Premium Styles
   ==================================== */

/* Hero Testimonial Preview */
.hero-testimonial-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-avatars {
    display: flex;
    align-items: center;
}

.testimonial-avatars .avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-right: -12px;
}

.testimonial-avatars .avatar.more {
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-color: var(--secondary-color);
}

.hero-testimonial-preview span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Featured Story Card */
.featured-story {
    background: #fff;
}

.featured-story-card {
    position: relative;
    background: linear-gradient(135deg, var(--gold-light) 0%, #e8d5b0 100%);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

.featured-story-card .featured-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-story-card .featured-badge i {
    color: var(--secondary-color);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.featured-image:hover .image-overlay {
    opacity: 1;
}

.featured-image .play-btn {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-image .image-overlay span {
    color: #fff;
    font-weight: 500;
}

.featured-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-quote {
    position: relative;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border-right: 4px solid var(--secondary-color);
}

.story-quote i {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    opacity: 0.3;
}

.story-quote p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}

.featured-text p {
    line-height: 1.9;
    margin-bottom: 15px;
}

.story-author-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.story-author-info .author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(26, 95, 122, 0.3);
}

.story-author-info .author-details h4 {
    color: var(--primary-color);
    margin-bottom: 2px;
}

.story-author-info .author-details span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.story-stats {
    display: flex;
    gap: 25px;
    margin-right: auto;
}

.story-stats .stat {
    text-align: center;
}

.story-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.story-stats .stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .featured-story-card {
        padding: 30px 20px;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    .featured-text h2 {
        font-size: 1.5rem;
    }
    
    .story-stats {
        margin-right: 0;
        width: 100%;
        justify-content: space-around;
        margin-top: 15px;
    }
    
    .hero-testimonial-preview {
        flex-direction: column;
        gap: 10px;
    }
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.story-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.story-image {
    background: var(--gold-light);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.story-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--gold-light);
}

.story-author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-author-avatar i {
    color: var(--text-light);
    font-size: 1.2rem;
}

.story-author-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 3px;
}

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

/* ====================================
   Contact Page - Premium Styles
   ==================================== */

/* Hero Contact Options */
.hero-contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-quick-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-quick-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact-quick-btn.whatsapp {
    background: rgba(37, 211, 102, 0.3);
    border-color: rgba(37, 211, 102, 0.5);
}

.contact-quick-btn.whatsapp:hover {
    background: #25D366;
}

.contact-quick-btn i {
    font-size: 1.2rem;
}

.contact-section {
    background: #fff;
}

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

/* Premium Contact Cards */
.contact-info-card.premium-card {
    background: linear-gradient(135deg, var(--gold-light) 0%, #e8d5b0 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-info-card.premium-card:hover {
    box-shadow: var(--shadow-medium);
}

.contact-info-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-card .card-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(26, 95, 122, 0.3);
}

.contact-info-card .card-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.contact-info-card .card-description {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon.whatsapp {
    background: #25D366;
}

.contact-item-icon i {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-item-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-item-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-item-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-content a:hover {
    color: var(--primary-color);
}

/* Social Links Grid */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.social-link i {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.social-link.facebook i { background: #1877f2; }
.social-link.instagram i { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.youtube i { background: #ff0000; }
.social-link.linkedin i { background: #0077b5; }

/* Responsive */
@media (max-width: 768px) {
    .hero-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-quick-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--gold-light);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-form {
    background: linear-gradient(135deg, var(--gold-light) 0%, #e8d5b0 100%);
    padding: 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-family);
    background: #fff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-family: var(--font-family);
}

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

/* Map Placeholder */
.map-section {
    background: var(--gold-light);
}

.map-placeholder {
    background: #fff;
    height: 400px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.map-placeholder p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ====================================
   Mobile Responsive
   ==================================== */
@media (max-width: 992px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step::before {
        display: none;
    }
    
    .process-number {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header {
        overflow: visible;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: #fff;
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        transition: var(--transition);
        z-index: 9999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .nav-toggle {
        display: flex !important;
        position: relative;
        right: auto;
        z-index: 10000;
        flex-shrink: 0;
        /* Ensure button is tappable on mobile */
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        touch-action: manipulation;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
        background: rgba(26, 95, 122, 0.1);
        border-radius: 8px;
        pointer-events: auto !important;
        isolation: isolate;
    }
    
    .nav-toggle:active {
        background: rgba(26, 95, 122, 0.2);
    }
    
    /* Move nav-auth to the left side on mobile */
    .nav-auth {
        position: absolute !important;
        left: 15px !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 9998;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar .container {
        position: relative;
        min-height: 55px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .logo:hover {
        background: transparent;
        box-shadow: none;
    }

    .logo img {
        height: 55px;
        filter: drop-shadow(0 6px 20px rgba(212, 168, 83, 0.5));
    }

    .logo:hover img {
        transform: scale(1.1);
        filter: drop-shadow(0 8px 30px rgba(212, 168, 83, 0.7));
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .product-info,
    .contact-form,
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .process-content {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll padding for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Selection color */
::selection {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta,
    .scroll-indicator {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}

/* ====================================
   Advanced Animations & Effects
   ==================================== */

/* Floating particles animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Glow pulse effect */
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 83, 0.4); }
    50% { box-shadow: 0 0 40px rgba(212, 168, 83, 0.8); }
}

/* Shimmer effect */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Scale pulse */
@keyframes scale-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Gradient animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fade in up advanced */
@keyframes fadeInUpAdvanced {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Rotate in */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced container with z-index */
.container {
    position: relative;
    z-index: 1;
}

/* Section with relative positioning */
.section {
    position: relative;
    z-index: 1;
}

/* Glassmorphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover lift effect */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
}

/* Gradient text */
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated gradient background */
.animated-gradient {
    background: linear-gradient(270deg, #d4a853, #f5e6c8, #d4a853, #f5e6c8);
    background-size: 800% 800%;
    animation: gradient-shift 10s ease infinite;
}

/* Particle decoration */
.particle-decoration {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/* Enhanced feature cards with hover effects */
.feature-card {
    position: relative;
    overflow: visible;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
    background: var(--gold-gradient);
    z-index: -1;
    transform: scale(1.05);
}

.feature-card:hover::after {
    opacity: 0.1;
}

/* Enhanced buttons with ripple effect */
.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced hero with particles */
.hero {
    position: relative;
    isolation: isolate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 168, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 95, 122, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Enhanced flame animation */
.flame {
    filter: drop-shadow(0 0 20px rgba(255, 215, 61, 0.8));
}

/* Story cards with image background */
.story-card {
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05) 0%, rgba(26, 95, 122, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

/* Testimonial cards with elegant styling */
.testimonial-card {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

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

/* Product cards with advanced styling */
.product-card {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
}

.product-card:hover {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* CTA section with animated background */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

/* Enhanced section headers */
.section-header h2 {
    position: relative;
    display: inline-block;
    animation: fadeInUpAdvanced 1s ease;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    opacity: 0.5;
}

/* Loading animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner {
    border: 3px solid rgba(212, 168, 83, 0.3);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Smooth reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Parallax elements */
.parallax-element {
    transition: transform 0.3s ease-out;
}

/* Image hover zoom */
.image-zoom-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.image-zoom-wrapper img {
    transition: var(--transition-slow);
}

.image-zoom-wrapper:hover img {
    transform: scale(1.1);
}

/* Text gradient animation */
.animated-text-gradient {
    background: linear-gradient(90deg, #d4a853, #f5e6c8, #d4a853, #f5e6c8);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Floating decorative elements */
.floating-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1), transparent);
    animation: float-around 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-around {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(0, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

/* Enhanced scroll indicator */
.scroll-indicator {
    animation: bounce 2s infinite, glow-pulse 3s ease-in-out infinite;
}

/* Feature card improvements */
.feature-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

/* Testimonial card improvements */
.testimonial-card {
    backdrop-filter: blur(10px);
}

/* Step card improvements */
.step-card {
    backdrop-filter: blur(5px);
}

/* Community Section - NEW */
.community-section {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 200, 0.97) 100%),
                      url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-elevated);
    border-color: var(--secondary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ====================================
   Advanced Hero Slider Styles - Premium v3.0
   ==================================== */
.hero-slider {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out, transform 10s ease-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, rgba(250, 249, 247, 1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(201, 162, 39, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 40%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.hero-contents {
    position: relative;
    min-height: 520px;
}

.hero-content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-content-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease forwards;
    letter-spacing: 0.3px;
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-icon-large {
    width: 130px;
    height: 130px;
    margin: 0 auto 35px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.25);
    animation: scaleIn 0.8s ease forwards;
    transition: var(--transition-spring);
}

.hero-icon-large:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.18);
}

.hero-icon-large i {
    font-size: 3.8rem;
    color: var(--text-light);
}

@keyframes scaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.hero-slider .candle-animation {
    margin: 0 auto 35px;
    position: relative;
    width: 70px;
    height: 160px;
}

.hero-slider .candle-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 90px;
    background: linear-gradient(180deg, #f8f4ea 0%, #e8e0d0 100%);
    border-radius: 4px 4px 6px 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero-slider .candle-body::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 1px;
}

.hero-slider .flame {
    position: absolute;
    bottom: 105px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 45px;
    background: 
        radial-gradient(ellipse at center bottom, #fff 0%, transparent 60%),
        linear-gradient(180deg, #ff6b35 0%, #ffd93d 40%, rgba(255,255,255,0.9) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1.5s infinite ease-in-out;
    box-shadow: 
        0 0 40px rgba(255, 217, 61, 0.8), 
        0 0 80px rgba(255, 107, 53, 0.6), 
        0 0 120px rgba(255, 107, 53, 0.4);
}

.hero-title {
    color: var(--text-light);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-title.glowing-text {
    animation: text-glow 4s ease-in-out infinite alternate;
}

@keyframes text-glow {
    from { text-shadow: 0 4px 25px rgba(0, 0, 0, 0.35), 0 0 25px rgba(201, 162, 39, 0.25); }
    to { text-shadow: 0 4px 25px rgba(0, 0, 0, 0.35), 0 0 65px rgba(201, 162, 39, 0.55); }
}

.hero-slider .hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.hero-slider .hero-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.hero-slider .hero-description strong {
    color: var(--text-light);
    font-weight: 600;
}

.hero-slider .hero-buttons {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Buttons Enhanced - Premium Compact */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c547 100%);
    color: var(--primary-dark);
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-spring);
    border: none;
    box-shadow: 0 10px 35px rgba(201, 162, 39, 0.35);
    letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #e8c547 0%, var(--secondary-color) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(201, 162, 39, 0.45);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-spring);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    letter-spacing: 0.3px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-light);
    transform: translateY(-4px);
}

/* Slider Controls - Premium Redesigned */
.hero-slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 0 20px;
}

/* Arrows positioned on sides */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 25;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slider-arrow.slider-prev {
    left: 30px;
}

.slider-arrow.slider-next {
    right: 30px;
}

.slider-arrow i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.4);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Dots centered at bottom */
.slider-dots {
    display: flex;
    gap: 14px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: transparent;
    border: 2px solid var(--secondary-color);
    transform: scale(1.2);
}

.slider-dot.active::before {
    border-color: rgba(201, 162, 39, 0.4);
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.hero-progress-bar {
    height: 100%;
    background: var(--gold-gradient);
    width: 0;
    transition: width 0.1s linear;
}

/* Scroll Indicator Enhanced */
.hero-slider .scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 20;
    opacity: 0.85;
    transition: var(--transition);
    background: transparent;
    text-align: center;
}

.hero-slider .scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.hero-slider .scroll-indicator span {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-slider .scroll-indicator i {
    animation: bounce 2s infinite;
}

/* Floating Elements - Premium */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-candle {
    position: absolute;
    font-size: 1.6rem;
    color: rgba(201, 162, 39, 0.5);
    animation: float-candle 7s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

.floating-3 {
    top: 40%;
    left: 8%;
    animation-delay: 5s;
}

@keyframes float-candle {
    0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.5; }
    50% { transform: translateY(-25px) rotate(5deg); opacity: 0.9; }
}

/* Value Bar - Premium Elevated */
.value-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3d4e 50%, var(--primary-dark) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 90% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 35%);
    pointer-events: none;
}

.value-bar::after {
    display: none;
}

.value-bar-items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    transition: var(--transition);
    padding: 22px 35px;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:last-child {
    border-left: none;
}

.value-item:hover {
    background: rgba(201, 162, 39, 0.15);
    transform: none;
}

.value-item i {
    font-size: 1.4rem;
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.value-item span {
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* ====================================
   Enhanced Section Header - Premium Luxe
   ==================================== */
.section-header-enhanced {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.06) 100%);
    color: var(--secondary-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 22px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.section-subtitle i {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.section-subtitle:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.2);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.18) 0%, rgba(201, 162, 39, 0.1) 100%);
}

.section-header-enhanced h2 {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.section-header-enhanced p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.75;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.section-decoration span {
    width: 70px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.section-decoration i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

/* ====================================
   Enhanced Features Showcase - Premium
   ==================================== */
.features-showcase {
    margin-bottom: 70px;
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.feature-main-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.feature-main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.feature-main-image:hover img {
    transform: scale(1.1);
}

.feature-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.75) 0%, rgba(15, 40, 50, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 0;
    transition: var(--transition);
}

.feature-main-image:hover .feature-main-overlay {
    opacity: 1;
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-spring);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.play-button i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-right: -5px;
}

.play-button:hover {
    transform: scale(1.12);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

.feature-main-overlay span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
}

.feature-main-content .feature-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    color: var(--primary-color);
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-main-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-main-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.feature-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
}

.mini-stat {
    text-align: center;
}

.mini-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.25);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3d4e 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 95, 122, 0.35);
}

/* Enhanced Feature Cards Grid */
.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.feature-card-enhanced {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    padding: 35px 30px 30px;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.04),
        0 4px 15px rgba(0, 0, 0, 0.02);
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.feature-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(201, 162, 39, 0.2);
}

.feature-card-enhanced:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
}

.feature-icon-bg {
    position: absolute;
    top: 8px;
    right: -8px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
    border-radius: 50%;
    opacity: 0.6;
}

.feature-card-enhanced .feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    margin: 0;
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.25);
}

.feature-card-enhanced .feature-icon i {
    font-size: 1.6rem;
    color: var(--text-light);
}

.feature-card-enhanced:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8912a 100%);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.feature-card-enhanced h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-card-enhanced p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.feature-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.feature-link a:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ====================================
   App Preview Section
   ==================================== */
.app-preview-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.app-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 168, 83, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.app-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-preview-content {
    color: var(--text-light);
}

.app-preview-content .section-subtitle {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.app-preview-content h2 {
    color: var(--text-light);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 25px;
    line-height: 1.3;
}

.app-preview-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
}

.app-features-list {
    margin-bottom: 40px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-feature-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.app-feature-item span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.app-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--text-light);
    color: var(--text-dark);
    padding: 15px 25px;
    border-radius: 12px;
    transition: var(--transition);
}

.app-store-btn i {
    font-size: 2rem;
}

.app-store-btn small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.app-store-btn strong {
    font-size: 1.1rem;
}

.app-store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Phone Mockup */
.app-preview-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.3) 0%, transparent 70%);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--text-light);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-card 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -40px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: -30px;
    animation-delay: 2s;
}

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

/* ====================================
   Responsive for New Sections
   ==================================== */
@media (max-width: 992px) {
    .feature-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-main-image img {
        height: 300px;
    }
    
    .app-preview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .app-preview-visual {
        order: -1;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        padding: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-slider .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-slider .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .hero-slider-controls {
        bottom: 100px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }
    
    .slider-arrow.slider-prev {
        left: 15px;
    }
    
    .slider-arrow.slider-next {
        right: 15px;
    }
    
    .slider-dots {
        padding: 12px 20px;
    }

    .hero-slider .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 120px;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
    
    .value-bar-items {
        justify-content: center;
        flex-direction: column;
        gap: 0;
    }
    
    .value-item {
        flex: none;
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .value-item:last-child {
        border-bottom: none;
    }
    
    .feature-stats-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .mini-stat {
        flex: 0 0 calc(33.333% - 15px);
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    
    .app-download-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    /* Enhanced sections mobile centering */
    .section-header-enhanced {
        text-align: center;
    }
    
    .features-grid-enhanced {
        gap: 20px;
    }
    
    .feature-card-enhanced {
        text-align: center;
    }
    
    .feature-icon-wrapper {
        margin: 0 auto 25px;
    }
    
    .feature-link {
        text-align: center;
    }
    
    .feature-main-content {
        text-align: center;
    }
    
    .feature-main-content .feature-label {
        display: inline-block;
    }
    
    .btn-primary-gradient {
        display: inline-flex;
        margin: 0 auto;
    }
    
    /* App preview section mobile */
    .app-preview-content {
        text-align: center;
    }
    
    .app-features-list {
        text-align: center;
    }
    
    .app-feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        top: 85px;
        height: calc(100vh - 85px);
    }

    .hero-icon-large {
        width: 80px;
        height: 80px;
    }

    .hero-icon-large i {
        font-size: 2rem;
    }

    .slider-dots {
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .value-item {
        flex: 0 0 100%;
    }

    .feature-main {
        padding: 25px;
    }

    .feature-card-enhanced {
        padding: 25px;
    }

    .app-store-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ====================================
   Enhanced Testimonials Section
   ==================================== */
.testimonials-enhanced {
    background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 168, 83, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(26, 95, 122, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 45px;
}

.testimonial-card-enhanced {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.06),
        0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card-enhanced:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(201, 162, 39, 0.2);
}

.testimonial-card-enhanced.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, #fff 50%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.testimonial-quote-mark {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.testimonial-quote-mark i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-enhanced {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--gold-light);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-location,
.author-stat {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.author-location i,
.author-stat i {
    color: var(--secondary-color);
    margin-left: 5px;
    width: 15px;
}

.testimonials-cta {
    text-align: center;
}

/* ====================================
   Enhanced Community Section
   ==================================== */
.community-section-enhanced {
    background: linear-gradient(180deg, var(--gold-light) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.community-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.community-stats-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card-enhanced {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.stat-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-elevated);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stat-card-enhanced:hover .stat-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.stat-card-enhanced:hover .stat-icon i {
    color: var(--text-light);
}

.stat-bg-shape {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.stat-card-enhanced:hover .stat-bg-shape {
    opacity: 0.1;
}

.community-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.community-description-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.community-description-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
}

/* World Presence */
.world-presence {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.world-presence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.presence-locations {
    position: relative;
    width: 100%;
    height: 200px;
}

.location-tag {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse-location 2s ease-in-out infinite;
}

.location-tag span {
    background: var(--text-light);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-dot {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: relative;
}

.location-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(212, 168, 83, 0.3);
    border-radius: 50%;
    animation: ping 2s ease-in-out infinite;
}

@keyframes pulse-location {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes ping {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* ====================================
   Enhanced CTA Section
   ==================================== */
.cta-enhanced {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation: float-circle 20s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation: float-circle 15s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-circle 10s ease-in-out infinite;
}

@keyframes float-circle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.cta-content-enhanced {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    margin-bottom: 30px;
}

.cta-candle {
    width: 60px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.cta-candle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    background: linear-gradient(180deg, #f5f0e6, #e8e0d0);
    border-radius: 3px 3px 5px 5px;
}

.cta-flame {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 35px;
    background: linear-gradient(180deg, #ff6b35, #ffd93d, #fff);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1s infinite alternate;
    box-shadow: 0 0 30px #ffd93d, 0 0 60px #ff6b35;
}

.cta-enhanced h2 {
    color: var(--text-light);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-enhanced p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.75;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-feature i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.cta-buttons-enhanced {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c547 100%);
    color: var(--primary-dark);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 35px rgba(201, 162, 39, 0.35);
    border: none;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #e8c547 0%, var(--secondary-color) 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(201, 162, 39, 0.45);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-light);
    transform: translateY(-4px);
}

.cta-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-trust span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-right: -12px;
    transition: var(--transition);
}

.trust-avatars img:hover {
    transform: scale(1.2);
    z-index: 1;
}

.more-avatars {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 10px;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .testimonials-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-enhanced.featured {
        grid-row: auto;
    }
    
    .community-stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .world-presence {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .community-stats-enhanced {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card-enhanced {
        padding: 25px 20px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons-enhanced {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Testimonials mobile */
    .testimonial-card-enhanced {
        text-align: center;
        padding: 25px 20px;
    }
    
    .testimonial-author-enhanced {
        flex-direction: column;
        text-align: center;
    }
    
    .author-details {
        text-align: center;
    }
    
    .testimonials-cta {
        text-align: center;
    }
    
    /* Community section mobile */
    .community-section-enhanced {
        text-align: center;
    }
    
    .community-description-content {
        padding: 20px;
    }
    
    /* World presence mobile - show as list instead */
    .world-presence {
        min-height: auto;
        padding: 30px 20px;
    }
    
    .presence-locations {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 15px;
        align-items: center;
    }
    
    .location-tag {
        position: static !important;
        flex-direction: row;
        gap: 10px;
        animation: none;
    }
    
    .location-tag span {
        margin-bottom: 0;
    }
    
    .location-dot::before {
        display: none;
    }
    
    /* CTA section mobile */
    .cta-enhanced {
        text-align: center;
    }
    
    .cta-trust {
        text-align: center;
    }
    
    .trust-avatars {
        justify-content: center;
    }
}

/* ====================================
   Enhanced How It Works Section
   ==================================== */
.how-it-works-enhanced {
    background: linear-gradient(180deg, var(--gold-light) 0%, #fff 50%, var(--gold-light) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(26, 95, 122, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 168, 83, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.steps-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 4px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateX(50%);
    border-radius: 2px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.step-number-enhanced {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
    border: 5px solid #fff;
}

.step-number-enhanced span {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 800;
}

.step-content-enhanced {
    width: calc(50% - 60px);
    background: #fff;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    gap: 25px;
    transition: var(--transition);
}

.step-item:nth-child(odd) .step-content-enhanced {
    margin-left: auto;
    margin-right: 60px;
    flex-direction: row-reverse;
}

.step-item:nth-child(even) .step-content-enhanced {
    margin-right: auto;
    margin-left: 60px;
}

.step-content-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.step-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.step-content-enhanced:hover .step-icon {
    background: var(--primary-color);
}

.step-content-enhanced:hover .step-icon i {
    color: var(--text-light);
}

.step-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.step-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* How It Works CTA Box */
.how-it-works-cta {
    text-align: center;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: #fff;
    padding: 40px 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cta-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-box-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.cta-box-content {
    text-align: right;
}

.cta-box-content h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.cta-box-content p {
    color: var(--text-muted);
    margin: 0;
}

/* Responsive for steps */
@media (max-width: 992px) {
    .timeline-line {
        right: 35px;
        transform: none;
    }
    
    .step-item,
    .step-item:nth-child(odd),
    .step-item:nth-child(even) {
        flex-direction: row;
        text-align: right;
    }
    
    .step-number-enhanced {
        right: 0;
        transform: none;
        width: 60px;
        height: 60px;
    }
    
    .step-content-enhanced,
    .step-item:nth-child(odd) .step-content-enhanced,
    .step-item:nth-child(even) .step-content-enhanced {
        width: calc(100% - 100px);
        margin-right: 90px;
        margin-left: 0;
        flex-direction: row;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .cta-box-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .step-content-enhanced {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .step-text {
        text-align: center;
    }
    
    .step-link {
        justify-content: center;
    }
    
    .how-it-works-cta {
        text-align: center;
    }
    
    .cta-box {
        padding: 25px 20px;
    }
}

/* ====================================
   Additional Mobile Fixes
   ==================================== */
@media (max-width: 480px) {
    /* Header fixes */
    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        position: relative;
        min-height: 60px;
    }

    .nav-toggle {
        position: absolute;
        right: 0;
        z-index: 11;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
        animation: none;
    }

    .logo:hover {
        background: transparent;
        box-shadow: none;
    }

    .logo img {
        height: 60px;
        filter: drop-shadow(0 8px 25px rgba(212, 168, 83, 0.6));
        animation: logoGlow 3s ease-in-out infinite;
    }

    .logo:hover img {
        transform: scale(1.08);
        filter: drop-shadow(0 10px 35px rgba(212, 168, 83, 0.8));
    }

    @keyframes logoGlow {
        0%, 100% {
            filter: drop-shadow(0 8px 25px rgba(212, 168, 83, 0.6));
        }
        50% {
            filter: drop-shadow(0 10px 35px rgba(212, 168, 83, 0.8));
        }
    }
    
    /* Hero slider fixes */
    .hero-slider {
        padding-top: 85px;
    }
    
    .hero-contents {
        min-height: 450px;
    }
    
    .hero-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .hero-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .hero-icon-large i {
        font-size: 1.8rem;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider-controls {
        gap: 15px;
    }
    
    /* Value bar mobile */
    .value-bar {
        padding: 15px 0;
    }
    
    .value-item {
        padding: 8px 0;
    }
    
    .value-item i {
        font-size: 1.2rem;
    }
    
    .value-item span {
        font-size: 0.85rem;
    }
    
    /* Feature main */
    .feature-main {
        padding: 20px;
    }
    
    .feature-main-content h3 {
        font-size: 1.5rem;
    }
    
    /* Stats mobile */
    .stat-card-enhanced {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
    }
    
    .stat-icon i {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Steps mobile */
    .timeline-line {
        right: 25px;
    }
    
    .step-number-enhanced {
        width: 50px;
        height: 50px;
    }
    
    .step-number-enhanced span {
        font-size: 1.4rem;
    }
    
    .step-content-enhanced,
    .step-item:nth-child(odd) .step-content-enhanced,
    .step-item:nth-child(even) .step-content-enhanced {
        width: calc(100% - 80px);
        margin-right: 70px;
        padding: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    /* CTA mobile */
    .cta-enhanced {
        padding: 60px 0;
    }
    
    .cta-candle {
        width: 50px;
        height: 60px;
    }
    
    .cta-enhanced h2 {
        font-size: 1.8rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /* Trust avatars */
    .trust-avatars img {
        width: 35px;
        height: 35px;
    }
    
    .more-avatars {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* ====================================
   Auth Button & User Menu
   ==================================== */
.nav-auth {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 95, 122, 0.3);
}

.auth-btn i {
    font-size: 1rem;
}

/* User Menu (when logged in) */
.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--light-bg);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.user-menu-btn:hover {
    background: var(--primary-color);
    color: white;
}

.user-menu-btn .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.user-menu-btn:hover .user-avatar {
    background: white;
    color: var(--primary-color);
}

/* Hide original dropdown - we use portal instead */
.user-menu-dropdown {
    display: none !important;
}

/* Portal dropdown - moved to body */
.user-menu-dropdown-portal {
    position: fixed;
    min-width: 220px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100001;
    overflow: hidden;
    padding: 8px 0;
}

.user-menu-dropdown-portal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-dropdown-portal a,
.user-menu-dropdown-portal button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: right;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.user-menu-dropdown-portal a:hover,
.user-menu-dropdown-portal button:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.user-menu-dropdown-portal a i,
.user-menu-dropdown-portal button i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.user-menu-dropdown-portal .dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 5px 0;
}

.user-menu-dropdown-portal .logout-btn {
    color: #e74c3c;
}

.user-menu-dropdown-portal .logout-btn i {
    color: #e74c3c;
}

.user-menu-dropdown-portal .logout-btn:hover {
    background: #fdf0f0;
}

/* ====================================
   FAQ Section Styles
   ==================================== */

/* FAQ Floating Button */
.faq-floating-btn {
    position: fixed;
    bottom: 160px;
    left: 20px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px 0 14px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    z-index: 1000;
}

.faq-floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.45);
}

.faq-floating-btn i {
    font-size: 1.2rem;
}

.faq-floating-btn .faq-btn-text {
    white-space: nowrap;
}

/* FAQ Modal */
.faq-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.faq-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.faq-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    transform: translateY(30px);
    transition: var(--transition);
}

.faq-modal-overlay.active .faq-modal {
    transform: translateY(0);
}

.faq-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-modal-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 1.4rem;
}

.faq-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.faq-modal-body {
    padding: 30px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
}

/* FAQ Quick Navigation */
.faq-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold-light);
}

.faq-quick-nav-btn {
    padding: 10px 18px;
    background: var(--gold-light);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.faq-quick-nav-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--gold-dark);
}

.faq-quick-nav-btn i {
    font-size: 0.85rem;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: 30px;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-light);
}

.faq-category-title i {
    width: 35px;
    height: 35px;
    background: var(--gold-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* FAQ Accordion */
.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.1);
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    gap: 15px;
}

.faq-question:hover {
    background: rgba(212, 168, 83, 0.1);
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-question-icon {
    width: 28px;
    height: 28px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-item.active .faq-question-icon {
    background: var(--primary-color);
    color: #fff;
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 1000px;
}

.faq-answer-content {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content ul {
    margin: 10px 0;
    padding-right: 25px;
    list-style: disc;
}

.faq-answer-content ul li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.faq-answer-content strong {
    color: var(--primary-color);
}

/* FAQ Action Button within answer */
.faq-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.faq-action-btn:hover {
    background: var(--primary-dark);
    transform: translateX(-5px);
}

.faq-action-btn.secondary {
    background: var(--gold-light);
    color: var(--primary-color);
}

.faq-action-btn.secondary:hover {
    background: var(--gold);
    color: #fff;
}

/* FAQ Highlight Box */
.faq-highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-right: 4px solid var(--primary-color);
}

.faq-highlight-box.warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-right-color: #ff9800;
}

.faq-highlight-box.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-right-color: #4caf50;
}

.faq-highlight-box i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.faq-highlight-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* FAQ Footer */
.faq-modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 2px solid var(--gold-light);
    text-align: center;
}

.faq-modal-footer p {
    margin: 0 0 15px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.faq-contact-btn:hover {
    background: #c49940;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-floating-btn {
        bottom: 160px;
        left: 15px;
        height: 40px;
        padding: 0 12px 0 10px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .faq-floating-btn i {
        font-size: 1rem;
    }

    .faq-modal {
        max-height: 90vh;
        border-radius: 15px 15px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
    }

    .faq-modal-header {
        padding: 20px;
    }

    .faq-modal-header h2 {
        font-size: 1.2rem;
    }

    .faq-modal-body {
        padding: 20px;
    }

    .faq-quick-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .faq-quick-nav-btn {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        font-size: 0.9rem;
    }
}

/* ====================================
   Service Flow Section - Premium v3.0
   ==================================== */
.service-flow-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, var(--gold-pale) 70%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.service-flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(26, 95, 122, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.service-flow-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.service-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.service-feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 45px 35px 40px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.3s ease;
}

.service-feature-card.whatsapp-card::before {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.service-feature-card.memorial-card::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.service-feature-card.community-card::before {
    background: var(--gold-gradient);
}

.service-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-card-hover);
}

.service-feature-card:hover::before {
    height: 6px;
}

.service-feature-card.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

.service-feature-card.memorial-card:hover {
    border-color: rgba(26, 95, 122, 0.4);
}

.service-feature-card.community-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
}

.service-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.8rem;
    transition: var(--transition-spring);
    position: relative;
}

.service-card-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.whatsapp-card .service-card-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.08) 100%);
    color: #25D366;
}

.memorial-card .service-card-icon {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.15) 0%, rgba(42, 143, 170, 0.08) 100%);
    color: var(--primary-color);
}

.community-card .service-card-icon {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    color: var(--secondary-color);
}

.service-feature-card:hover .service-card-icon {
    transform: scale(1.12) rotate(5deg);
}

.service-feature-card:hover .service-card-icon::after {
    opacity: 0.1;
}

.whatsapp-card:hover .service-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.memorial-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.community-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8912a 100%);
    color: #fff;
}

.service-feature-card h3 {
    color: var(--text-dark);
    font-size: 1.45rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-feature-card > p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 25px;
}

.service-features-list {
    text-align: right;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 0.98rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li:hover {
    padding-right: 8px;
}

.service-features-list li i {
    color: #25D366;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Process Flow Visual - Premium */
.process-flow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.process-flow-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.12) 0%, transparent 50%);
    animation: process-glow 12s linear infinite;
}

@keyframes process-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: var(--transition-spring);
}

.flow-step:hover .flow-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8912a 100%);
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(201, 162, 39, 0.4);
}

.flow-step span {
    color: #fff;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.3px;
}

.flow-arrow {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive for Service Flow */
@media (max-width: 992px) {
    .service-flow-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-flow-visual {
        flex-direction: column;
        gap: 18px;
        padding: 40px 30px;
    }
    
    .flow-arrow {
        transform: rotate(-90deg);
    }
}

/* ====================================
   Enhanced Footer - Global Style Premium
   ==================================== */
.footer-global {
    background: linear-gradient(180deg, #1a3a4a 0%, #0f2832 50%, #0a1c24 100%);
    position: relative;
    overflow: hidden;
}

.footer-global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
}

/* Connection Visual for Footer */
.world-presence {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.12) 0%, rgba(201, 162, 39, 0.06) 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.world-presence::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.25); opacity: 0.85; }
}

.presence-locations {
    display: none; /* Hide old location tags */
}

/* Connection Globe Visual - Premium */
.connection-globe {
    width: 220px;
    height: 220px;
    margin: 0 auto 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-globe::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(26, 95, 122, 0.2);
    animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
    100% { transform: rotate(360deg); }
}

.connection-globe i {
    font-size: 110px;
    color: var(--primary-color);
    opacity: 0.3;
}

.connection-stats {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.connection-stat {
    text-align: center;
    transition: var(--transition);
}

.connection-stat:hover {
    transform: translateY(-5px);
}

.connection-stat .number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(26, 95, 122, 0.2);
}

.connection-stat .label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Hide auth elements based on state */
.logged-out .user-menu {
    display: none;
}

.logged-in .auth-btn {
    display: none;
}

/* Mobile auth styles */
@media (max-width: 768px) {
    .nav-auth {
        position: static;
        order: 1;
        margin-left: 10px;
        flex-shrink: 0;
        z-index: 15;
    }

    .nav-toggle {
        order: 2;
    }
    
    .auth-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .auth-btn span {
        display: none;
    }
    
    .user-menu-btn {
        padding: 6px 12px;
    }
    
    .user-menu-btn .user-name {
        display: none;
    }
    
    .user-menu-btn .user-avatar {
        width: 28px;
        height: 28px;
    }
    
    .user-menu-btn .fa-chevron-down {
        display: none;
    }
    
    /* Portal dropdown on mobile */
    .user-menu-dropdown-portal {
        left: 10px !important;
        right: auto !important;
        min-width: 200px;
    }
}

/* ====================================
   PREMIUM DESIGN UPGRADES v4.0
   Ultra High-End Animations & Effects
   ==================================== */

/* Floating Light Orbs Background */
.light-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(201, 162, 39, 0.4) 0%, 
        rgba(201, 162, 39, 0.1) 50%, 
        transparent 70%);
    filter: blur(40px);
    animation: floatOrb 20s ease-in-out infinite;
}

.light-orb:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.light-orb:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 60%;
    right: -5%;
    animation-delay: -5s;
    animation-duration: 30s;
    background: radial-gradient(circle at 30% 30%, 
        rgba(26, 95, 122, 0.3) 0%, 
        rgba(26, 95, 122, 0.1) 50%, 
        transparent 70%);
}

.light-orb:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 22s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(-50px, -20px) scale(1.05);
        opacity: 0.7;
    }
}

/* Advanced Animated Candles Background */
.animated-candles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-candle {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.12;
    animation: candleFloat 15s ease-in-out infinite;
}

.bg-candle .candle-stick {
    width: 12px;
    height: 60px;
    background: linear-gradient(180deg, #f5deb3 0%, #daa520 50%, #b8860b 100%);
    border-radius: 3px 3px 6px 6px;
    position: relative;
}

.bg-candle .candle-stick::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: #333;
}

.bg-candle .candle-flame {
    width: 20px;
    height: 35px;
    background: radial-gradient(ellipse at bottom,
        #fff 0%,
        #ffeb3b 20%,
        #ffc107 40%,
        #ff9800 60%,
        #ff5722 80%,
        transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation: flicker 0.5s ease-in-out infinite alternate;
    filter: blur(1px);
    box-shadow: 
        0 0 30px rgba(255, 193, 7, 0.8),
        0 0 60px rgba(255, 152, 0, 0.5),
        0 0 100px rgba(255, 87, 34, 0.3);
}

.bg-candle .candle-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        rgba(255, 193, 7, 0.4) 0%, 
        rgba(255, 152, 0, 0.2) 30%, 
        transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes flicker {
    0% {
        transform: translateX(-50%) scaleY(1) scaleX(1);
        opacity: 1;
    }
    25% {
        transform: translateX(-48%) scaleY(1.05) scaleX(0.95);
        opacity: 0.95;
    }
    50% {
        transform: translateX(-52%) scaleY(0.95) scaleX(1.02);
        opacity: 1;
    }
    75% {
        transform: translateX(-50%) scaleY(1.02) scaleX(0.98);
        opacity: 0.9;
    }
    100% {
        transform: translateX(-50%) scaleY(0.98) scaleX(1);
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.9;
    }
}

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

.bg-candle:nth-child(1) { top: 20%; left: 5%; animation-delay: 0s; }
.bg-candle:nth-child(2) { top: 40%; right: 8%; animation-delay: -3s; }
.bg-candle:nth-child(3) { bottom: 25%; left: 10%; animation-delay: -6s; }
.bg-candle:nth-child(4) { top: 60%; left: 3%; animation-delay: -9s; }
.bg-candle:nth-child(5) { bottom: 15%; right: 5%; animation-delay: -12s; }

/* Sparkle Stars Effect */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.8);
}

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

/* Premium Image Gallery Carousel */
.premium-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-elevated);
}

.premium-carousel .carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-carousel .carousel-slide {
    min-width: 100%;
    position: relative;
}

.premium-carousel .carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.premium-carousel .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.premium-carousel .carousel-caption h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.premium-carousel .carousel-caption p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.premium-carousel .carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.premium-carousel .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.premium-carousel .carousel-dot.active,
.premium-carousel .carousel-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.premium-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.premium-carousel .carousel-arrow:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.premium-carousel .carousel-arrow.prev { right: 20px; }
.premium-carousel .carousel-arrow.next { left: 20px; }

/* Glassmorphism Cards - Enhanced */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.glass-card-premium:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Golden Shimmer Border */
.shimmer-border {
    position: relative;
    overflow: hidden;
}

.shimmer-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(201, 162, 39, 0.5) 25%,
        rgba(232, 197, 71, 0.8) 50%,
        rgba(201, 162, 39, 0.5) 75%,
        transparent 100%);
    background-size: 200% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Morphing Blob Shapes */
.morphing-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, 
        rgba(201, 162, 39, 0.2) 0%, 
        rgba(26, 95, 122, 0.15) 100%);
    filter: blur(60px);
    animation: morphBlob 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        transform: rotate(180deg) scale(0.95);
    }
    75% {
        border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Premium Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--primary-light) 100%);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--secondary-color);
}

/* Neon Border Effect */
.neon-border {
    box-shadow: 
        0 0 5px var(--secondary-color),
        0 0 10px var(--secondary-color),
        0 0 20px var(--secondary-color),
        inset 0 0 5px rgba(201, 162, 39, 0.2);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% {
        box-shadow: 
            0 0 5px var(--secondary-color),
            0 0 10px var(--secondary-color),
            0 0 20px var(--secondary-color);
    }
    100% {
        box-shadow: 
            0 0 10px var(--secondary-color),
            0 0 25px var(--secondary-color),
            0 0 40px var(--secondary-color);
    }
}

/* Floating Action Badge */
.floating-badge {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-accent));
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.4);
    z-index: 1000;
    animation: badgeBounce 3s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition);
}

.floating-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.5);
}

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

/* Interactive Memory Wall */
.memory-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.memory-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

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

.memory-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.memory-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-elevated);
    z-index: 10;
}

.memory-card:hover img {
    transform: scale(1.1);
}

.memory-card:hover::after {
    opacity: 1;
}

.memory-card .memory-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.memory-card:hover .memory-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Feature Icons with Animation */
.feature-icon-animated {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.feature-icon-animated .icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

.feature-icon-animated .icon-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-icon-animated .icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.4);
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Testimonial Cards - Ultra Premium */
.testimonial-premium-card {
    background: linear-gradient(135deg, #fff 0%, #faf6ec 100%);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.testimonial-premium-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(201, 162, 39, 0.1);
    line-height: 1;
}

.testimonial-premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
}

/* Stats Section - Premium */
.stats-premium-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stat-premium-box {
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.stat-premium-box .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.stat-premium-box .stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.stat-premium-box .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Image Parallax Effect */
.parallax-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

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

.parallax-image:hover img {
    transform: scale(1.1);
}

/* Rotating Text Animation */
.rotating-text {
    position: relative;
    height: 1.5em;
    overflow: hidden;
    display: inline-block;
}

.rotating-text span {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.rotating-text span.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal on Scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Floating Badge */
.floating-badge {
    position: fixed;
    left: 25px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: #1a1a2e;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.5),
                0 0 30px rgba(201, 162, 39, 0.3);
    transform: translateX(-200%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: badgePulse 2s ease-in-out infinite;
}

.floating-badge.visible {
    transform: translateX(0);
}

.floating-badge:hover {
    transform: translateX(0) scale(1.05);
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.6),
                0 0 40px rgba(201, 162, 39, 0.4);
}

.floating-badge i {
    font-size: 1.3rem;
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(201, 162, 39, 0.5), 0 0 30px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 10px 50px rgba(201, 162, 39, 0.7), 0 0 50px rgba(201, 162, 39, 0.5); }
}

/* Enhanced Section Separators */
.section-separator {
    position: relative;
    height: 150px;
    margin: 0;
    background: linear-gradient(180deg, transparent, var(--bg-primary));
    overflow: hidden;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.section-separator .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39 56.44c58-10.79 114.16-30.13 172-41.86 82.39-16.72 168.19-17.73 250.45-.39C823.78 31 906.67 72 985.66 92.83c70.05 18.48 146.53 26.09 214.34 3V0H0v27.35a600.21 600.21 0 00321.39 29.09z' fill='%231a1a2e'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    animation: waveMove 25s linear infinite;
}

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

/* Premium Quote Style */
.premium-quote {
    position: relative;
    padding: 40px 50px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(26, 95, 122, 0.1));
    border-radius: var(--border-radius-lg);
    margin: 40px 0;
    border-right: 5px solid var(--gold-color);
}

.premium-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 100px;
    color: var(--gold-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.premium-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.premium-quote cite {
    display: block;
    text-align: left;
    color: var(--gold-color);
    font-weight: 600;
}

/* Glow Effect for Important Elements */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, var(--gold-color), var(--primary-color), var(--gold-color));
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
    opacity: 0.7;
}

/* Premium Stats Counter Section */
.stats-premium-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d3d4d 0%, #1a5f7a 50%, #0d3d4d 100%);
    position: relative;
    overflow: hidden;
}

.stats-premium-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box-premium {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.stat-box-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-box-premium .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a2e;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.stat-box-premium .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box-premium .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Text Highlight Animation */
.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(90deg, var(--gold-color), transparent);
    opacity: 0.3;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.highlight-text:hover::after {
    transform: scaleX(1);
}

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), var(--primary-color));
    transition: width 0.4s ease;
}

.animated-underline:hover::after {
    width: 100%;
}

/* Feature List Premium */
.feature-list-premium {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list-premium li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-list-premium li:hover {
    padding-right: 20px;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 10px;
}

.feature-list-premium li i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    flex-shrink: 0;
}

/* Animated Gradient Button */
.btn-gradient-animated {
    position: relative;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    color: #1a1a2e;
    background-size: 200% 200%;
    background-image: linear-gradient(45deg, var(--gold-color), var(--gold-light), var(--gold-color));
    animation: gradientShift 3s ease infinite;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    transition: all 0.3s ease;
}

.btn-gradient-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.5);
}

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

/* Floating Icons Animation */
.floating-icons-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 30px;
    color: var(--gold-color);
    opacity: 0.15;
    animation: floatIcon 20s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-50px) rotate(-5deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.2;
    }
}

/* Card Shine Effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
}

.card-shine:hover::before {
    transform: rotate(45deg) translateX(100%);
}

/* Pulse Ring Effect */
.pulse-ring {
    position: relative;
}

.pulse-ring::before,
.pulse-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring::after {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Responsive Improvements */
@media (max-width: 1024px) {
    .stats-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .morphing-blob {
        width: 300px;
        height: 300px;
    }
    
    .bg-candle {
        opacity: 0.08;
    }
    
    .floating-badge {
        left: 15px;
        bottom: 80px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .premium-carousel .carousel-slide img {
        height: 350px;
    }
    
    .premium-carousel .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .premium-quote {
        padding: 30px 25px;
    }
    
    .premium-quote::before {
        font-size: 60px;
        right: 20px;
    }
    
    .stats-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box-premium .stat-number {
        font-size: 2.5rem;
    }
}

/* ====================================
   Premium Utility Components v4.0
   Universal Premium Styling
   ==================================== */

/* Premium List Items - For feature lists */
.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 246, 236, 0.8));
    border-radius: 14px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.premium-list-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.12);
    border-color: rgba(201, 162, 39, 0.3);
}

.premium-list-item:hover::before {
    opacity: 1;
}

.premium-list-item .icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

.premium-list-item .icon.gold {
    background: var(--gold-gradient);
    color: var(--primary-dark);
}

.premium-list-item .content {
    flex: 1;
}

.premium-list-item .title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.02rem;
    margin-bottom: 4px;
}

.premium-list-item .description {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Premium Text Block - For feature descriptions */
.premium-text-block {
    background: linear-gradient(135deg, #ffffff 0%, #faf6ec 100%);
    border-radius: 20px;
    padding: 30px 35px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.premium-text-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.premium-text-block h3,
.premium-text-block h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.premium-text-block p {
    color: var(--text-medium);
    line-height: 1.8;
}

.premium-text-block ul {
    margin-top: 15px;
}

.premium-text-block ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.premium-text-block ul li:last-child {
    border-bottom: none;
}

.premium-text-block ul li i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

/* Premium Feature Point - Individual feature items */
.premium-feature-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.premium-feature-point:last-child {
    border-bottom: none;
}

.premium-feature-point .point-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(26, 95, 122, 0.05));
    border-radius: 14px;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: var(--transition);
}

.premium-feature-point:hover .point-icon {
    background: var(--primary-gradient);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.3);
}

.premium-feature-point .point-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.premium-feature-point .point-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Premium Card Base - Enhanced card styling */
.premium-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 162, 39, 0.3);
}

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

/* Premium Badge - For labels and tags */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(247, 238, 215, 0.5));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-dark);
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.premium-badge i {
    font-size: 0.8rem;
}

.premium-badge.primary {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.12), rgba(42, 143, 170, 0.08));
    color: var(--primary-color);
    border-color: rgba(26, 95, 122, 0.2);
}

.premium-badge.success {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(76, 175, 80, 0.08));
    color: #2e7d32;
    border-color: rgba(46, 125, 50, 0.2);
}

/* Premium Divider */
.premium-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.premium-divider::before,
.premium-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.premium-divider i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Premium Button Micro-interactions */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.35);
}

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

.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(26, 95, 122, 0.45);
}

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

.btn-premium:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.35);
}

.btn-premium i {
    transition: var(--transition);
}

.btn-premium:hover i {
    transform: scale(1.15);
}

.btn-premium-gold {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.btn-premium-gold:hover {
    box-shadow: 0 15px 45px rgba(201, 162, 39, 0.5);
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-premium-outline:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 35px rgba(26, 95, 122, 0.3);
}

/* Premium Input Fields */
.premium-input {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 14px;
    font-size: 1rem;
    font-family: var(--font-family);
    background: #fff;
    transition: var(--transition);
    outline: none;
}

.premium-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.1), 0 8px 25px rgba(0, 0, 0, 0.08);
}

.premium-input::placeholder {
    color: var(--text-subtle);
}

.premium-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Premium Section Header - Unified */
.section-header-premium {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-premium .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(247, 238, 215, 0.6));
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.section-header-premium .subtitle i {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.section-header-premium h2 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-header-premium p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.section-header-premium .decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header-premium .decoration span {
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-header-premium .decoration i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Premium Info Row - For simple text items */
.premium-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(250, 246, 236, 0.6);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.premium-info-row:hover {
    background: rgba(250, 246, 236, 0.9);
    transform: translateX(-4px);
}

.premium-info-row i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    width: 24px;
    text-align: center;
}

.premium-info-row span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.premium-info-row strong {
    color: var(--primary-color);
}

/* Premium Stats Display */
.premium-stat {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #fff, rgba(250, 246, 236, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: var(--transition);
}

.premium-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 162, 39, 0.3);
}

.premium-stat .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(42, 143, 170, 0.05));
    border-radius: 16px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.premium-stat .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

/* Premium Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.glass-card-dark {
    background: rgba(26, 95, 122, 0.85);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-card-dark h3,
.glass-card-dark h4 {
    color: #fff;
}

.glass-card-dark p {
    color: rgba(255, 255, 255, 0.85);
}

/* Premium Responsive Utilities */
@media (max-width: 768px) {
    .premium-list-item {
        padding: 14px 16px;
    }
    
    .premium-list-item .icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.8rem;
    }
    
    .premium-text-block {
        padding: 25px;
    }
    
    .premium-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .btn-premium {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
    
    .section-header-premium h2 {
        font-size: 1.8rem;
    }
    
    .premium-stat .stat-value {
        font-size: 1.6rem;
    }
}
