/* ===== VARIABLES ===== */
:root {
    --primary: #FFFFFF;
    --primary-dark: #E0E0E0;
    --primary-light: #FFFFFF;
    --secondary: #FFFFFF;
    --accent-gold: #D4AF37;
    --accent-copper: #B8860B;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --text: #E8E8E8;
    --text-light: #C0C0C0;
    --text-muted: #A0A0A0;
    --bg: #0a0a1a;
    --bg-cream: #0d0d25;
    --bg-warm: #12122a;
    --white: #10102a;
    --dark-blue: #080818;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
    --shadow-gold: 0 8px 32px rgba(212,175,55,0.2);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

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

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-circle-1, .hero-circle-2, .hero-circle-3,
.shooting-star, .star, .chakra-dot, .about-decor,
.energy-orb, .energy-banner {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce animations when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Pause animations when not in viewport - applied via JS */
.animation-paused {
    animation-play-state: paused !important;
}

/* Mobile performance: GPU acceleration for smooth animations */
@media (max-width: 768px) {
    .about {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        overflow: hidden;
    }

    .about .star,
    .about .shooting-star,
    .about-decor {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }

    .stars-container {
        contain: strict;
        transform: translate3d(0, 0, 0);
    }

    /* Slower animations on mobile = smoother scrolling */
    .star.small { animation-duration: 5s !important; }
    .star.medium { animation-duration: 6s !important; }
    .star.large { animation-duration: 7s !important; }
    .shooting-star { animation-duration: 15s !important; }
    .about-decor { animation-duration: 10s !important; }
}

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

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

ul {
    list-style: none;
}

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

/* ===== UTILITIES ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-tag::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 400;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.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: linear-gradient(135deg, #3a5a8a 0%, #1a3a6a 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(30,60,110,0.4);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(30,60,110,0.5);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    border-color: var(--gold);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    color: #0a0a1a;
    box-shadow: var(--shadow-gold);
    font-weight: 600;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(212,175,55,0.4);
}

.btn-full {
    width: 100%;
}

/* ===== CUSTOM SVG ICONS ===== */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 64px;
    height: 64px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,26,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: rgba(10,10,26,0.98);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-symbol svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 1px;
}

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

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:not(.btn-nav):hover {
    color: #FFFFFF;
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, #3a5a8a 0%, #1a3a6a 100%);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 1.5px;
    border: none;
    box-shadow: 0 4px 16px rgba(30, 60, 110, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 110, 0.4);
}

.btn-nav::after {
    display: none !important;
}

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

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: #FFFFFF;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(165deg, var(--bg-cream) 0%, var(--bg) 40%, var(--bg-warm) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1920&q=80');
    background-size: cover;
    background-position: center top;
    opacity: 1;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(10,10,26,0.85) 0%, rgba(13,13,37,0.8) 40%, rgba(18,18,42,0.85) 100%);
    z-index: 1;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-circle-1 {
    width: 800px;
    height: 800px;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-circle-2 {
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    top: 30%;
    right: 15%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    text-align: center;
}

/* Horizontal Chakras Animation */
.hero-chakras {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.hero-chakras .chakra-dot {
    width: 10px;
    height: 10px;
}

.hero-date {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    color: var(--secondary);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.15;
}

.hero h1 span {
    color: #7a9bd4;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.8;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d25 100%);
    position: relative;
    overflow: hidden;
}

/* Starry Background */
.stars-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

.star.small {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 2px 1px rgba(255,255,255,0.7);
    animation: twinkleSmall 3s ease-in-out infinite;
}

.star.medium {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 3px 1px rgba(255,255,255,0.8), 0 0 6px 2px rgba(200,200,255,0.3);
    animation: twinkleMedium 4s ease-in-out infinite;
}

.star.large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 5px 2px rgba(255,255,255,0.9), 0 0 10px 4px rgba(200,200,255,0.4);
    animation: twinkleLarge 5s ease-in-out infinite;
}

@keyframes twinkleSmall {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes twinkleMedium {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.4); }
}

@keyframes twinkleLarge {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    border-radius: 2px;
    opacity: 0;
    z-index: 1;
}

.shooting-star::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(255,255,255,0.9), 0 0 12px 4px rgba(212,175,55,0.5);
}

.shooting-star.star1 {
    top: 8%;
    right: 20%;
    animation: shootingStarFall1 9s ease-out infinite;
}

.shooting-star.star2 {
    top: 20%;
    right: 5%;
    animation: shootingStarFall2 11s ease-out infinite;
    animation-delay: 4s;
}

.shooting-star.star3 {
    top: 45%;
    right: 30%;
    animation: shootingStarFall3 13s ease-out infinite;
    animation-delay: 7s;
}

.shooting-star.star4 {
    top: 15%;
    right: 50%;
    animation: shootingStarFall4 10s ease-out infinite;
    animation-delay: 2s;
}

@keyframes shootingStarFall1 {
    0% { opacity: 0; transform: rotate(215deg) translateX(0); }
    2% { opacity: 1; }
    12% { opacity: 0.8; transform: rotate(215deg) translateX(-350px); }
    14%, 100% { opacity: 0; transform: rotate(215deg) translateX(-400px); }
}

@keyframes shootingStarFall2 {
    0% { opacity: 0; transform: rotate(220deg) translateX(0); }
    2% { opacity: 1; }
    10% { opacity: 0.8; transform: rotate(220deg) translateX(-300px); }
    12%, 100% { opacity: 0; transform: rotate(220deg) translateX(-350px); }
}

@keyframes shootingStarFall3 {
    0% { opacity: 0; transform: rotate(210deg) translateX(0); }
    2% { opacity: 1; }
    8% { opacity: 0.8; transform: rotate(210deg) translateX(-280px); }
    10%, 100% { opacity: 0; transform: rotate(210deg) translateX(-320px); }
}

@keyframes shootingStarFall4 {
    0% { opacity: 0; transform: rotate(225deg) translateX(0); }
    2% { opacity: 1; }
    11% { opacity: 0.8; transform: rotate(225deg) translateX(-320px); }
    13%, 100% { opacity: 0; transform: rotate(225deg) translateX(-360px); }
}

/* Adjust text colors for dark background */
.about .section-tag {
    color: var(--gold);
}

.about h2 {
    color: #fff;
}

.about p {
    color: rgba(255,255,255,0.85);
}

.about .feature {
    color: rgba(255,255,255,0.9);
}

.about .feature-dot {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

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

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

.about-visual {
    position: relative;
}

.about-image-frame {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    opacity: 0.5;
}

.about-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    opacity: 0.15;
}

.about-decor {
    position: absolute;
    width: 160px;
    height: 160px;
    bottom: -40px;
    right: -40px;
    background-image: url('https://images.unsplash.com/photo-1532693322450-2cb5c511067d?w=300&q=80');
    background-size: 200%;
    background-position: center;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.05);
    animation: moonGlow 6s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% {
        filter: brightness(1.1) contrast(1.05);
    }
    50% {
        filter: brightness(1.25) contrast(1.1);
    }
}

.about-text .section-tag {
    justify-content: flex-start;
}

.about-text .section-tag::before {
    display: none;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-text p {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 400;
    color: var(--text);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary));
    border-radius: 50%;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--bg-cream);
}

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

.service-card {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.service-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
    filter: brightness(0.7);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(10,10,26,0.4) 35%,
        rgba(10,10,26,0.97) 70%,
        rgba(10,10,26,0.99) 100%);
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover::before {
    background: linear-gradient(180deg,
        rgba(212,175,55,0.08) 0%,
        rgba(10,10,26,0.5) 35%,
        rgba(10,10,26,0.98) 70%,
        rgba(10,10,26,1) 100%);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: var(--transition);
    z-index: 3;
}

.service-card:hover::after {
    border-color: var(--gold);
    box-shadow: inset 0 0 30px rgba(212,175,55,0.1), 0 0 40px rgba(212,175,55,0.2);
}

.service-card.featured::after {
    border-color: var(--gold);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: #0a0a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    stroke: #0a0a1a;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card-content > p {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    margin-bottom: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.service-benefits {
    display: none;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-display);
}

.price-currency {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-left: 2px;
}

.duration {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.btn-service {
    display: none;
}

.service-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-copper) 100%);
    border-radius: 25px;
    color: #0a0a1a;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.service-card-cta svg {
    width: 14px;
    height: 14px;
    stroke: #0a0a1a;
}

.service-card:hover .service-card-cta {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212,175,55,0.5);
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 100px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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.02'%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;
}

.benefits .section-tag {
    color: var(--accent-gold);
}

.benefits .section-tag::before,
.benefits .section-tag::after {
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.benefits .section-tag::after {
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.benefits .section-title {
    color: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    padding: 32px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-gold);
}

.benefit-item h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.benefit-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== BOOKING ===== */
.booking {
    padding: 120px 0;
    background: var(--white);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
}

.booking-info {
    background: linear-gradient(165deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    padding: 48px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.booking-info h3 {
    font-size: 1.6rem;
    margin-bottom: 32px;
    font-weight: 400;
    position: relative;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.info-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.95rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

.booking-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
    color: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}

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

/* ===== SHOP ===== */
.shop {
    padding: 120px 0;
    background: var(--bg-cream);
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-copper) 100%);
    color: #0a0a1a;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    position: relative;
    background: linear-gradient(165deg, rgba(20,20,45,0.95) 0%, rgba(15,15,35,0.98) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.03) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover::after {
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 0 30px rgba(212,175,55,0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.product-image {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(15,15,35,0.4) 70%,
        rgba(15,15,35,0.9) 100%);
    pointer-events: none;
    transition: var(--transition);
}

.product-card:hover .product-image::after {
    background: linear-gradient(180deg,
        rgba(212,175,55,0.1) 0%,
        transparent 30%,
        rgba(15,15,35,0.5) 70%,
        rgba(15,15,35,0.95) 100%);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(212,175,55,0.9);
    color: #0a0a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.product-info {
    position: relative;
    padding: 24px;
    z-index: 1;
}

.product-info h4 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font-display);
    transition: var(--transition);
}

.product-card:hover .product-info h4 {
    color: var(--gold);
}

.product-info p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-display);
}

.btn-add {
    padding: 10px 18px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-copper) 100%);
    color: #0a0a1a;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212,175,55,0.5);
}

.btn-add:active {
    transform: scale(1);
}

.btn-add svg {
    width: 16px;
    height: 16px;
    stroke: #0a0a1a;
    stroke-width: 2.5;
}

/* ===== ORACLE ===== */
.oracle {
    padding: 120px 0;
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.oracle-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.oracle-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--white);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.oracle .section-tag {
    color: var(--accent-gold);
}

.oracle .section-tag::before,
.oracle .section-tag::after {
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.oracle .section-tag::after {
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.oracle .section-title {
    color: #FFFFFF;
}

.oracle .section-desc {
    color: rgba(255,255,255,0.6);
}

.oracle-container {
    max-width: 640px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.oracle-mandala {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 40px;
}

.mandala-ring {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}

.ring-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotate 30s linear infinite;
}

.ring-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation: rotate 20s linear infinite reverse;
}

.ring-3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    animation: rotate 15s linear infinite;
}

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

.mandala-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
}

.mandala-center svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-gold);
}

.oracle-intro p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-weight: 300;
    font-size: 1.05rem;
}

.btn-oracle {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    color: var(--secondary);
    font-weight: 600;
    padding: 20px 56px;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(255,255,255,0.3);
}

.btn-oracle:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255,255,255,0.4);
}

.oracle-intro,
.oracle-drawing,
.oracle-result {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.oracle-result {
    animation: fadeInUp 0.8s ease-out;
}

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

.card-container {
    perspective: 1200px;
    margin-bottom: 40px;
}

.oracle-card {
    width: 200px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    animation: cardReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cardReveal {
    0% {
        transform: rotateY(180deg) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: rotateY(-10deg) scale(1.05);
    }
    100% {
        transform: rotateY(0) scale(1);
        opacity: 1;
    }
}

.card-front {
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.card-symbol {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.card-symbol svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-gold);
}

.card-title {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 400;
    text-align: center;
}

.card-message {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.card-message h4 {
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 500;
}

.card-message p {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    font-weight: 300;
}

.card-advice {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.card-advice strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Oracle Instruction */
.oracle-instruction {
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

/* Oracle Button with Icon */
.btn-oracle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-oracle svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Drawing Animation */
.oracle-drawing {
    text-align: center;
    padding: 40px 0;
    min-height: 350px;
}

.drawing-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    position: relative;
}

.floating-card {
    width: 80px;
    height: 120px;
    background: linear-gradient(165deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius);
    position: absolute;
    transform: translateX(var(--x)) rotate(var(--rotate));
    animation: shuffleCards 1.5s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-card.active {
    background: linear-gradient(165deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    box-shadow: 0 8px 32px rgba(255,255,255,0.4);
    z-index: 1;
}

@keyframes shuffleCards {
    0%, 100% { transform: translateX(var(--x)) rotate(var(--rotate)) translateY(0); }
    50% { transform: translateX(var(--x)) rotate(var(--rotate)) translateY(-15px); }
}

.drawing-text {
    color: rgba(255,255,255,0.7);
    margin-top: 32px;
    font-style: italic;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Card Flip Animation */
.oracle-card {
    width: 220px;
    height: 320px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
}

.oracle-card.flipping {
    animation: cardFlip 1.2s ease-in-out forwards;
}

@keyframes cardFlip {
    0% {
        transform: rotateY(0deg) scale(0.9);
    }
    50% {
        transform: rotateY(90deg) scale(1.1);
    }
    100% {
        transform: rotateY(180deg) scale(1);
    }
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.card-back,
.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-back {
    background: linear-gradient(165deg, #2a2a4a 0%, #1a1a2e 100%);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.card-back-design {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-back-border {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
}

.card-back-pattern {
    position: absolute;
    inset: 20px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
    border-radius: var(--radius-sm);
}

.card-back-symbol {
    width: 60px;
    height: 60px;
    stroke: var(--accent-gold);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

.card-front {
    background: linear-gradient(165deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.4);
    transform: rotateY(180deg);
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.card-front-border {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: calc(var(--radius-lg) - 4px);
    pointer-events: none;
}

.card-element-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* Card Message Container */
.card-message {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

/* Advice Header */
.advice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.advice-header svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold);
}

.advice-header strong {
    margin-bottom: 0;
}

/* Oracle Actions */
.oracle-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.oracle-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.oracle-actions .btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: var(--accent-gold);
}

/* Oracle History */
.oracle-history {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 32px;
    animation: fadeInUp 0.5s ease-out;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.history-header h4 {
    color: var(--accent-gold);
    font-weight: 400;
    font-size: 1rem;
}

.btn-close-history {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-close-history:hover {
    background: rgba(255,255,255,0.2);
}

.btn-close-history svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255,255,255,0.6);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    transition: var(--transition);
}

.history-item:hover {
    background: rgba(255,255,255,0.1);
}

.history-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.history-item-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-gold);
}

.history-item-info {
    flex: 1;
    text-align: left;
}

.history-item-name {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.history-item-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.history-empty {
    color: rgba(255,255,255,0.5);
    font-style: italic;
    text-align: center;
    padding: 24px;
}

/* ===== CART ===== */
.cart-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a5a8a 0%, #1a3a6a 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(30, 60, 110, 0.4);
    z-index: 999;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(30, 60, 110, 0.5);
}

.cart-btn svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--gold);
    color: #0a0a1a;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 28px;
    border-bottom: 1px solid var(--bg-cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 400;
}

.cart-close {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 3;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-close:hover svg {
    stroke: #ffffff;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-cream);
}

.cart-item-image {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #dc3545;
}

.cart-item-remove svg {
    width: 18px;
    height: 18px;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--bg-cream);
    background: var(--bg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cart-total span:last-child {
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.cart-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
}

.cart-empty svg {
    width: 64px;
    height: 64px;
    stroke: var(--bg-cream);
    margin-bottom: 16px;
}

/* ===== MODALS ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 24px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.4s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-cream);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
}

.modal-close:hover svg {
    stroke: var(--white);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text);
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 28px;
}

.order-summary {
    background: var(--bg-cream);
    padding: 24px;
    border-radius: var(--radius);
    margin: 24px 0;
}

.order-summary h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 500;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.order-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--primary-light);
    font-size: 1.1rem;
}

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

.success-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(76,175,80,0.3);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    stroke-width: 2.5;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-blue);
    color: #FFFFFF;
    padding: 80px 0 24px;
}

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

.footer-brand .logo-symbol {
    margin-bottom: 16px;
}

.footer-brand .logo-symbol svg {
    stroke: var(--accent-gold);
}

.footer-brand h3 {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 400;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    margin-bottom: 24px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-gold);
    flex-shrink: 0;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.social-links svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.7);
}

.social-links a:hover svg {
    stroke: var(--secondary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.admin-link {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
}

.admin-link:hover {
    color: var(--accent-gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,26,0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

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

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 120px 20px 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-chakras {
        gap: 12px;
        margin-top: 32px;
    }

    .hero-chakras .chakra-dot {
        width: 8px;
        height: 8px;
    }

    .hero-bg-effects {
        opacity: 0.5;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    /* About Mobile */
    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        min-height: 380px;
        position: relative;
        display: block;
    }

    .about-image-stack {
        height: 380px;
        position: relative;
        width: 100%;
        display: block;
    }

    .about-img {
        position: absolute;
        display: block;
        overflow: hidden;
        border-radius: var(--radius-lg);
    }

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    /* Services Mobile */
    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        height: 400px;
    }

    /* Booking Mobile */
    .booking-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Shop Mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    /* Cart Mobile */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    #cartBtn {
        width: 56px;
        height: 56px;
    }

    /* Oracle Mobile */
    .oracle-deck {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .oracle-card {
        height: 80px;
    }

    /* Modal Mobile */
    .checkout-modal-content {
        width: 95%;
        max-height: 90vh;
        padding: 24px;
    }
}

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    /* Hero Mobile Fix */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 100px 16px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .hero-date {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }

    .hero-chakras {
        gap: 8px;
        margin-top: 24px;
    }

    .hero-chakras .chakra-dot {
        width: 6px;
        height: 6px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* About Section Mobile Fix */
    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-image-stack {
        height: 320px;
        margin-bottom: 30px;
        position: relative;
        width: 100%;
        display: block;
    }

    .about-img {
        position: absolute;
        display: block;
    }

    .about-img.main {
        width: 75%;
        height: 85%;
        top: 0;
        left: 0;
    }

    .about-img.secondary {
        width: 50%;
        height: 50%;
        bottom: 0;
        right: 0;
    }

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-visual {
        width: 100%;
        min-height: 320px;
        position: relative;
        display: block;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Services Mobile Fix */
    .services {
        padding: 60px 0;
    }

    .service-card {
        height: 380px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-content > p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .service-price {
        padding-top: 12px;
    }

    .price {
        font-size: 1.5rem;
    }

    .service-card-cta {
        margin-top: 12px;
        padding: 10px 16px;
        font-size: 0.7rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .featured-badge {
        font-size: 8px;
        padding: 6px 12px;
    }

    /* Benefits Mobile */
    .benefits {
        padding: 60px 0;
    }

    .benefit-card {
        padding: 24px;
    }

    /* Booking Section Mobile */
    .booking {
        padding: 60px 0;
    }

    .booking-info {
        padding: 24px;
    }

    .booking-form {
        padding: 24px;
    }

    .info-item {
        gap: 12px;
    }

    /* Shop Mobile */
    .shop {
        padding: 60px 0;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .product-image {
        aspect-ratio: 1;
    }

    .product-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h4 {
        font-size: 1rem;
    }

    .product-info p {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .btn-add {
        padding: 8px 14px;
        font-size: 0.65rem;
    }

    .btn-add svg {
        width: 14px;
        height: 14px;
    }

    /* Oracle Mobile */
    .oracle {
        padding: 60px 0;
    }

    .oracle-container {
        min-height: 400px;
        margin: 20px auto 0;
        padding: 0 10px;
    }

    .oracle-mandala {
        width: 160px;
        height: 160px;
        margin: 0 auto 30px;
    }

    .mandala-center {
        width: 50px;
        height: 50px;
    }

    .oracle-intro p {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 24px;
    }

    .btn-oracle {
        padding: 16px 40px;
        font-size: 13px;
    }

    .oracle-drawing {
        min-height: 280px;
        padding: 30px 0;
    }

    .drawing-cards {
        height: 160px;
    }

    .floating-card {
        width: 60px;
        height: 90px;
    }

    .drawing-text {
        font-size: 0.9rem;
    }

    .oracle-deck {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .oracle-card {
        height: 70px;
    }

    .oracle-result {
        padding: 20px 10px;
    }

    .oracle-result .oracle-card {
        width: 160px;
        height: 240px;
        margin: 0 auto 20px;
    }

    .oracle-result .card-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .card-symbol {
        width: 50px;
        height: 50px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-element-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .card-message {
        padding: 20px 15px;
        margin-top: 20px;
    }

    .card-message h4 {
        font-size: 0.9rem;
    }

    .card-message > p {
        font-size: 0.85rem;
    }

    .card-advice {
        padding: 15px;
        margin-top: 15px;
    }

    .card-advice p {
        font-size: 0.8rem;
    }

    .oracle-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        width: 100%;
    }

    .oracle-actions .btn {
        width: 100%;
    }

    .card-name {
        font-size: 1.3rem;
    }

    .card-element {
        font-size: 0.7rem;
    }

    .oracle-message {
        padding: 20px;
    }

    .oracle-message h3 {
        font-size: 1.2rem;
    }

    .oracle-message p {
        font-size: 0.9rem;
    }

    .oracle-advice {
        padding: 16px;
        font-size: 0.85rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    /* Cart Button Mobile */
    #cartBtn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    /* Energy Banner Mobile */
    .energy-banner {
        padding: 50px 0;
    }

    .energy-banner h2 {
        font-size: 1.6rem;
    }

    .energy-banner p {
        font-size: 0.9rem;
    }

    /* Container padding */
    .container {
        padding: 0 16px;
    }

    /* Modal Mobile */
    .modal {
        padding: 16px;
    }

    .modal-content {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .modal-content h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-right: 40px;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

    /* Success Modal Mobile */
    .success-icon {
        width: 60px;
        height: 60px;
    }

    /* Hero Mobile - Image position */
    .hero::before {
        background-position: right center;
        background-size: auto 100%;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 2px 0;
    }

    .logo h2 {
        font-size: 0.85rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .nav-toggle {
        padding: 4px;
    }

    .logo-symbol svg {
        width: 22px;
        height: 22px;
    }

    /* Info Items Mobile */
    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto 8px;
    }
}

/* ===== ENERGY VISUAL EFFECTS ===== */

/* Energy Particles Container */
.energy-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

/* Floating Energy Orbs */
.energy-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: floatOrb linear infinite;
    opacity: 0.6;
}

.energy-orb.gold {
    background: radial-gradient(circle, rgba(90,130,190,0.8) 0%, rgba(90,130,190,0) 70%);
    box-shadow: 0 0 30px rgba(90,130,190,0.4);
}

.energy-orb.copper {
    background: radial-gradient(circle, rgba(60,100,160,0.7) 0%, rgba(60,100,160,0) 70%);
    box-shadow: 0 0 25px rgba(100,140,200,0.3);
}

.energy-orb.white {
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

@keyframes floatOrb {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.energy-wave {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    animation: waveExpand 4s ease-out infinite;
}

@keyframes waveExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Glowing Background Effect */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.glow-gold {
    background: rgba(255,255,255,0.3);
}

.glow-copper {
    background: rgba(200,200,255,0.2);
}

.glow-purple {
    background: rgba(147,112,219,0.15);
}

/* Section with Image Background */
.section-bg-image {
    position: relative;
    overflow: hidden;
}

.section-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
}

.section-bg-image > * {
    position: relative;
    z-index: 1;
}

/* Hero Enhanced */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.15);
    top: -200px;
    right: -100px;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(200,200,255,0.1);
    bottom: -150px;
    left: -100px;
    animation: pulseGlow 10s ease-in-out infinite 2s;
}

.hero-glow-3 {
    width: 400px;
    height: 400px;
    background: rgba(147,112,219,0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 6s ease-in-out infinite 1s;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

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

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

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

.image-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-gold), transparent, var(--accent-copper));
    z-index: -1;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-frame:hover::after {
    opacity: 1;
}

/* Energy Flow Lines */
.energy-flow {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: flowLine 3s linear infinite;
    opacity: 0.5;
}

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

/* Chakra Dots Animation */
.chakra-dots {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.chakra-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: chakraPulse 2s ease-in-out infinite;
}

.chakra-dot:nth-child(1) { background: #E53935; animation-delay: 0s; }
.chakra-dot:nth-child(2) { background: #FF9800; animation-delay: 0.2s; }
.chakra-dot:nth-child(3) { background: #FFEB3B; animation-delay: 0.4s; }
.chakra-dot:nth-child(4) { background: #4CAF50; animation-delay: 0.6s; }
.chakra-dot:nth-child(5) { background: #2196F3; animation-delay: 0.8s; }
.chakra-dot:nth-child(6) { background: #3F51B5; animation-delay: 1s; }
.chakra-dot:nth-child(7) { background: #9C27B0; animation-delay: 1.2s; }

@keyframes chakraPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px currentColor;
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 25px currentColor, 0 0 50px currentColor;
    }
}

/* Lotus Animation */
.lotus-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.1;
    animation: lotusFloat 6s ease-in-out infinite;
}

@keyframes lotusFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Meridian Lines */
.meridian-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.1;
}

.meridian-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
}

/* Section Decorative Elements */
.section-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.deco-circle {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
}

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

/* Image Gallery Enhanced */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 48px 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Aura Effect around Images */
.aura-effect {
    position: relative;
}

.aura-effect::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: auraBreath 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes auraBreath {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Hero Image Section */
.hero-visual {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 550px;
}

.hero-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image.main {
    width: 320px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-image.secondary {
    width: 200px;
    height: 260px;
    z-index: 1;
}

.hero-image.secondary.top-right {
    top: 0;
    right: 0;
}

.hero-image.secondary.bottom-left {
    bottom: 0;
    left: 0;
}

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

/* Services with Images */
.service-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    margin: -32px -32px 24px -32px;
    width: calc(100% + 64px);
}

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

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

/* About Section Enhanced */
.about-image-stack {
    position: relative;
    width: 100%;
    height: 500px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img.main {
    width: 70%;
    height: 80%;
    top: 10%;
    left: 0;
    z-index: 2;
}

.about-img.secondary {
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 4px solid var(--white);
}

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

/* Energy Banner */
.energy-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0d0d25 0%, #1a1a3a 100%);
    overflow: hidden;
}

.energy-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    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;
}

.energy-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF;
}

.energy-banner h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.energy-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .hero-image-container {
        width: 300px;
        height: 400px;
    }

    .hero-image.main {
        width: 250px;
        height: 320px;
    }

    .hero-image.secondary {
        width: 140px;
        height: 180px;
    }

    .about-image-stack {
        height: 400px;
    }

    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image {
        height: 160px;
    }
}
