/* =====================================================
   ELYSIA CLINIC — Estetik & Güzellik Kliniği
   Premium Theme CSS
   Color Palette: Deep Purple + Gold + Luxury Dark
   ===================================================== */

/* =====================================================
   §1. CSS VARIABLES & ROOT
   ===================================================== */
:root {
    /* Primary Colors — Deep Purple Family */
    --primary: #7C3AED;
    --primary-light: #A78BFA;
    --primary-dark: #5B21B6;
    --primary-deeper: #4C1D95;
    --primary-soft: #DDD6FE;

    /* Secondary Colors — Royal Gold */
    --gold: #D4AF37;
    --gold-light: #F5D060;
    --gold-dark: #B8960C;
    --gold-soft: #FEF3C7;

    /* Dark Palette */
    --dark-900: #0A0012;
    --dark-800: #120024;
    --dark-700: #1A0233;
    --dark-600: #2D0A4E;
    --dark-500: #3B1166;

    /* Light Palette */
    --light-100: #FFFFFF;
    --light-200: #FAF5FF;
    --light-300: #F3E8FF;
    --light-400: #E9D5FF;
    --light-500: #D8B4FE;

    /* Accent Colors */
    --rose: #F43F5E;
    --rose-light: #FDA4AF;
    --teal: #2DD4BF;
    --lavender: #C4B5FD;

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E8D5F5;
    --text-muted: #A78BFA;
    --text-dark: #1A0233;
    --text-body: #6B7280;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #A78BFA 50%, #D4AF37 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F5D060 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #0A0012 0%, #1A0233 50%, #0A0012 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 0, 18, 0.95) 0%, rgba(26, 2, 51, 0.85) 50%, rgba(10, 0, 18, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, rgba(124, 58, 237, 0.08) 0%, rgba(212, 175, 55, 0.05) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-purple-gold: linear-gradient(90deg, #7C3AED, #D4AF37);
    --gradient-shine: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    --gradient-violet: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #A78BFA 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.1);
    --shadow-md: 0 8px 30px rgba(124, 58, 237, 0.15);
    --shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.2);
    --shadow-xl: 0 30px 80px rgba(124, 58, 237, 0.25);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.2);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.4);
    --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-inner: inset 0 2px 10px rgba(0, 0, 0, 0.2);

    /* Borders */
    --border-light: 1px solid rgba(124, 58, 237, 0.15);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1320px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* =====================================================
   §2. RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark-800);
    font-size: 16px;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--dark-800);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--gold));
    border-radius: var(--radius-full);
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--gold-light));
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--dark-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

::selection {
    background: var(--primary);
    color: var(--text-white);
}

/* =====================================================
   §3. PRELOADER
   ===================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

.preloader-spinner::before,
.preloader-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.preloader-spinner::before {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--gold);
    animation: spinLoader 1.2s linear infinite;
}

.preloader-spinner::after {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 3px solid transparent;
    border-bottom-color: var(--gold);
    border-left-color: var(--primary-light);
    animation: spinLoader 0.8s linear infinite reverse;
}

@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

.preloader-sparkles {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: preloaderSparkle 2s infinite;
}

.preloader-sparkle:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; }
.preloader-sparkle:nth-child(2) { top: 25%; right: 0; animation-delay: 0.3s; }
.preloader-sparkle:nth-child(3) { bottom: 0; left: 50%; animation-delay: 0.6s; }
.preloader-sparkle:nth-child(4) { top: 25%; left: 0; animation-delay: 0.9s; }

@keyframes preloaderSparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* =====================================================
   §4. CUSTOM CURSOR
   ===================================================== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.cursor-ring.click {
    transform: scale(0.8);
}

/* =====================================================
   §5. SCROLL PROGRESS BAR
   ===================================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-purple-gold);
    z-index: 99996;
    transition: width 0.1s linear;
    box-shadow: var(--shadow-glow);
}

/* =====================================================
   §6. TOP BAR
   ===================================================== */
.top-bar {
    background: var(--dark-800);
    padding: 10px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.top-bar-item:hover {
    color: var(--gold);
}

.top-bar-item i {
    color: var(--gold);
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-light);
    font-size: 0.8rem;
    transition: var(--transition-base);
}

.top-bar-social a:hover {
    background: var(--gold);
    color: var(--dark-900);
    transform: translateY(-2px);
}

/* =====================================================
   §7. HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 0, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: var(--shadow-lg);
}

.header.scrolled .header-main {
    padding: 10px 0;
}

.header.scrolled .top-bar {
    display: none;
}

.header .container {
    /* container inside header */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    animation: logoShine 3s infinite;
}

@keyframes logoShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-text span {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    letter-spacing: 0.5px;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-purple-gold);
    transition: var(--transition-base);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 60%;
}

/* CTA Button in Nav */
.nav-cta {
    padding: 12px 28px !important;
    background: var(--gradient-primary) !important;
    color: var(--text-white) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: var(--transition-slow);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: var(--gold);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 0, 18, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    padding: 15px 30px;
    display: block;
    text-align: center;
    transition: var(--transition-base);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu a:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

/* =====================================================
   §8. CONTAINER & LAYOUT
   ===================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: var(--dark-900);
}

.section-darker {
    background: var(--dark-800);
}

.section-gradient {
    background: var(--gradient-dark);
}

.section-purple {
    background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
}

/* =====================================================
   §9. SECTION HEADERS
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-badge i {
    color: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-purple-gold);
    margin: 25px auto 0;
    border-radius: var(--radius-full);
    position: relative;
}

.section-line::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-glow-gold);
}

/* Light Section Headers */
.section-light .section-title {
    color: var(--text-dark);
}

.section-light .section-subtitle {
    color: var(--text-body);
}

/* =====================================================
   §10. HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: floatParticle 6s infinite;
    opacity: 0;
}

.hero-particle:nth-child(odd) {
    background: var(--primary-light);
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-badge i {
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-title span {
    display: block;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .hero-title-accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: 3.5rem;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}

.hero-description {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.9s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero decorations */
.hero-decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.15);
    z-index: 1;
    animation: pulseDecor 4s infinite;
}

.hero-decor-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -200px;
    animation-delay: 0s;
}

.hero-decor-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -150px;
    border-color: rgba(212, 175, 55, 0.15);
    animation-delay: 1s;
}

.hero-decor-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes pulseDecor {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.3s both;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* =====================================================
   §11. BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark-900);
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(124, 58, 237, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark-900);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--text-white);
    backdrop-filter: blur(20px);
}

.btn-glass:hover {
    background: rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 20px 45px;
    font-size: 1.05rem;
}

.btn i {
    transition: var(--transition-base);
}

.btn:hover i {
    transform: translateX(3px);
}

/* =====================================================
   §12. CARDS — GLASSMORPHISM
   ===================================================== */
.glass-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-base);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover::after {
    opacity: 1;
}

/* Service Card */
.service-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-purple-gold);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    transition: var(--transition-base);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.service-card:hover .service-icon {
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.service-card .service-link:hover {
    gap: 12px;
}

/* =====================================================
   §13. SERVICES GRID
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.services-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* =====================================================
   §14. ABOUT / FEATURES
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 0, 18, 0.8) 100%);
    border-radius: var(--radius-lg);
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(124, 58, 237, 0.9);
    backdrop-filter: blur(20px);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    border: var(--border-glass);
}

.about-image-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 0.85rem;
    color: var(--text-white);
    line-height: 1.4;
}

.about-image-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    padding-left: 20px;
}

.about-content .section-badge {
    margin-bottom: 20px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content .about-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.about-feature h4 {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =====================================================
   §15. BEFORE / AFTER SLIDER
   ===================================================== */
.ba-section {
    padding: var(--section-padding);
    background: var(--dark-800);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: grab;
    border: var(--border-glass);
    box-shadow: var(--shadow-lg);
}

.ba-slider:active {
    cursor: grabbing;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--gold);
    z-index: 3;
    transform: translateX(-50%);
    cursor: grab;
}

.ba-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-gold);
}

.ba-handle::after {
    content: '⟨ ⟩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-900);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 4;
    letter-spacing: 8px;
}

.ba-label {
    position: absolute;
    bottom: 15px;
    padding: 6px 16px;
    background: rgba(10, 0, 18, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 4;
}

.ba-label-before {
    left: 15px;
}

.ba-label-after {
    right: 15px;
}

.ba-info {
    padding: 20px 0 0;
    text-align: center;
}

.ba-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.ba-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =====================================================
   §16. TESTIMONIALS
   ===================================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--dark-900);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(124, 58, 237, 0.1);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-white);
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--gold);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.15);
    border: var(--border-glass);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
}

.testimonial-btn:hover {
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-dot.active {
    background: var(--gold);
    box-shadow: var(--shadow-glow-gold);
    transform: scale(1.2);
}

/* =====================================================
   §17. TEAM SECTION
   ===================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.3);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 0, 18, 0.9) 100%);
}

.team-card-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.team-card:hover .team-card-social {
    opacity: 1;
    transform: translateY(0);
}

.team-card-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-base);
}

.team-card-social a:hover {
    background: var(--gold);
    color: var(--dark-900);
}

.team-card-info {
    padding: 25px;
    text-align: center;
}

.team-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.team-card-info p {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

/* =====================================================
   §18. GALLERY / PORTFOLIO
   ===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-item.gallery-tall {
    grid-row: span 2;
    height: 100%;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 0, 18, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.gallery-item-info p {
    font-size: 0.8rem;
    color: var(--gold);
}

.gallery-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-900);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-item-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 28px;
    border-radius: var(--radius-full);
    background: rgba(124, 58, 237, 0.1);
    border: var(--border-glass);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* =====================================================
   §19. LIGHTBOX
   ===================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 18, 0.95);
    backdrop-filter: blur(30px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.5);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 5;
}

.lightbox-close:hover {
    background: var(--rose);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.5);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* =====================================================
   §20. PRICING / PACKAGES
   ===================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card.featured {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-purple-gold);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-popular {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-gold);
    color: var(--dark-900);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
}

.pricing-card.featured .pricing-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.pricing-price {
    margin-bottom: 30px;
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-price .period {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.pricing-features {
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

.pricing-features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* =====================================================
   §21. BLOG / JOURNAL
   ===================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.3);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 18px;
    background: rgba(124, 58, 237, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card-meta span i {
    color: var(--gold);
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-base);
}

.blog-card:hover .blog-card-body h3 {
    color: var(--gold);
}

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.blog-card-link:hover {
    color: var(--gold);
    gap: 12px;
}

/* =====================================================
   §22. CTA / BANNER
   ===================================================== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-700);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content .section-title {
    margin-bottom: 20px;
}

.cta-content p {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-top: 20px;
}

.cta-phone i {
    font-size: 1.5rem;
    animation: phoneRing 2s infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
}

/* =====================================================
   §23. CONTACT / APPOINTMENT FORM
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.contact-info-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
}

.contact-info-card h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    color: var(--text-white);
    font-size: 1rem;
}

.contact-info-card a {
    color: var(--text-white);
}

.contact-info-card a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 50px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(10, 0, 18, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(167, 139, 250, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.form-group select option {
    background: var(--dark-800);
    color: var(--text-white);
}

/* =====================================================
   §24. MAP SECTION
   ===================================================== */
.map-section {
    position: relative;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 40px;
    border: var(--border-glass);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(40%) brightness(0.7) contrast(1.1);
    transition: var(--transition-base);
}

.map-section:hover iframe {
    filter: grayscale(20%) brightness(0.8) contrast(1.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 0, 18, 0.5), rgba(124, 58, 237, 0.1));
    pointer-events: none;
}

/* =====================================================
   §25. STATS / COUNTERS
   ===================================================== */
.stats-section {
    padding: 80px 0;
    background: var(--dark-800);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(124, 58, 237, 0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   §26. MARQUEE / SCROLL TEXT
   ===================================================== */
.marquee-section {
    padding: 30px 0;
    background: var(--dark-800);
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(124, 58, 237, 0.15);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    flex-shrink: 0;
}

.marquee-item .marquee-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   §27. FOOTER
   ===================================================== */
.footer {
    background: var(--dark-800);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-purple-gold);
}

.footer-main {
    padding: 80px 0 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-900);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-purple-gold);
    border-radius: var(--radius-full);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 1px;
    background: var(--primary);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 12px;
    background: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 0.9rem;
}

.footer-contact-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: var(--text-muted);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* =====================================================
   §28. BACK TO TOP
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: backToTopPulse 2s infinite;
    z-index: -1;
}

@keyframes backToTopPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* =====================================================
   §29. PAGE HERO / INNER PAGES
   ===================================================== */
.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-800);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 0, 18, 0.9) 0%, rgba(26, 2, 51, 0.8) 50%, rgba(10, 0, 18, 0.95) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.page-hero-title span {
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.page-hero-breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-base);
}

.page-hero-breadcrumb a:hover {
    color: var(--gold);
}

.page-hero-breadcrumb .separator {
    color: var(--gold);
    font-size: 0.7rem;
}

.page-hero-breadcrumb .current {
    color: var(--gold);
    font-weight: 600;
}

/* Page hero decorations */
.page-hero-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.1);
    z-index: 1;
}

.page-hero-decor:nth-child(1) {
    top: -100px;
    right: -100px;
}

.page-hero-decor:nth-child(2) {
    bottom: -100px;
    left: -100px;
    border-color: rgba(212, 175, 55, 0.1);
}

/* =====================================================
   §30. PROCESS / STEPS
   ===================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--gold), var(--primary), transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--dark-900);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    transition: var(--transition-base);
    position: relative;
}

.process-step:hover .process-number {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================================================
   §31. FAQ / ACCORDION
   ===================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 30px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =====================================================
   §32. WHATSAPP BUTTON
   ===================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    z-index: 998;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-base);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* =====================================================
   §33. NOISE TEXTURE OVERLAY
   ===================================================== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* =====================================================
   §34. FLOATING DECORATIONS
   ===================================================== */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 15px) rotate(-5deg); }
    75% { transform: translate(15px, 10px) rotate(3deg); }
}

/* =====================================================
   §35. TREATMENT DETAIL CARD
   ===================================================== */
.treatment-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    transition: var(--transition-base);
}

.treatment-detail-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-lg);
}

.treatment-detail-card:nth-child(even) {
    direction: rtl;
}

.treatment-detail-card:nth-child(even) > * {
    direction: ltr;
}

.treatment-detail-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.treatment-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.treatment-detail-card:hover .treatment-detail-image img {
    transform: scale(1.05);
}

.treatment-detail-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.treatment-detail-content .treatment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: fit-content;
}

.treatment-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.treatment-detail-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.treatment-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.treatment-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.treatment-spec i {
    color: var(--gold);
    width: 18px;
}

/* =====================================================
   §36. BRANDS / PARTNERS
   ===================================================== */
.brands-section {
    padding: 60px 0;
    background: var(--dark-800);
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.brands-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-item {
    opacity: 0.4;
    transition: var(--transition-base);
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-item img {
    height: 40px;
    width: auto;
}

/* =====================================================
   §37. NEWSLETTER
   ===================================================== */
.newsletter-section {
    padding: 60px 0;
    background: var(--dark-700);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
}

.newsletter-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(10, 0, 18, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form input::placeholder {
    color: rgba(167, 139, 250, 0.4);
}

/* =====================================================
   §38. ANIMATIONS — REVEAL ON SCROLL
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* =====================================================
   §39. PAGE-SPECIFIC ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: var(--shadow-xl); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =====================================================
   §40. APPOINTMENT CTA BAR
   ===================================================== */
.appointment-bar {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--dark-600) 100%);
    overflow: hidden;
}

.appointment-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.appointment-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.appointment-bar-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.appointment-bar-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* =====================================================
   §41. ABOUT PAGE — TIMELINE
   ===================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--gold), var(--primary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.timeline-content:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-md);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 4px solid var(--dark-900);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: var(--shadow-glow-gold);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =====================================================
   §42. ABOUT PAGE — VALUES
   ===================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-purple-gold);
    opacity: 0;
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =====================================================
   §43. CERTIFICATIONS
   ===================================================== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cert-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition-base);
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.cert-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.cert-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.cert-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =====================================================
   §44. BLOG DETAIL STYLES
   ===================================================== */
.blog-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-detail-category {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-detail h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--gold);
}

.blog-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    max-height: 500px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 35px 0 15px;
}

.blog-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin: 30px 0 10px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content blockquote {
    padding: 25px 30px;
    background: rgba(124, 58, 237, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 30px 0;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
}

.blog-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-detail-content ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.blog-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* =====================================================
   §45. WORKING HOURS
   ===================================================== */
.hours-card {
    background: rgba(124, 58, 237, 0.05);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.hours-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: var(--text-light);
    font-weight: 500;
}

.hours-item .time {
    color: var(--gold);
    font-weight: 600;
}

.hours-item.closed .time {
    color: var(--rose);
}

/* =====================================================
   §46. RESPONSIVE — TABLET (max-width: 1024px)
   ===================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-title .hero-title-accent {
        font-size: 2.5rem;
    }

    .services-grid,
    .services-grid-3,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item::after {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .about-grid {
        gap: 50px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .ba-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .treatment-detail-card {
        grid-template-columns: 1fr;
    }

    .treatment-detail-card:nth-child(even) {
        direction: ltr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
        width: 100%;
        max-width: 450px;
    }
}

/* =====================================================
   §47. RESPONSIVE — MOBILE (max-width: 768px)
   ===================================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Header */
    .header .header-main {
        padding: 12px 0;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero */
    .hero {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .hero-title-accent {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    /* Services */
    .services-grid,
    .services-grid-3,
    .services-grid-4 {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.gallery-wide,
    .gallery-item.gallery-tall {
        grid-column: auto;
        grid-row: auto;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
        text-align: left !important;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Page Hero */
    .page-hero {
        min-height: 40vh;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Appointment Bar */
    .appointment-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    /* Cert */
    .cert-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Blog Detail */
    .blog-detail h1 {
        font-size: 1.8rem;
    }

    .blog-detail-meta {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Lightbox */
    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    /* Cursor — hide on mobile */
    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }
}

/* =====================================================
   §48. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ===================================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-title .hero-title-accent {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    .glass-card {
        padding: 25px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .mobile-menu a {
        font-size: 1.5rem;
    }
}

/* =====================================================
   §49. UTILITY CLASSES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-purple { color: var(--primary-light); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

.hidden { display: none; }
.visible { display: block; }

.w-100 { width: 100%; }

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   §50. PRINT STYLES
   ===================================================== */
@media print {
    .preloader,
    .cursor-dot,
    .cursor-ring,
    .scroll-progress,
    .back-to-top,
    .whatsapp-btn,
    .noise-overlay,
    .header,
    .mobile-menu {
        display: none !important;
    }

    body {
        background: white;
        color: #333;
    }

    .section {
        padding: 30px 0;
    }

    .glass-card,
    .service-card {
        border: 1px solid #ddd;
        background: white;
    }
}
