:root {
    /* Mystique Palette */
    --color-deep-bg: #1A0B2E;
    --color-gold: #D4AF37;
    --color-gold-glow: rgba(212, 175, 55, 0.3);
    --color-white: #F8F9FA;
    --color-glass-surface: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    --color-text-muted: rgba(248, 249, 250, 0.7);

    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Effects */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 9999px;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px -5px var(--color-gold-glow);
    --backdrop-blur: blur(12px);
}

html {
    scroll-behavior: smooth;
}

/* Base Setup */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-deep-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle grain or gradient could be added here */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(130, 26, 221, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    min-height: 100vh;
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

.text-muted {
    color: var(--color-text-muted);
}

/* Utility: Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility: Glassmorphism */
.glass-card {
    background: var(--color-glass-surface);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Utility: Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.cell-video {
    grid-column: span 12;
    min-height: 400px;
}

.cell-status {
    grid-column: span 12;
}

.cell-stat {
    grid-column: span 6;
}

@media (min-width: 768px) {
    .cell-status {
        grid-column: span 7;
    }

    .cell-stat-1 {
        grid-column: span 2;
    }

    .cell-stat-2 {
        grid-column: span 3;
    }
}

/* Button Component */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8962e 100%);
    color: #1A0B2E;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px -5px var(--color-gold-glow);
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
}

.nav-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

/* Mobile Sticky Call */
.sticky-call {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 3rem);
    max-width: 400px;
    display: flex;
    justify-content: center;
}

/* Navigation */
nav {
    display: none;
}

@media (min-width: 768px) {
    nav {
        display: block;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-links a {
        color: var(--color-white);
        text-decoration: none;
        font-size: 0.95rem;
        opacity: 0.8;
        transition: opacity 0.2s;
    }

    .nav-links a:hover {
        opacity: 1;
        color: var(--color-gold);
    }

    .sticky-call {
        display: none;
        /* Hide sticky button on desktop, use header CTA */
    }
}

/* Testimonials Carousel */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    padding: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-style: normal;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-gold);
    margin-right: 10px;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Card Improvements */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.service-card-link .card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: -1;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.service-card-link:hover .card-bg-img {
    transform: scale(1.1);
    opacity: 0.25;
}

.service-card-link:hover {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 30px var(--color-gold-glow);
}

.text-gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    transition: gap 0.3s ease;
}

.service-card-link:hover .text-gold-btn {
    gap: 15px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* ... existing animations ... */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.fade-up {
    transform: translateY(30px);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

/* Page Transitions */
body {
    animation: fadeInUp 1s ease-out;
}