/* ========================================
   TRINETRA AURA CLEANSING — STYLES
   Design: Mystical Dark + Gold Luxury
   Aesthetic: Sacred Geometry meets Premium
   ======================================== */

/* === Design Tokens === */
:root {
    /* Colors */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(15, 12, 8, 0.85);
    --bg-card-hover: rgba(25, 20, 12, 0.95);
    
    --gold-primary: #c9a84c;
    --gold-light: #e8d48b;
    --gold-bright: #ffd700;
    --gold-dark: #8a6f2f;
    --gold-glow: rgba(201, 168, 76, 0.3);
    
    --blue-eye: #1e4d8c;
    --blue-glow: rgba(30, 77, 140, 0.4);
    
    --text-primary: #f0e6d2;
    --text-secondary: #b8a88a;
    --text-muted: #6d5f4e;
    
    --border-subtle: rgba(201, 168, 76, 0.15);
    --border-gold: rgba(201, 168, 76, 0.4);
    
    /* Typography */
    --font-display: 'Philosopher', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;
    
    /* Effects */
    --glass-bg: rgba(15, 12, 8, 0.6);
    --glass-border: rgba(201, 168, 76, 0.12);
    --glass-blur: 20px;
    
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg-primary);
}

html::-webkit-scrollbar {
    width: 6px;
}

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

html::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* === Preloader === */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.eye-pulse {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
    animation: eyePulse 1.5s ease-in-out infinite;
    position: relative;
}

.eye-pulse::after {
    content: '◉';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
}

@keyframes eyePulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 var(--gold-glow); }
    50% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 30px 10px var(--gold-glow); }
}

.eye-text {
    font-family: var(--font-display);
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* === Particles Canvas === */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* === Navigation === */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

#main-nav.scrolled {
    background: rgba(5, 5, 5, 0.85);
    padding: 0.7rem var(--space-md);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-symbol {
    color: var(--gold-primary);
    font-size: 1.4rem;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { text-shadow: 0 0 10px var(--gold-glow); }
    50% { text-shadow: 0 0 25px var(--gold-glow), 0 0 40px rgba(201, 168, 76, 0.15); }
}

.nav-name {
    font-family: var(--font-display);
    color: var(--gold-primary);
    font-size: 1rem;
    letter-spacing: 0.3em;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-nav.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

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

/* Stagger mobile links */
.mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-link:nth-child(5) { transition-delay: 0.3s; }

/* === Hero Section === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(30, 77, 140, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
}

.hero-particles-overlay {
    position: absolute;
    inset: 0;
    background: url('assets/energy-particles.png') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: screen;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-lg) var(--space-md);
}

.hero-eye-container {
    width: 300px;
    height: 300px;
    margin: 0 auto calc(var(--space-md) * -0.5);
    position: relative;
}

.hero-eye-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3)) drop-shadow(0 0 80px rgba(30, 77, 140, 0.2));
    animation: floatEye 6s ease-in-out infinite;
    -webkit-mask-image: radial-gradient(ellipse 55% 55% at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse 55% 55% at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

@keyframes floatEye {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
}

.hero-title {
    margin-bottom: var(--space-sm);
}

.title-line {
    display: block;
}

.title-main {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--gold-primary);
    letter-spacing: 0.35em;
    font-weight: 700;
    text-shadow: 0 0 60px rgba(201, 168, 76, 0.2);
    line-height: 1.2;
    text-transform: uppercase;
}

.title-sub {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    letter-spacing: 0.35em;
    font-weight: 300;
    margin-top: 0.3rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gold-light);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.divider-diamond {
    color: var(--gold-primary);
    font-size: 0.7rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.hero-cta:hover {
    color: var(--bg-primary);
    border-color: var(--gold-light);
    box-shadow: 0 0 30px var(--gold-glow);
}

.hero-cta:hover::before {
    opacity: 1;
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 2s both;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.scroll-dot {
    width: 3px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* === Section Common === */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold-primary);
    display: block;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.gold-text {
    color: var(--gold-primary);
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* === About Section === */
.about-section {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.section-bg-mandala {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    opacity: 0.08;
    animation: rotateSlow 60s linear infinite;
}

.section-bg-mandala::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
}

.section-bg-mandala::after {
    content: '';
    position: absolute;
    inset: 80px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
}

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

/* About - Centered Layout (no portrait) */
.about-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-name-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-md);
    transition: all var(--transition-smooth);
}

.about-name-badge:hover {
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.12);
    border-color: var(--gold-primary);
}

.name-badge-icon {
    color: var(--gold-primary);
    font-size: 1.6rem;
    animation: gentlePulse 3s ease-in-out infinite;
}

.about-name-badge h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 0.1rem;
    text-align: left;
}

.about-name-badge p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: left;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.stat-item:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* === Services Section === */
.services-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.service-card {
    position: relative;
    padding: var(--space-lg) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

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

.card-icon {
    color: var(--gold-primary);
    margin-bottom: var(--space-md);
    display: inline-block;
    transition: transform 0.5s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Help Section */
.help-section {
    text-align: center;
    padding: var(--space-lg) 0;
}

.help-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.help-title-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    white-space: nowrap;
}

.help-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 400;
    transition: color var(--transition-smooth);
}

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

.help-bullet {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

/* === Methods Section === */
.methods-section {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.methods-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.methods-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    mix-blend-mode: screen;
}

.methods-section .container {
    position: relative;
    z-index: 1;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.method-card {
    padding: var(--space-lg) var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: center;
    transition: all var(--transition-smooth);
}

.method-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.08);
}

.method-visual {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--gold-glow));
    transition: transform 0.6s ease;
}

.method-card:hover .method-img {
    transform: rotate(15deg) scale(1.1);
}

.method-icon-om {
    font-size: 4rem;
    color: var(--gold-primary);
    text-shadow: 0 0 30px var(--gold-glow);
    transition: all 0.5s ease;
    line-height: 1;
}

.method-card:hover .method-icon-om {
    text-shadow: 0 0 50px var(--gold-glow), 0 0 80px rgba(201, 168, 76, 0.15);
    transform: scale(1.15);
}

/* Energy Cleansing Icon */
.method-icon-energy {
    position: relative;
    width: 100px;
    height: 100px;
}

.energy-ring {
    position: absolute;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    animation: energyPulse 3s ease-in-out infinite;
}

.ring-1 {
    inset: 0;
    animation-delay: 0s;
}

.ring-2 {
    inset: 15px;
    animation-delay: 0.5s;
}

.ring-3 {
    inset: 30px;
    animation-delay: 1s;
}

.energy-core {
    position: absolute;
    inset: 40px;
    background: radial-gradient(circle, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold-glow);
}

@keyframes energyPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.method-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.05em;
}

.method-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === Appointment Section === */
.appointment-section {
    padding: var(--space-xl) 0;
}

.appointment-card {
    position: relative;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(15, 12, 8, 0.9) 50%, rgba(30, 77, 140, 0.04) 100%);
    border: 1px solid var(--border-gold);
    overflow: hidden;
}

.appointment-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.appointment-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.appointment-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.appointment-text {
    max-width: 500px;
    margin: 0 auto var(--space-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.appointment-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: all var(--transition-smooth);
    box-shadow: 0 0 0 0 var(--gold-glow);
}

.appointment-cta:hover {
    box-shadow: 0 0 40px var(--gold-glow);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

/* === Contact Section === */
.contact-section {
    padding: var(--space-2xl) 0 var(--space-xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.contact-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

/* === Footer === */
.site-footer {
    padding: var(--space-lg) 0 var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: var(--space-sm);
}

.footer-symbol {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.footer-name {
    font-family: var(--font-display);
    color: var(--gold-primary);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    font-weight: 700;
}

.footer-tagline {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--border-gold);
    margin: var(--space-sm) auto;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.footer-note {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-style: italic;
}

/* === Reveal Animations === */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* === Responsive === */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-name-badge {
        padding: 0.6rem 1.2rem;
    }
    
    .services-grid,
    .methods-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .help-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;
    }
    
    .hero-eye-container {
        width: 220px;
        height: 220px;
    }
    
    .appointment-card {
        padding: var(--space-lg) var(--space-md);
    }
    
    .appointment-cta {
        font-size: 0.8rem;
        padding: 0.9rem 1.8rem;
    }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-eye-img {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}
