/* ============================================
   ELITE PERFORMANCE - MAIN STYLESHEET
   Premium Dark Theme with Gold & Red Accents
   ============================================ */

/* ============================================
   CSS VARIABLES & ROOT
   ============================================ */
:root {
    /* Brand Colors - Official Palette */
    --primary-gold: #EFB245;      /* Or principal */
    --primary-red: #CA2027;       /* Rouge Elite */
    --dark-brown: #291910;        /* Brun foncé */
    --accent-yellow: #F8E271;     /* Jaune clair */
    --bronze: #7E5D33;            /* Bronze */
    
    /* Dark Theme Colors */
    --bg-dark: #0d0906;           /* Fond très sombre */
    --bg-card: #1a1310;           /* Fond cartes */
    --bg-card-hover: #221a14;     /* Fond cartes hover */
    --bg-elevated: #2a1f18;       /* Éléments surélevés */
    --border-subtle: rgba(239, 178, 69, 0.1);
    --border-gold: rgba(239, 178, 69, 0.3);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-gold: var(--primary-gold);
    
    /* Gold Gradient */
    --gradient-gold: linear-gradient(135deg, #EFB245 0%, #F8E271 50%, #EFB245 100%);
    --gradient-gold-dark: linear-gradient(135deg, #7E5D33 0%, #EFB245 50%, #7E5D33 100%);
    --gradient-red: linear-gradient(135deg, #CA2027 0%, #e63946 100%);
    
    /* Shadows for dark theme */
    --shadow-gold: 0 4px 20px rgba(239, 178, 69, 0.3);
    --shadow-red: 0 4px 20px rgba(202, 32, 39, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 7rem;
    --spacing-2xl: 10rem;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* 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 20px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.6);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

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

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   TYPOGRAPHY - Dark Theme
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

section {
    padding: var(--spacing-xl) 0;
}

/* ============================================
   NAVIGATION - Dark Theme with Gold Accents
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(13, 9, 6, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-contact {
    background: var(--gradient-gold);
    color: var(--dark-brown) !important;
    padding: 0.875rem 1.75rem !important;
    border-radius: var(--radius-md);
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-contact:hover {
    background: var(--primary-red);
    color: var(--text-primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-contact::after {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ============================================
   BUTTONS - Premium & Refined
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-red);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--gradient-gold);
    color: var(--text-primary);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.btn-light {
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--gradient-gold);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--text-primary);
    border-color: var(--primary-red);
}

.btn-red {
    background: var(--gradient-red);
    color: var(--text-primary);
    box-shadow: var(--shadow-red);
}

.btn-red:hover {
    background: var(--gradient-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
}

.btn-social {
    background-color: var(--bg-card);
    color: var(--text-primary);
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--border-subtle);
}

.btn-social:hover {
    background: var(--gradient-gold);
    color: var(--text-primary);
}

/* ============================================
   HERO SECTION - Video Background
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    padding-top: 120px;
    overflow: hidden;
}

/* Video Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 9, 6, 0.6) 0%,
        rgba(13, 9, 6, 0.5) 50%,
        rgba(13, 9, 6, 0.7) 100%
    );
    z-index: 1;
}

/* Optional: Add subtle gold glow */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 30% 30%, rgba(239, 178, 69, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(202, 32, 39, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-primary);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    color: var(--text-primary);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease 0.4s both;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid var(--primary-gold);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

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

/* ============================================
   PAGE HEADER - Dark & Elegant
   ============================================ */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(160deg, var(--bg-dark) 0%, var(--dark-brown) 50%, #1a1208 100%);
    text-align: center;
    color: var(--text-primary);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(239, 178, 69, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 20%, rgba(202, 32, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* ============================================
   SECTION HEADERS - Dark Theme
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.separator {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 2rem;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(239, 178, 69, 0.3);
}

/* ============================================
   INTRO SECTION - Dark Theme
   ============================================ */
.intro-section {
    background-color: var(--bg-card);
}

.intro-content {
    display: grid;
    gap: 3.5rem;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--bg-elevated);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-subtle);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   SERVICES SECTIONS - Dark Premium Cards
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 178, 69, 0.2), rgba(239, 178, 69, 0.05));
    border-radius: var(--radius-lg);
    color: var(--primary-gold);
    border: 1px solid var(--border-gold);
}

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

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-gold);
    font-weight: 600;
    transition: var(--transition-fast);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-link:hover {
    color: var(--text-primary);
}

/* Service Detail Pages */
.service-detail {
    padding: var(--spacing-xl) 0;
}

.service-detail.alt {
    background-color: var(--bg-elevated);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h2 {
    margin-bottom: 1.5rem;
}

.service-text p {
    line-height: 1.85;
}

.service-features {
    margin: 2.5rem 0;
    padding-left: 0;
}

.service-features li {
    padding: 0.875rem 0;
    padding-left: 2.25rem;
    position: relative;
    color: var(--dark-gray);
    font-size: 1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.125rem;
}

.info-box {
    background-color: var(--bg-elevated);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-gold);
}

.info-box h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.note {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   APPROACH SECTION - Premium Steps
   ============================================ */
.approach-section {
    background-color: var(--bg-elevated);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.approach-card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-subtle);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-gold);
    opacity: 0.15;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.approach-card h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 700;
}

.approach-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    flex-grow: 1;
}

/* ============================================
   ABOUT SECTION - Personal & Warm
   ============================================ */
.about-section,
.about-berangere {
    padding: var(--spacing-xl) 0;
}

.about-sebastien {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-elevated);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content.reverse .about-image {
    order: 2;
}

.about-content.reverse .about-text {
    order: 1;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-bottom: 0.5rem;
}

.about-text h3 {
    color: var(--primary-gold);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.about-text p {
    line-height: 1.85;
}

.about-text .lead {
    margin-bottom: 1.75rem;
}

.about-text .separator {
    margin: 0 0 1.5rem 0;
}

/* ============================================
   TEAM SECTION - Elite Performance Team
   ============================================ */
.team-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-elevated);
}

.team-section .about-content {
    margin-top: 2rem;
}

.team-section .about-text .btn {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content.reverse .about-text {
        order: 2;
    }
    
    .about-content.reverse .about-image {
        order: 1;
    }
}

/* ============================================
   IMAGE PLACEHOLDERS & PHOTOS
   ============================================ */
.image-placeholder,
.about-image .image-placeholder,
.service-image .image-placeholder {
    background: linear-gradient(145deg, var(--light-gray), #e8e8e8);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
    padding: 2rem;
}

.image-placeholder.large {
    aspect-ratio: 3/4;
}

/* Profile Photo Styles */
.profile-photo {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    transition: var(--transition-slow);
}

.profile-photo:hover {
    transform: scale(1.02);
}

.profile-photo.large {
    width: 100%;
}

/* ============================================
   PRICING SECTIONS - Clear & Professional
   ============================================ */
.pricing-intro,
.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.pricing-intro p,
.services-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Pricing Section Spacing */
.pricing-section,
.packages-section {
    padding: var(--spacing-xl) 0;
}

.packages-section {
    background-color: var(--bg-elevated);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(180deg, rgba(239, 178, 69, 0.04) 0%, var(--white) 100%);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 178, 69, 0.12), rgba(239, 178, 69, 0.04));
    border-radius: var(--radius-lg);
    color: var(--primary-gold);
}

.pricing-icon svg {
    width: 28px;
    height: 28px;
}

.pricing-header {
    margin-bottom: 0.5rem;
}

.pricing-header h3 {
    font-size: 1.375rem;
    margin: 0.75rem 0 0;
    color: var(--text-primary);
}

.pricing-price {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--border-subtle);
}

.price {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.duration {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.pricing-features {
    margin: 1.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features ul {
    padding-left: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 600;
}

.package-note {
    background-color: rgba(239, 178, 69, 0.08);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary-gold);
    margin: 1rem 0;
    font-size: 0.8125rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
    padding: 1rem 1.5rem;
}

/* Special Services List */
.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    transition: var(--transition-normal);
    border: 1px solid var(--border-subtle);
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.service-item .service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    margin: 0;
}

.service-info {
    flex-grow: 1;
}

.service-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.service-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.service-price {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Payment Info */
.payment-info {
    background-color: var(--bg-elevated);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.info-card ul {
    padding-left: 1.5rem;
}

.info-card li {
    list-style: disc;
    padding: 0.25rem 0;
}

/* ============================================
   FORMATION / EDUCATION SECTIONS
   ============================================ */
.education-section {
    background-color: var(--bg-elevated);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--primary-red));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -36px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-red));
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-gold);
}

.timeline-content {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-institution {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-red));
    border-radius: 50%;
    color: var(--white);
}

.expertise-icon svg {
    width: 35px;
    height: 35px;
}

.expertise-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-gold);
}

.philosophy-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.certification-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.cert-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-elevated);
    border-radius: 50%;
    color: var(--primary-gold);
}

.cert-icon svg {
    width: 30px;
    height: 30px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-stars {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-gold);
}

/* ============================================
   MEDIA PAGE SECTIONS
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-caption {
    background-color: var(--bg-card);
    padding: 1.5rem;
}

.gallery-caption h4 {
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Success Stories */
.success-stories {
    background-color: var(--bg-elevated);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    margin-bottom: 0.5rem;
}

.story-result {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.story-text {
    font-style: italic;
    color: var(--text-secondary);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-red));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-gold);
    font-weight: 700;
    transition: var(--transition-fast);
}

.blog-link:hover {
    color: var(--primary-red);
}

/* Social Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.social-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-icon svg {
    width: 40px;
    height: 40px;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-card h3 {
    margin-bottom: 0.5rem;
}

.social-description {
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem;
}

/* Video Section */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--light-gray), #e0e0e0);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.play-button svg {
    width: 35px;
    height: 35px;
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--dark-brown), var(--bronze));
    color: var(--white);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form button {
    flex-shrink: 0;
}

/* ============================================
   CTA SECTION - Dark with Red Accent
   ============================================ */
.cta-section {
    background: linear-gradient(160deg, var(--primary-red) 0%, #8a1a1f 100%);
    color: var(--text-primary);
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(239, 178, 69, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.cta-section .btn-light {
    background: var(--gradient-gold);
    color: var(--dark-brown);
    border: none;
}

/* ============================================
   CONTACT SECTION - Professional & Accessible
   ============================================ */
.contact-section {
    background-color: var(--bg-elevated);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    border-radius: var(--radius-md);
    color: var(--white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-text p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-text a {
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-gold);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-brown);
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.social-link:hover svg {
    stroke: var(--text-primary);
}

/* Contact Form - Dark Theme */
.contact-form-wrapper {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--bg-elevated);
    color: var(--text-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form select {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(239, 178, 69, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    width: 100%;
}

/* ============================================
   FOOTER - Dark Premium
   ============================================ */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    max-width: 300px;
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 0.875rem;
}

.footer-col ul li,
.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social .social-link {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social .social-link svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.7);
}

.footer-social .social-link:hover {
    background-color: var(--primary-gold);
    transform: translateY(-4px);
}

.footer-social .social-link:hover svg {
    stroke: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Optimized
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .service-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 5rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .pricing-grid,
    .services-grid,
    .approach-grid,
    .expertise-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -26px;
        width: 15px;
        height: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header {
        padding: 130px 0 70px;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 15px;
        --spacing-xl: 4rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 2.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem 1.25rem;
    }
    
    .btn {
        padding: 1rem 1.75rem;
        font-size: 0.8125rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .approach-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.bg-light {
    background-color: var(--bg-elevated);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
