/*
 * GlamourSchedule - Modern Luxury Design System
 * Version: 2.0
 * Style: Glassmorphism + Dark Luxury + Rose Gold Accents
 */

/* ========================================
   CSS VARIABLES - DESIGN TOKENS
   ======================================== */
:root {
    /* Primary Color Palette - Dark Luxury */
    --color-black: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-dark-gray: #2d2d2d;
    --color-medium-gray: #4a4a4a;
    --color-light-gray: #8a8a8a;
    --color-silver: #c0c0c0;
    --color-white: #ffffff;
    --color-off-white: #f8f7f4;

    /* Accent Colors - Rose Gold & Luxury */
    --color-rose-gold: #b76e79;
    --color-rose-gold-light: #d4a5a5;
    --color-rose-gold-dark: #8b4d57;
    --color-gold: #d4af37;
    --color-champagne: #f7e7ce;
    --color-blush: #ffd6e0;
    --color-mauve: #c9b1bd;

    /* Gradient Colors */
    --gradient-luxury: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    --gradient-rose: linear-gradient(135deg, #b76e79 0%, #d4a5a5 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7e7ce 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(183,110,121,0.3) 0%, rgba(26,26,26,0.9) 50%, rgba(10,10,10,1) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-light: rgba(255, 255, 255, 0.08);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-light: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(40px);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-heading: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Italiana', 'Didot', Georgia, serif;

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 2vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.8rem + 2.5vw, 3.5rem);
    --text-5xl: clamp(3rem, 2rem + 4vw, 5rem);
    --text-6xl: clamp(3.75rem, 2.5rem + 5vw, 7rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(183, 110, 121, 0.3);
    --shadow-glow-gold: 0 0 40px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-toast: 400;
    --z-tooltip: 500;
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-black);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--color-rose-gold);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-rose-gold-light);
}

/* Selection */
::selection {
    background: var(--color-rose-gold);
    color: var(--color-white);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

.display-text {
    font-family: var(--font-accent);
    font-size: var(--text-6xl);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-rose-gold);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-silver);
}

a {
    color: var(--color-rose-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-rose-gold-light);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-sm { max-width: 800px; }
.container-md { max-width: 1000px; }
.container-lg { max-width: 1200px; }
.container-xl { max-width: 1600px; }

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section-dark {
    background: var(--gradient-dark);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-md) 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.navbar-logo .logo-accent {
    color: var(--color-rose-gold);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    list-style: none;
}

.navbar-menu a {
    color: var(--color-silver);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-rose-gold);
    transition: width var(--transition-base);
}

.navbar-menu a:hover {
    color: var(--color-white);
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-sm);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

/* Primary Button - Rose Gold */
.btn-primary {
    background: var(--gradient-rose);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(183, 110, 121, 0.5);
}

/* Secondary Button - Outline */
.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-rose-gold);
}

.btn-secondary:hover {
    background: var(--color-rose-gold);
    transform: translateY(-2px);
}

/* Glass Button */
.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
}

.btn-glass:hover {
    background: var(--glass-bg-strong);
    border-color: var(--glass-border-light);
}

/* Gold Button */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-glow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-base);
}

/* Icon Button */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

/* Animated Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-rose-gold);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--color-mauve);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
}

.hero-title .highlight {
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--color-silver);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-4xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--glass-border);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--color-white);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-light-gray);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
}

.scroll-indicator-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-rose-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ========================================
   GLASS CARDS
   ======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

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

.glass-card-strong {
    background: var(--glass-bg-strong);
}

/* Service Card */
.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card-image {
    position: relative;
    height: 280px;
    margin: calc(-1 * var(--space-xl));
    margin-bottom: var(--space-lg);
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-black), transparent 50%);
}

.service-card-category {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-rose-gold);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.service-card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.service-card-description {
    font-size: var(--text-sm);
    color: var(--color-light-gray);
    margin-bottom: var(--space-lg);
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card-price {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-rose-gold);
}

.service-card-price span {
    font-size: var(--text-sm);
    color: var(--color-light-gray);
}

/* Business Card */
.business-card {
    position: relative;
    overflow: hidden;
}

.business-card-image {
    height: 200px;
    margin: calc(-1 * var(--space-xl));
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.business-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.business-card-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--color-gold);
    color: var(--color-black);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.business-card-content {
    padding: 0 var(--space-sm);
}

.business-card-name {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.business-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-light-gray);
    margin-bottom: var(--space-md);
}

.business-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.business-card-stars {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
}

.business-card-reviews {
    font-size: var(--text-sm);
    color: var(--color-light-gray);
}

.business-card-services {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.business-card-service-tag {
    padding: var(--space-xs) var(--space-sm);
    background: var(--glass-bg-strong);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-silver);
}

/* ========================================
   SEARCH & FILTERS
   ======================================== */
.search-section {
    position: relative;
    margin-top: calc(-1 * var(--space-4xl));
    z-index: 10;
}

.search-container {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur-strong);
    -webkit-backdrop-filter: var(--glass-blur-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr auto;
    gap: var(--space-md);
    align-items: end;
}

@media (max-width: 1024px) {
    .search-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .search-form {
        grid-template-columns: 1fr;
    }
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.search-field label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-light-gray);
}

.search-field input,
.search-field select {
    padding: var(--space-md) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.search-field input::placeholder {
    color: var(--color-medium-gray);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--color-rose-gold);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.2);
}

.search-field select option {
    background: var(--color-charcoal);
    color: var(--color-white);
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-base);
}

.category-card:hover {
    background: var(--glass-bg-strong);
    border-color: var(--color-rose-gold);
    transform: translateY(-8px);
}

.category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.category-count {
    font-size: var(--text-xs);
    color: var(--color-light-gray);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card {
    text-align: center;
    padding: var(--space-2xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-size: 32px;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-rose);
    border-color: transparent;
    transform: scale(1.1);
}

.feature-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.feature-description {
    font-size: var(--text-base);
    color: var(--color-light-gray);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    background: var(--gradient-luxury);
    position: relative;
}

.testimonial-card {
    padding: var(--space-2xl);
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    line-height: 1.5;
}

.testimonial-quote::before {
    content: '"';
    display: block;
    font-size: var(--text-5xl);
    color: var(--color-rose-gold);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-rose-gold);
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-white);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--color-light-gray);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: var(--space-5xl) 0;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-rose);
    opacity: 0.1;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: var(--space-lg);
}

.cta-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-charcoal);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--glass-border);
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.footer-logo span {
    color: var(--color-rose-gold);
}

.footer-description {
    font-size: var(--text-sm);
    color: var(--color-light-gray);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

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

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-light-gray);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

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

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

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-light-gray);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--color-light-gray);
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-silver);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: var(--color-medium-gray);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-rose-gold);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.2);
}

.form-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */
/* Fade In */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Slide Up */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

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

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 0.4s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.animate > *:nth-child(1) { animation: slideUp 0.5s ease forwards 0.1s; }
.stagger-children.animate > *:nth-child(2) { animation: slideUp 0.5s ease forwards 0.2s; }
.stagger-children.animate > *:nth-child(3) { animation: slideUp 0.5s ease forwards 0.3s; }
.stagger-children.animate > *:nth-child(4) { animation: slideUp 0.5s ease forwards 0.4s; }
.stagger-children.animate > *:nth-child(5) { animation: slideUp 0.5s ease forwards 0.5s; }
.stagger-children.animate > *:nth-child(6) { animation: slideUp 0.5s ease forwards 0.6s; }

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(
        90deg,
        var(--glass-bg) 0%,
        var(--glass-bg-strong) 50%,
        var(--glass-bg) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Pulse Glow */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: 0 0 60px rgba(183, 110, 121, 0.5); }
}

/* Magnetic Button Effect */
.magnetic {
    transition: transform var(--transition-fast);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--color-white); }
.text-silver { color: var(--color-silver); }
.text-rose { color: var(--color-rose-gold); }
.text-gold { color: var(--color-gold); }

.bg-dark { background: var(--color-black); }
.bg-charcoal { background: var(--color-charcoal); }
.bg-glass { background: var(--glass-bg); }

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header .subtitle {
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-lg);
}

.section-header p {
    font-size: var(--text-lg);
}

/* Divider */
.divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-rose);
    margin: var(--space-lg) auto;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
}

.badge-rose {
    background: rgba(183, 110, 121, 0.2);
    border-color: var(--color-rose-gold);
    color: var(--color-rose-gold);
}

.badge-gold {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--color-rose-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    padding: var(--space-md) var(--space-xl);
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    z-index: var(--z-toast);
    animation: slideUp 0.3s ease;
}

.toast-success {
    border-left: 4px solid #16a34a;
}

.toast-error {
    border-left: 4px solid #dc2626;
}

/* Responsive Visibility */
@media (max-width: 1024px) {
    .hide-tablet { display: none !important; }
}

@media (max-width: 640px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 641px) {
    .show-mobile-only { display: none !important; }
}
