/* ============================================================================
   TYLER PERRY STUDIOS - MAIN STYLESHEET
   ============================================================================ */

/* ============================================================================
   CSS RESET & BASE
   ============================================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */
:root {
    /* Primary Colors */
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c9a227;
    --accent-hover: #b8922a;
    --accent-light: #fdf8e8;
    
    /* Text Colors */
    --text-primary: #1a1a2e;
    --text-secondary: #555;
    --text-muted: #888;
    --text-light: #fff;
    
    /* Background Colors */
    --bg-primary: #fff;
    --bg-secondary: #f9f9f9;
    --bg-dark: #1a1a2e;
    --bg-darker: #0f0f1a;
    
    /* Border Colors */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    
    /* Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-Index Layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    --z-toast: 700;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-xxl: 80px;
    
    /* Container Width */
    --container-max: 1200px;
    --container-sm: 900px;
    
    /* Header Height */
    --header-height: 80px;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: var(--container-sm);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-accent { color: var(--accent-color); }

.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-dark { background-color: var(--bg-dark); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

/* Primary Button */
.btn-primary {
    background: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    border-color: var(--border-color);
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #c9a227 100%);
    color: var(--text-light);
    border-color: #c9a227;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d4af37 0%, #e6c04a 50%, #d4af37 100%);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.5);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Button Header (smaller for header) */
.btn-header {
    padding: 10px 20px;
    font-size: 12px;
}

/* ============================================================================
   FORM ELEMENTS
   ============================================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Floating Label */
.floating-label {
    position: relative;
}

.floating-label input,
.floating-label textarea {
    padding-top: 24px;
    padding-bottom: 8px;
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition-fast);
    margin-bottom: 0;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-color);
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--accent-color);
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Card */
.form-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

/* ============================================================================
   PRELOADER
   ============================================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 30px;
}

.preloader-logo img {
    width: 120px;
    height: auto;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.header.scrolled .logo-img {
    height: 40px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 3px;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-trigger::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: var(--z-dropdown);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--accent-light);
    color: var(--accent-color);
    padding-left: 25px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-toggle svg {
    stroke: var(--text-light);
}

.search-toggle:hover {
    background: var(--accent-color);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition-fast);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-size: 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-close:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.search-form input {
    width: 100%;
    padding: 20px 30px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    border: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    text-align: center;
    transition: border-color var(--transition-fast);
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-form button[type="submit"] {
    display: none;
}

/* Mobile Navigation */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--bg-dark);
    z-index: var(--z-modal);
    overflow-y: auto;
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo img {
    height: 40px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
    background: var(--accent-color);
}

.mobile-nav-list {
    padding: 20px;
    flex: 1;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.mobile-social a:hover {
    background: var(--accent-color);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-1 {
    background-image: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), url('img/hero-slide-1.jpg');
}

.hero-slide-2 {
    background-image: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), url('img/hero-slide-2.jpg');
}

.hero-slide-3 {
    background-image: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), url('img/hero-slide-3.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 30px;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: var(--text-light);
    border-color: var(--text-light);
}

.hero-buttons .btn-outline:hover {
    background: var(--text-light);
    color: var(--text-primary);
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 20;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slider-prev svg,
.slider-next svg {
    stroke: var(--text-light);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: var(--accent-color);
    width: 35px;
    border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================================
   RESPONSIVE - HEADER & HERO
   ============================================================================ */
@media (max-width: 1200px) {
    .nav-link {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .slider-prev,
    .slider-next {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

/* ============================================================================
   SECTION STYLES (GENERAL)
   ============================================================================ */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-header.light .section-title {
    color: var(--text-light);
}

.section-header.light .section-subtitle {
    color: var(--accent-color);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header.light .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */
.about-section {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-heading {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.image-caption {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================================
   STUDIOS SECTION
   ============================================================================ */
.studios-section {
    background: var(--bg-dark);
    position: relative;
}

.studios-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/studios-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.studio-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.studio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.studio-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.studio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.studio-card:hover .studio-card-image img {
    transform: scale(1.1);
}

.studio-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.studio-card:hover .studio-card-overlay {
    opacity: 1;
}

.studio-card-content {
    padding: 25px;
}

.studio-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.studio-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================================
   TOURS SECTION
   ============================================================================ */
.tours-section {
    background: var(--bg-secondary);
}

.tours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.tours-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tour-package {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tour-package:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tour-package.featured {
    border: 3px solid var(--accent-color);
}

.tour-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-light);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.tour-package-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0;
}

.tour-package-price {
    text-align: right;
}

.tour-package-price .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.tour-package-price .per {
    font-size: 13px;
    color: var(--text-muted);
}

.tour-package-features {
    margin-bottom: 25px;
}

.tour-package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.tour-package-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Tours Gallery */
.tours-gallery {
    position: relative;
}

.gallery-slider {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.gallery-track {
    display: flex;
    gap: 15px;
}

.gallery-item {
    flex: 0 0 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Tours Form Container */
.tours-form-container {
    position: sticky;
    top: 100px;
}

/* ============================================================================
   AUDITIONS SECTION
   ============================================================================ */
.auditions-section {
    background: var(--bg-primary);
}

.auditions-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.auditions-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon svg {
    stroke: var(--accent-color);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.audition-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.audition-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.audition-cta .email-link {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: color var(--transition-fast);
}

.audition-cta .email-link:hover {
    color: #fff;
}

/* Auditions Form Container */
.auditions-form-container {
    position: sticky;
    top: 100px;
}

/* ============================================================================
   MEMBERSHIP SECTION
   ============================================================================ */
.membership-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    padding: 120px 0;
}

.membership-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/membership-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 10;
}

.membership-tier {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.membership-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.membership-tier.featured {
    background: linear-gradient(180deg, #fff 0%, #fdf8e8 100%);
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 5;
}

.membership-tier.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-light);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.tier-badge.gold {
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #e6c04a 100%);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.tier-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.tier-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
}

.tier-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.tier-price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.tier-features {
    margin-bottom: 30px;
    text-align: left;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.tier-features li.disabled {
    color: var(--text-muted);
    opacity: 0.6;
}

.tier-features .check {
    width: 20px;
    height: 20px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.tier-features .x {
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    color: #999;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* Activate Card Section */
.activate-card-section {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.activate-card-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.activate-card-content h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.activate-card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Membership Card Preview */
.membership-card-preview {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.membership-card {
    width: 350px;
    height: 200px;
    margin: 0 auto;
    perspective: 1000px;
    cursor: pointer;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: transform 0.6s ease;
}

.card-front {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
    box-shadow: var(--shadow-xl);
}

.card-back {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.membership-card:hover .card-front {
    transform: rotateY(-180deg);
}

.membership-card:hover .card-back {
    transform: rotateY(0);
}

.card-logo {
    margin-bottom: 20px;
}

.card-logo img {
    height: 40px;
}

.card-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.card-tier {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.card-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.card-id .label {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 5px;
}

.card-status {
    margin-top: 15px;
    font-size: 11px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.card-info {
    text-align: center;
}

.card-info p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.card-instruction {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 20px;
}

/* ============================================================================
   RESPONSIVE - SECTIONS
   ============================================================================ */
@media (max-width: 1200px) {
    .studios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .membership-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .membership-tier.featured {
        transform: none;
    }
    
    .membership-tier.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tours-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tours-form-container {
        position: static;
    }
    
    .auditions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .auditions-form-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .about-heading {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .studios-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-card-image {
        height: 180px;
    }
    
    .tours-info {
        gap: 20px;
    }
    
    .tour-package {
        padding: 25px;
    }
    
    .tour-package-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tour-package-price {
        text-align: center;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .membership-tier {
        padding: 30px 25px;
    }
    
    .tier-price .amount {
        font-size: 2.5rem;
    }
    
    .form-card {
        padding: 25px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .activate-card-content {
        padding: 30px 20px;
    }
    
    .membership-card {
        width: 280px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   BOOK TYLER PERRY SECTION
   ============================================================================ */
.book-section {
    background: var(--bg-primary);
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.book-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.event-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.event-type-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.event-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.event-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.event-type-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.event-type-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.booking-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    padding: 30px;
}

.booking-contact h4 {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.booking-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
}

.booking-contact a {
    color: var(--accent-color);
}

.booking-contact a:hover {
    color: #fff;
}

.book-form-container {
    position: sticky;
    top: 100px;
}

/* ============================================================================
   PHILANTHROPY SECTION
   ============================================================================ */
.philanthropy-section {
    background: var(--bg-secondary);
}

.philanthropy-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.philanthropy-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.philanthropy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.philanthropy-card.full-width {
    grid-column: span 2;
}

.philanthropy-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.philanthropy-card h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.philanthropy-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.impact-list {
    margin-bottom: 25px;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.impact-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.job-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.job-stat {
    text-align: center;
}

.job-stat .stat-number {
    font-size: 2.5rem;
}

.job-stat .stat-label {
    font-size: 13px;
}

/* ============================================================================
   DONATION SECTION
   ============================================================================ */
.donate-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    padding: 120px 0;
}

.donate-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/donate-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
}

.donation-form-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.donation-form {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.donation-categories h4,
.donation-amounts h4,
.donor-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.category-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.donation-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 100px;
}

.donation-category:hover {
    border-color: var(--accent-color);
    background: var(--accent-light);
}

.donation-category.selected {
    border-color: var(--accent-color);
    background: var(--accent-light);
}

.category-icon {
    font-size: 24px;
}

.category-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.donation-amount {
    padding: 15px 10px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: 'Montserrat', sans-serif;
}

.donation-amount:hover {
    border-color: var(--accent-color);
    background: var(--accent-light);
}

.donation-amount.selected {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--text-light);
}

.custom-amount {
    margin-bottom: 35px;
}

.custom-amount label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.custom-amount-input:focus-within {
    border-color: var(--accent-color);
}

.currency-symbol {
    padding: 14px 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--border-light);
}

.custom-amount-input input {
    flex: 1;
    padding: 14px 15px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
}

.custom-amount-input input:focus {
    outline: none;
}

.donor-info {
    margin-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.donor-info .form-row {
    margin-bottom: 15px;
}

.donor-info input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    transition: border-color var(--transition-fast);
}

.donor-info input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.donation-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */
.testimonials-section {
    background: var(--bg-primary);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-item {
    flex: 0 0 100%;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.author-info span {
    font-size: 13px;
    color: var(--accent-color);
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.testimonial-prev:hover svg,
.testimonial-next:hover svg {
    stroke: var(--text-light);
}

.testimonial-prev svg,
.testimonial-next svg {
    stroke: var(--text-primary);
    transition: stroke var(--transition-fast);
}

/* ============================================================================
   NEWSLETTER SECTION
   ============================================================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    padding: 80px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 24px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.newsletter-input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input-group .btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    white-space: nowrap;
}

.newsletter-input-group .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.newsletter-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    margin-bottom: 0;
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */
.contact-section {
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-card a {
    color: var(--accent-color);
}

.contact-card a:hover {
    text-decoration: underline;
}

.social-links {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    padding: 30px;
}

.social-links h3 {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-iframe {
    display: block;
    border: none;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background: var(--bg-dark);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
}

.footer-about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .contact-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.credits {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ============================================================================
   RESPONSIVE - BOOK, PHILANTHROPY, DONATIONS, CONTACT, FOOTER
   ============================================================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(2, 1fr);
    }
    
    .footer-about {
        grid-column: span 3;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .book-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .book-form-container {
        position: static;
    }
    
    .philanthropy-areas {
        grid-template-columns: 1fr;
    }
    
    .philanthropy-card.full-width {
        grid-column: span 1;
    }
    
    .job-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .event-types {
        grid-template-columns: 1fr;
    }
    
    .philanthropy-card {
        padding: 25px;
    }
    
    .job-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-stat .stat-number {
        font-size: 2rem;
    }
    
    .donation-form {
        padding: 30px 20px;
    }
    
    .category-options {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .donation-category {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    .amount-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-slider {
        padding: 0 20px;
    }
    
    .testimonial-item {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-text h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group .btn {
        width: 100%;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .map-container {
        margin: 0 -20px;
        border-radius: 0;
    }
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fadeInUp {
    opacity: 1;
    transform: translateY(0);
}

.animate-fadeInLeft {
    opacity: 1;
    transform: translateX(0);
}

.animate-fadeInRight {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll indicator animation */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================================================
   LAZY LOADING
   ============================================================================ */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded,
.lazy[data-src] {
    opacity: 1;
}

/* ============================================================================
   FORM CARD STYLES (ENHANCED)
   ============================================================================ */
.form-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

/* Tour Form Specific */
.tour-form .form-group {
    margin-bottom: 20px;
}

.tour-form .time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.tour-form .time-slot {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.tour-form .time-slot:hover {
    border-color: var(--accent-color);
    background: var(--accent-light);
}

.tour-form .time-slot.selected {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--text-light);
}

.tour-price-display {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    display: none; /* Hidden by default, shown via JS */
}

.tour-price-display .price-breakdown {
    font-size: 14px;
    color: var(--text-secondary);
}

.tour-price-display .price-total {
    font-size: 18px;
    color: var(--text-primary);
}

.tour-price-display .price-total strong {
    color: var(--accent-color);
    font-size: 20px;
}

/* Audition Form Specific */
.audition-form .file-upload-zone {
    margin-bottom: 20px;
}

.audition-form .file-preview {
    margin-top: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: none;
}

.audition-form .file-preview.show {
    display: block;
}

.audition-form .file-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: var(--radius-sm);
}

/* ============================================================================
   CRYPTO PAYMENT BOX STYLES
   ============================================================================ */
.crypto-payment-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    padding: 35px;
    margin: 30px 0;
    color: #fff;
}

.crypto-payment-box .crypto-payment-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crypto-payment-box .crypto-payment-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.crypto-addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.crypto-address-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.crypto-address-card h4 {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
}

.crypto-address-card .crypto-qr {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 10px;
    margin: 0 auto 15px;
}

.crypto-address-card .crypto-qr img {
    width: 100%;
    height: 100%;
    display: block;
}

.crypto-address-text {
    font-family: monospace;
    font-size: 11px;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    color: #fff;
}

.crypto-copy-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 12px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.crypto-copy-btn:hover {
    background: var(--accent-hover);
}

.crypto-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

/* ============================================================================
   PAYMENT PROOF UPLOAD STYLES
   ============================================================================ */
.payment-proof-section {
    background: #fff8e8;
    border: 1px solid #f0e68a;
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 25px;
}

.payment-proof-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.payment-proof-section p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ============================================================================
   FILE UPLOAD STYLES
   ============================================================================ */
.file-upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.file-upload-zone:hover {
    border-color: var(--accent-color);
    background: var(--accent-light);
}

.file-upload-zone.dragover {
    border-color: var(--accent-color);
    background: var(--accent-light);
}

.file-upload-zone.has-file {
    border-color: var(--success-color);
    background: #ecfdf5;
}

.file-upload-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.file-upload-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.file-upload-hint {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

.file-preview {
    margin-top: 15px;
    display: none;
}

.file-preview img {
    max-width: 150px;
    max-height: 150px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.file-preview div {
    padding: 10px;
    background: #f0f0f0;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================================================
   MODAL STYLES
   ============================================================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 20px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-content.modal-lg {
    max-width: 800px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f0f0;
    border-radius: var(--radius-full);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--danger-color);
    color: #fff;
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.modal-body {
    padding: 30px;
}

/* Modal Specific Sections */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.form-section-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Relief Type Selector */
.relief-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.relief-type {
    position: relative;
}

.relief-type input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.relief-type label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.relief-type label:hover {
    border-color: var(--accent-color);
    background: #fff;
}

.relief-type input:checked + label {
    border-color: var(--accent-color);
    background: var(--accent-light);
}

.relief-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.relief-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.relief-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Card Preview for Activation */
.card-visual {
    margin-bottom: 25px;
}

.membership-card-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    padding: 25px;
    color: #fff;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.card-header-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.card-logo {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.card-brand {
    font-size: 14px;
    font-weight: 600;
}

.card-body-display {
    text-align: center;
}

.card-type {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.card-number-display {
    font-size: 18px;
    font-family: monospace;
    letter-spacing: 2px;
    color: var(--accent-color);
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-weight: 600;
}

.input-with-icon input {
    padding-left: 35px;
}

/* ============================================================================
   LOADING OVERLAY
   ============================================================================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-message {
    font-size: 16px;
}

/* ============================================================================
   NOTIFICATION CONTAINER
   ============================================================================ */
.notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99998;
    max-width: 400px;
}

.notification {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--danger-color);
}

.notification-icon {
    font-size: 24px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.notification-message {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 3px;
}

/* ============================================================================
   BADGE STYLES
   ============================================================================ */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success { background: var(--success-color); color: #fff; }
.badge-warning { background: var(--warning-color); color: #fff; }
.badge-danger { background: var(--danger-color); color: #fff; }
.badge-info { background: var(--info-color); color: #fff; }
.badge-primary { background: var(--accent-color); color: #fff; }
.badge-secondary { background: var(--text-muted); color: #fff; }

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.badge { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-accent { color: var(--accent-color); }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-4 { margin-top: 40px; }
.mb-4 { margin-bottom: 40px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

/* ============================================================================
   PRINT STYLES
   ============================================================================ */
@media print {
    .header,
    .menu-toggle,
    .scroll-indicator,
    .hero-slider,
    .slider-prev,
    .slider-next,
    .slider-dots,
    .preloader,
    .flash-messages,
    .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        background: #fff;
        color: #000;
    }
    
    .section {
        padding: 20px 0 !important;
        page-break-inside: avoid;
    }
    
    .section-header {
        text-align: left !important;
        margin-bottom: 10px !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* ============================================================================
   ACCESSIBILITY STYLES
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus visible for better accessibility */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 16px;
    z-index: 99999;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================================================
   RESPONSIVE OVERRIDES
   ============================================================================ */

/* Tablet */
@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content {
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 70px 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .section-divider {
        width: 60px;
    }
    
    /* Adjust header for mobile */
    .header {
        height: 70px;
    }
    
    .header.scrolled {
        height: 60px;
    }
    
    /* Adjust hero for mobile */
    .hero-section {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    /* Form adjustments for mobile */
    .form-card,
    .modal-content {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    /* Modal adjustments for mobile */
    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    /* Crypto payment adjustments */
    .crypto-addresses {
        grid-template-columns: 1fr;
    }
    
    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Text scaling for very small screens */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-stats,
    .job-stats,
    .event-types {
        grid-template-columns: 1fr;
    }
}

/* High DPI/Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .hero-slide img,
    .studio-card-image img,
    .testimonial-author img {
        image-rendering: -webkit-optimize-contrast;
    }
}