/* ========================================
   MAGIDA SELENA — Love Magic Landing Page
   Dark Purple + Gold + Stars Aesthetic
   ======================================== */

/* === CSS Custom Properties === */
:root {
    /* Colors */
    --bg-primary: #0a0514;
    --bg-secondary: #120b22;
    --bg-tertiary: #1a0f30;
    --bg-card: rgba(26, 15, 48, 0.6);
    --bg-card-hover: rgba(40, 22, 72, 0.8);
    
    --purple-100: #e8d5f5;
    --purple-200: #c9a4e8;
    --purple-300: #a87bda;
    --purple-400: #8b54cc;
    --purple-500: #7b3fbf;
    --purple-600: #6a2eb0;
    --purple-700: #4a1e8a;
    --purple-800: #331260;
    --purple-900: #1a0a30;
    
    --gold-100: #fff4d6;
    --gold-200: #ffe6a3;
    --gold-300: #ffd666;
    --gold-400: #ffc933;
    --gold-500: #d4a843;
    --gold-600: #c9a84c;
    --gold-700: #a68a3a;
    --gold-800: #7d6628;
    --gold-900: #54431c;
    
    --text-primary: #f0e6ff;
    --text-secondary: #c4b0e0;
    --text-muted: #8a7aa6;
    --text-gold: #ffd666;
    
    --border-color: rgba(139, 84, 204, 0.2);
    --border-gold: rgba(212, 168, 67, 0.3);
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #1a0a30, #4a1e8a, #1a0a30);
    --gradient-gold: linear-gradient(135deg, #d4a843, #ffd666, #d4a843);
    --gradient-card: linear-gradient(145deg, rgba(74, 30, 138, 0.3), rgba(10, 5, 20, 0.8));
    --gradient-hero: linear-gradient(180deg, rgba(10, 5, 20, 0) 0%, rgba(10, 5, 20, 0.4) 50%, #0a0514 100%);
    
    /* Shadows */
    --shadow-purple: 0 0 30px rgba(139, 84, 204, 0.15);
    --shadow-gold: 0 0 30px rgba(212, 168, 67, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(139, 84, 204, 0.2);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--purple-700);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--purple-600);
}

/* === Stars Canvas === */
#starsCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === Selection === */
::selection {
    background: var(--purple-600);
    color: var(--gold-200);
}

/* === Container === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* === Section Common === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    background: rgba(212, 168, 67, 0.05);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === Gold & Glow Text === */
.gold {
    color: var(--gold-500);
    text-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.glow {
    position: relative;
    display: inline-block;
}

.glow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 214, 102, 0.5);
}

/* ======================
   NAVBAR
   ====================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 5, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold-500);
    animation: pulse 3s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 400;
}

.logo-highlight {
    color: var(--gold-500);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--gold-500);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.5);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition-normal);
}

/* ======================
   HERO SECTION
   ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(74, 30, 138, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 84, 204, 0.15) 0%, transparent 50%),
        var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(74, 30, 138, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.1rem;
    color: var(--gold-500);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--purple-500);
    background: rgba(139, 84, 204, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

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

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* === Hero Stats === */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-500);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* === Hero Scroll === */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

/* ======================
   ABOUT SECTION
   ====================== */
.about {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--bg-primary), transparent);
    pointer-events: none;
}

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

.about-image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
}

.about-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(139, 84, 204, 0.2), transparent 60%),
        radial-gradient(ellipse at 50% 70%, rgba(212, 168, 67, 0.1), transparent 50%),
        linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15), transparent 70%);
    border-radius: 50%;
    animation: breathe 4s ease-in-out infinite;
}

.avatar-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

.avatar-symbol {
    font-size: 5rem;
    color: var(--gold-500);
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.4);
    animation: float 6s ease-in-out infinite;
}

.avatar-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 4px;
}

.about-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.about-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 10px 16px;
    background: rgba(74, 30, 138, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
}

.about-content {
    padding: 20px 0;
}

.about-name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 8px;
}

.about-role {
    color: var(--gold-500);
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-primary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--gold-500);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.feature-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ======================
   SERVICES SECTION
   ====================== */
.services {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(74, 30, 138, 0.15), transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 168, 67, 0.08), transparent 40%);
}

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

.service-card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-500);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

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

.service-card.featured {
    border-color: var(--border-gold);
    background: 
        linear-gradient(145deg, rgba(212, 168, 67, 0.08), rgba(26, 15, 48, 0.6));
}

.service-card.featured::before {
    background: var(--gradient-gold);
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 84, 204, 0.15), transparent 70%);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon-glow {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(212, 168, 67, 0.2), transparent 70%);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(139, 84, 204, 0.08);
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-500);
    font-weight: 600;
}

.service-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.service-link:hover {
    color: var(--gold-500);
}

/* ======================
   REVIEWS SECTION
   ====================== */
.reviews {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
}

.review-card:hover {
    border-color: var(--purple-500);
    box-shadow: var(--shadow-purple);
}

.review-stars {
    color: var(--gold-500);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-500);
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

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

/* Reviews Controls */
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.reviews-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(26, 15, 48, 0.6);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-btn:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
    background: rgba(212, 168, 67, 0.1);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple-700);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.reviews-dot.active {
    background: var(--gold-500);
    width: 24px;
    border-radius: 4px;
}

/* ======================
   PROCESS SECTION
   ====================== */
.process {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(74, 30, 138, 0.1), transparent 70%);
}

.process-grid {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    position: relative;
    padding-bottom: 48px;
}

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

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-500);
    opacity: 0.4;
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-line {
    position: absolute;
    left: 30px;
    top: 56px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--border-gold), transparent);
}

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

/* ======================
   FAQ SECTION
   ====================== */
.faq {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

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

.faq-question:hover {
    color: var(--gold-500);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-500);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ======================
   CTA SECTION
   ====================== */
.cta {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: 
        linear-gradient(145deg, rgba(74, 30, 138, 0.2), rgba(10, 5, 20, 0.8));
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 168, 67, 0.05), transparent 50%);
    animation: rotate 20s linear infinite;
}

.cta-symbols {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-star {
    color: var(--gold-500);
    font-size: 1.2rem;
    animation: twinkle 2s ease-in-out infinite;
}

.cta-star:last-child {
    animation-delay: 1s;
}

.cta-moon {
    color: var(--gold-500);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-phone, .cta-messenger {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-phone-icon {
    font-size: 1.5rem;
}

.cta-phone-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-phone-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-500);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.cta-phone-number:hover {
    color: var(--gold-300);
}

.cta-socials {
    display: flex;
    gap: 12px;
}

.cta-social {
    padding: 6px 16px;
    background: rgba(74, 30, 138, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.cta-social:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
    background: rgba(212, 168, 67, 0.1);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ======================
   FOOTER
   ====================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-500);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

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

.footer-links a:hover {
    color: var(--gold-500);
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
    background: rgba(212, 168, 67, 0.1);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ======================
   COOKIE BANNER
   ====================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    padding: 20px 24px;
    background: rgba(26, 15, 48, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-card);
    animation: slideUp 0.5s ease-out;
}

.cookie-banner p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex: 1;
}

.cookie-accept {
    padding: 8px 20px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.cookie-accept:hover {
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.cookie-banner.hidden {
    display: none;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

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

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

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

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

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ======================
   RESPONSIVE
   ====================== */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 5, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 0px);
    }
    
    .process-step {
        gap: 20px;
    }
    
    .step-number {
        font-size: 2.2rem;
        min-width: 40px;
    }
    
    .step-line {
        left: 20px;
        top: 40px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-contact {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
        flex-direction: column;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* ======================
   HERO BG IMAGE
   ====================== */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/5696535/pexels-photo-5696535.jpeg?auto=compress&cs=tinysrgb&w=1400');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.3) saturate(0.6);
    z-index: 0;
}

/* ======================
   STORY DIVIDERS
   Full-width parallax quote breaks
   ====================== */
.story-divider {
    position: relative;
    height: 400px;
    overflow: hidden;
    z-index: 1;
}

.story-divider-wide {
    height: 500px;
}

.story-divider-img {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.35) saturate(0.7);
    transition: transform 0.1s linear;
}

.story-divider-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, var(--bg-primary) 0%, transparent 20%, transparent 80%, var(--bg-primary) 100%),
        linear-gradient(90deg, rgba(10, 5, 20, 0.4), rgba(10, 5, 20, 0.2), rgba(10, 5, 20, 0.4));
    z-index: 1;
}

.story-divider-text {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    max-width: 700px;
    margin: 0 auto;
}

.story-divider-icon {
    font-size: 2rem;
    color: var(--gold-500);
    margin-bottom: 20px;
    animation: breathe 4s ease-in-out infinite;
}

.story-divider-text p {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.8;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.story-divider-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold-500);
    margin-top: 16px;
    letter-spacing: 1px;
}

/* ======================
   ABOUT PHOTO SECTION
   Real images replace the placeholder
   ====================== */
.about-image-main {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-main:hover .about-photo {
    transform: scale(1.03);
}

.about-photo-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 50%, rgba(10, 5, 20, 0.8) 100%),
        radial-gradient(ellipse at 50% 20%, rgba(139, 84, 204, 0.15), transparent 70%);
    pointer-events: none;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.about-gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
}

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

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(10, 5, 20, 0.9));
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================
   SERVICE CARD WITH IMAGE
   Updated card layout with photo header
   ====================== */
.service-card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    padding: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-500);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 5;
}

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

.service-card.featured {
    border-color: var(--border-gold);
    background: 
        linear-gradient(145deg, rgba(212, 168, 67, 0.08), rgba(26, 15, 48, 0.6));
}

.service-card.featured::before {
    background: var(--gradient-gold);
    opacity: 1;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 40%, rgba(26, 15, 48, 0.95) 100%);
    pointer-events: none;
}

.service-card-body {
    padding: 0 28px 28px;
    position: relative;
    z-index: 2;
    margin-top: -20px;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

/* Remove old service-icon since we use images now */
.service-icon,
.service-icon-glow {
    display: none;
}

/* ======================
   CTA BG IMAGE
   ====================== */
.cta {
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/4666748/pexels-photo-4666748.jpeg?auto=compress&cs=tinysrgb&w=1400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.15) saturate(0.5);
    z-index: 0;
}

/* Story Divider & CTA responsive */
@media (max-width: 1024px) {
    .story-divider-img {
        background-attachment: scroll;
    }
    
    .cta-bg-image {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .story-divider {
        height: 300px;
    }
    
    .story-divider-wide {
        height: 350px;
    }
    
    .story-divider-text p {
        font-size: 1.1rem;
    }
    
    .story-divider-text {
        padding: 0 20px;
    }
    
    .about-gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-image {
        height: 160px;
    }
}

/* === Print Styles === */
@media print {
    .navbar,
    #starsCanvas,
    .cookie-banner,
    .hero-scroll,
    .reviews-controls {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title {
        color: #2d0a4e;
    }
}
