/* =====================================================
   ILLUMINATI SUPREMACY ARCANE - MODERN CSS
   Mobile-First, Premium Design System
   ===================================================== */

:root {
    /* Colors */
    --primary-color: #C00000;
    --primary-light: #ff1a1a;
    --primary-dark: #8a0000;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --text-color: #ffffff;
    --bg-color: #0a0a0a;
    --bg-secondary: #111111;
    --surface-color: #1a1a1a;
    --surface-light: #252525;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(192, 0, 0, 0.4);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }

p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.text-gold { color: var(--primary-color); }
.text-white { color: var(--text-color); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) var(--space-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(192, 0, 0, 0.3);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.branding a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
}

.branding i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition-normal);
}

.branding span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-normal);
}

.branding a:hover i {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(192, 0, 0, 0.5);
}

.branding a:hover span {
    color: var(--gold);
}

@media (min-width: 768px) {
    .branding i {
        font-size: 1.75rem;
    }
    
    .branding span {
        font-size: 1.25rem;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    border-color: var(--primary-color);
    background: rgba(192, 0, 0, 0.1);
}

.menu-toggle i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.menu-toggle.active i::before {
    content: "\f00d";
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

nav.active {
    opacity: 1;
    visibility: visible;
}

nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
}

nav li {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

nav.active li {
    opacity: 1;
    transform: translateY(0);
}

nav.active li:nth-child(1) { transition-delay: 0.1s; }
nav.active li:nth-child(2) { transition-delay: 0.15s; }
nav.active li:nth-child(3) { transition-delay: 0.2s; }
nav.active li:nth-child(4) { transition-delay: 0.25s; }
nav.active li:nth-child(5) { transition-delay: 0.3s; }
nav.active li:nth-child(6) { transition-delay: 0.35s; }
nav.active li:nth-child(7) { transition-delay: 0.4s; }
nav.active li:nth-child(8) { transition-delay: 0.45s; }
nav.active li:nth-child(9) { transition-delay: 0.5s; }

nav a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: var(--space-xs) var(--space-sm);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(192, 0, 0, 0.6);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    nav {
        position: static;
        background: transparent;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: row;
        gap: var(--space-sm);
        padding: 0;
    }
    
    nav li {
        opacity: 1;
        transform: none;
    }
    
    nav a {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

@media (min-width: 1200px) {
    nav ul {
        gap: var(--space-md);
    }
    
    nav a {
        font-size: 0.85rem;
    }
}

/* Nav Buttons */
.nav-btn {
    padding: var(--space-xs) var(--space-sm) !important;
    border-radius: var(--radius-sm);
    font-size: 0.8rem !important;
}

.nav-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(192, 0, 0, 0.1);
}

.nav-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 0 15px rgba(192, 0, 0, 0.3);
}

.nav-btn-primary:hover {
    box-shadow: 0 0 25px rgba(192, 0, 0, 0.5);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 0, 0, 0.5), 0 0 40px rgba(192, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(192, 0, 0, 0.1);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn-sm {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-block {
    width: 100%;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-lg);
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%),
                url('https://i0.wp.com/highercalling.net/wp-content/uploads/2025/04/occult.jpeg?resize=672%2C372&ssl=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

.hero-symbol {
    width: 120px;
    height: auto;
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    animation: pulseFloat 4s ease-in-out infinite;
    z-index: 2;
}

.hero-symbol-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    animation: pulseFloat 4s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), inset 0 0 30px rgba(212, 175, 55, 0.1);
}

@media (min-width: 768px) {
    .hero-symbol {
        width: 180px;
    }
    
    .hero-symbol-icon {
        width: 160px;
        height: 160px;
        font-size: 5rem;
    }
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    text-transform: uppercase;
    letter-spacing: clamp(3px, 1vw, 8px);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 30px rgba(192, 0, 0, 0.8), 0 0 60px rgba(192, 0, 0, 0.4);
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    max-width: 600px;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 2;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Page Hero (for inner pages) */
.page-hero {
    padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, var(--bg-color) 100%),
                linear-gradient(135deg, var(--primary-dark) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.page-hero h1 {
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.8s ease-out;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
    background: linear-gradient(145deg, var(--surface-color), var(--bg-secondary));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 0, 0, 0.3);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    background: rgba(192, 0, 0, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(192, 0, 0, 0.2);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Product Card */
.product-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 0, 0, 0.3);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.product-card-image {
    height: 250px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-content {
    padding: var(--space-md);
    text-align: center;
}

.product-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.product-card-content p {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

/* Stat Card */
.stat-card {
    background: linear-gradient(145deg, var(--surface-color), var(--bg-secondary));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-slow);
}

.stat-card:hover {
    border-color: rgba(192, 0, 0, 0.3);
    box-shadow: var(--shadow-glow);
}

.stat-card h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-xs);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   SPHERES OF INFLUENCE
   ===================================================== */
.spheres-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

@media (min-width: 640px) {
    .spheres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .spheres-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sphere-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
    aspect-ratio: 4/5;
}

.sphere-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(192, 0, 0, 0.5);
}

.sphere-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.sphere-card:hover img {
    transform: scale(1.1);
}

.sphere-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
}

.sphere-content h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.sphere-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =====================================================
   CONTENT SECTIONS
   ===================================================== */
.bg-surface {
    background-color: var(--surface-color);
}

.bg-dark {
    background-color: var(--bg-secondary);
}

.content-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

@media (min-width: 768px) {
    .content-box {
        padding: var(--space-xl);
    }
}

.content-box-highlight {
    border-color: rgba(192, 0, 0, 0.3);
    box-shadow: var(--shadow-glow);
}

/* Oath Section */
.oath-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('https://images.unsplash.com/photo-1478760329108-5c3ed9d495a0?w=1920&h=800&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
}

.oath-section h2 {
    margin-bottom: var(--space-md);
}

.oath-section p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Featured Image */
.featured-image {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin: var(--space-lg) 0;
}

.featured-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.featured-image-full img {
    max-height: 80vh;
    object-fit: contain;
}

.featured-image:hover img {
    transform: scale(1.02);
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* =====================================================
   LISTS
   ===================================================== */
.list-styled {
    padding-left: var(--space-md);
}

.list-styled li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.list-styled li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.list-numbered {
    counter-reset: list-counter;
    padding-left: 0;
}

.list-numbered li {
    counter-increment: list-counter;
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.list-numbered li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: rgba(192, 0, 0, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* =====================================================
   ALERT BOXES
   ===================================================== */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.alert-warning {
    background: rgba(192, 0, 0, 0.15);
    border: 1px solid rgba(192, 0, 0, 0.3);
}

.alert-warning h4 {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.alert-warning p {
    color: rgba(255, 200, 200, 0.9);
    margin-bottom: 0;
}

.alert-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* =====================================================
   WHATSAPP BUBBLE
   ===================================================== */
.whatsapp-bubble {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 2000;
    animation: fadeInUp 0.5s ease-out;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: var(--radius-full);
    color: white;
    font-size: 2.25rem;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transition-normal);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
}

.whatsapp-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.social-links a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    }
    50% {
        transform: translateY(-15px) scale(1.05);
        filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.9));
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Staggered Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.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); }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-sm { max-width: 400px; }
.max-w-md { max-width: 600px; }
.max-w-lg { max-width: 800px; }

.hidden { display: none; }
.block { display: block; }

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* =====================================================
   SELECTION
   ===================================================== */
::selection {
    background: var(--primary-color);
    color: white;
}