/**
 * Visconti Teatro — Main Stylesheet
 * Dark elegant theater theme, mobile-first
 */

/* ═══════════════════════════════════════
   CSS Variables
   ═══════════════════════════════════════ */
:root {
    /* Colors */
    --bg-primary: #0d0d1a;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-card-hover: #1c2a4a;
    --bg-input: #0f1629;
    
    --gold: #c9a84c;
    --gold-light: #d4af37;
    --gold-dark: #a8862e;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --gold-border: rgba(201, 168, 76, 0.3);
    
    --text-primary: #ffffff;
    --text-secondary: #b8b8cc;
    --text-muted: #6b6b80;
    --text-accent: var(--gold);
    
    --success: #27ae60;
    --error: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --container-width: 1200px;
    --container-padding: 16px;
    --section-gap: 60px;
    --card-radius: 16px;
    --btn-radius: 12px;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
    
    /* 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 8px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.2);
    
    /* Navbar */
    --navbar-height: 64px;
}

/* ═══════════════════════════════════════
   Reset & Base
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 600;
}

ul { list-style: none; }

/* ═══════════════════════════════════════
   Container
   ═══════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ═══════════════════════════════════════
   Buttons
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--btn-radius);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201,168,76,0.35);
    color: var(--bg-primary);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold-border);
}
.btn-secondary:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn:disabled, .btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ═══════════════════════════════════════
   Navbar
   ═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: rgba(13, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(13, 13, 26, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}
.brand-icon { font-size: 1.5rem; }
.brand-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}
.brand-accent { color: var(--gold); }

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    padding: calc(var(--navbar-height) + 20px) var(--container-padding) 20px;
    transition: right var(--transition);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}
.nav-menu.active { right: 0; }

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 14px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: var(--gold-glow);
}

.nav-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Language Switcher */
.lang-switcher { position: relative; }

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-sans);
}
.lang-btn:hover { border-color: var(--gold-border); color: var(--gold); }
.lang-btn .fa-chevron-down { font-size: 0.65rem; transition: transform var(--transition-fast); }
.lang-btn.active .fa-chevron-down { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 6px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
    z-index: 1010;
}
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.lang-option:hover { background: var(--gold-glow); color: var(--text-primary); }
.lang-option.active { color: var(--gold); font-weight: 600; }

.nav-cta {
    text-align: center;
}

/* ═══════════════════════════════════════
   Main Content
   ═══════════════════════════════════════ */
.main-content {
    padding-top: var(--navbar-height);
    min-height: calc(100vh - 300px);
}

/* ═══════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    padding: 60px 0 40px;
    text-align: center;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(22,33,62,0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 50%, rgba(22,33,62,0.5) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.15;
}
.hero h1 span { color: var(--gold); }

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   Section Headings
   ═══════════════════════════════════════ */
.section {
    padding: var(--section-gap) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}
.section-header .section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   Event Cards (Broadway style)
   ═══════════════════════════════════════ */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
}
.event-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-border);
    box-shadow: var(--shadow-lg), 0 0 30px var(--gold-glow);
}

.event-card-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    background: var(--bg-secondary);
    overflow: hidden;
}
.event-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}
.event-card-badge.premiere { background: var(--gold); color: var(--bg-primary); }
.event-card-badge.popular { background: var(--error); color: #fff; }
.event-card-badge.new { background: var(--success); color: #fff; }
.event-card-badge.sold-out { background: #555; color: #fff; }

.event-card-body {
    padding: 20px;
}

.event-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.event-card-venue {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.event-card-venue i { color: var(--gold); font-size: 0.75rem; }

.event-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.event-card-price {
    display: flex;
    flex-direction: column;
}
.event-card-price .from-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.event-card-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.event-card-cta {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
}
.event-card:hover .event-card-cta {
    box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════
   Event Detail Page
   ═══════════════════════════════════════ */
.event-hero {
    position: relative;
    padding: 40px 0;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}
.event-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(0.3);
}
.event-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}
.event-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}
.event-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.event-info-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.event-info-item span { color: var(--text-secondary); font-size: 0.9rem; }

/* ═══════════════════════════════════════
   Calendar / Date Picker
   ═══════════════════════════════════════ */
.dates-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.date-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    cursor: pointer;
    transition: all var(--transition);
}
.date-card:hover, .date-card.selected {
    border-color: var(--gold);
    background: var(--gold-glow);
}

.date-card-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.date-card-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}
.date-card-day .day-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.date-card-day .day-month {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-card-details .date-time {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}
.date-card-details .date-availability {
    font-size: 0.8rem;
    color: var(--success);
}
.date-card-details .date-availability.limited { color: var(--warning); }
.date-card-details .date-availability.sold-out { color: var(--error); }

.date-card-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform var(--transition);
}
.date-card:hover .date-card-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════
   Seat Map
   ═══════════════════════════════════════ */
.seat-map-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
}

.seat-map {
    min-width: 320px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.stage {
    background: linear-gradient(180deg, var(--gold-glow), transparent);
    border: 1px solid var(--gold-border);
    border-radius: 0 0 50% 50%;
    padding: 16px;
    text-align: center;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.seat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}

.row-label {
    width: 24px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 600;
    flex-shrink: 0;
}

.seat {
    width: 28px;
    height: 28px;
    border-radius: 6px 6px 8px 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.seat::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    right: 3px;
    height: 4px;
    border-radius: 3px 3px 0 0;
    background: rgba(255,255,255,0.15);
}

.seat-available { background: var(--bg-card); border: 1px solid var(--border-light); }
.seat-available:hover {
    transform: scale(1.15);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.seat-selected {
    background: var(--gold) !important;
    border-color: var(--gold-light) !important;
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.seat-selected::before { background: rgba(255,255,255,0.3); }

.seat-sold {
    background: var(--error);
    border: 1px solid rgba(231,76,60,0.4);
    cursor: not-allowed;
    opacity: 0.6;
}

.seat-blocked, .seat-unavailable {
    background: #333;
    border: 1px solid #444;
    cursor: not-allowed;
    opacity: 0.3;
}

.seat-reserved {
    background: var(--warning);
    border: 1px solid rgba(243,156,18,0.4);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Seat legend */
.seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 24px 0;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}
.legend-dot.available { background: var(--bg-card); border: 1px solid var(--border-light); }
.legend-dot.selected { background: var(--gold); }
.legend-dot.sold { background: var(--error); opacity: 0.6; }
.legend-dot.blocked { background: #333; opacity: 0.3; }

/* Category prices */
.category-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px 0;
}
.category-price {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-secondary);
    border-radius: 10px;
    font-size: 0.85rem;
}
.category-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}
.category-name { color: var(--text-muted); flex: 1; }
.category-amount { color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════
   Cart / Selection Panel
   ═══════════════════════════════════════ */
.selection-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--gold-border);
    padding: 16px var(--container-padding);
    transform: translateY(100%);
    transition: transform var(--transition);
    z-index: 900;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}
.selection-panel.active { transform: translateY(0); }

.selection-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.selection-info {
    flex: 1;
}
.selection-seats {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.selection-total {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

/* ═══════════════════════════════════════
   Forms
   ═══════════════════════════════════════ */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all var(--transition-fast);
    -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-error {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 6px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   Order Summary Card
   ═══════════════════════════════════════ */
.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 24px;
    margin-bottom: 20px;
}
.order-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.order-card-header i { color: var(--gold); font-size: 1.2rem; }
.order-card-header h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.order-item:last-child { border-bottom: none; }
.order-item-label { color: var(--text-muted); }
.order-item-value { color: var(--text-primary); font-weight: 500; }

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--gold-border);
    font-size: 1.1rem;
    font-weight: 700;
}
.order-total .label { color: var(--text-primary); }
.order-total .amount { color: var(--gold); font-size: 1.3rem; }

/* ═══════════════════════════════════════
   Payment Verify Page
   ═══════════════════════════════════════ */
.payment-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}
.paypal-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--bg-input);
    border-radius: 12px;
    margin: 16px 0;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    word-break: break-all;
}
.copy-btn {
    padding: 6px 12px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    color: var(--gold);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-sans);
    flex-shrink: 0;
}
.copy-btn:hover { background: var(--gold); color: var(--bg-primary); }

.amount-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 16px 0;
}

/* ═══════════════════════════════════════
   Confirmation Page
   ═══════════════════════════════════════ */
.confirmation-page {
    text-align: center;
    padding: 60px var(--container-padding);
}
.confirmation-icon {
    width: 80px;
    height: 80px;
    background: rgba(39,174,96,0.15);
    border: 2px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

/* ═══════════════════════════════════════
   Alert / Toast
   ═══════════════════════════════════════ */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.alert-error { background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); color: #e74c3c; }
.alert-success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #27ae60; }
.alert-warning { background: rgba(243,156,18,0.1); border: 1px solid rgba(243,156,18,0.3); color: #f39c12; }
.alert-info { background: rgba(52,152,219,0.1); border: 1px solid rgba(52,152,219,0.3); color: #3498db; }

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 14px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    z-index: 9999;
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════
   Footer
   ═══════════════════════════════════════ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: var(--section-gap);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}
.footer-social a:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-glow);
}

.footer-links-group h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.footer-links-group ul li { margin-bottom: 10px; }
.footer-links-group ul li a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}
.footer-links-group ul li a:hover { color: var(--gold); }
.footer-links-group ul li a.active { color: var(--gold); font-weight: 500; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   Content Pages (About, FAQ, etc)
   ═══════════════════════════════════════ */
.page-header {
    padding: 40px 0 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(201,168,76,0.05), transparent);
}
.page-header h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 12px;
}
.page-header p { color: var(--text-muted); }

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px var(--container-padding);
}
.content-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

/* FAQ accordion */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-question i {
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}
.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   Loading Spinner
   ═══════════════════════════════════════ */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,13,26,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    gap: 16px;
    color: var(--text-muted);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.loading-overlay.active { opacity: 1; visibility: visible; }

/* ═══════════════════════════════════════
   Responsive — Tablet
   ═══════════════════════════════════════ */
@media (min-width: 640px) {
    :root { --container-padding: 24px; }
    
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .dates-list { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .event-info-grid { grid-template-columns: repeat(2, 1fr); }
    
    .seat { width: 32px; height: 32px; }
    .seat-row { gap: 5px; }
}

/* ═══════════════════════════════════════
   Responsive — Desktop
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {
    :root {
        --container-padding: 32px;
        --section-gap: 80px;
        --navbar-height: 72px;
    }
    
    .nav-toggle { display: none; }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 4px;
    }
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
    
    .nav-actions {
        margin-top: 0;
        flex-direction: row;
        align-items: center;
        padding-top: 0;
        border-top: none;
    }
    
    .events-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    
    .hero { padding: 80px 0 60px; min-height: 55vh; }
    .hero h1 { font-size: 3.5rem; }
    
    .seat { width: 34px; height: 34px; }
    .seat-row { gap: 6px; margin-bottom: 8px; }
    .row-label { width: 30px; font-size: 0.75rem; }
}

/* ═══════════════════════════════════════
   Animations
   ═══════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.15s; }
.animate-in:nth-child(4) { animation-delay: 0.2s; }
.animate-in:nth-child(5) { animation-delay: 0.25s; }
.animate-in:nth-child(6) { animation-delay: 0.3s; }

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Utility classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none !important; }

/* ═══════════════════════════════════════
   Page Hero (About, Contact, FAQ, Privacy)
   ═══════════════════════════════════════ */
.page-hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    text-align: center;
    border-bottom: 1px solid var(--gold-border);
}
.page-hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.page-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Container narrow */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section variant */
.section-alt {
    background: var(--bg-secondary);
}

/* ═══════════════════════════════════════
   About Page
   ═══════════════════════════════════════ */
.about-intro {
    text-align: center;
    margin-bottom: 48px;
}
.about-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}
.about-intro h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.about-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.about-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.about-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}
.about-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--gold);
}
.about-feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.about-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Venue info */
.venue-info h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 24px;
    text-align: center;
}
.venue-info h2 i {
    margin-right: 8px;
}
.venue-details {
    display: grid;
    gap: 20px;
}
.venue-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 20px;
}
.venue-detail i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.venue-detail strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.venue-detail p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   Contact Page
   ═══════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.contact-info {
    display: grid;
    gap: 20px;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.3s;
}
.contact-card:hover {
    border-color: var(--gold);
}
.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--gold);
    font-size: 1.2rem;
}
.contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.contact-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}
.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}
.contact-link:hover {
    text-decoration: underline;
}
.contact-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.contact-form-wrapper h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 24px;
}
.teatro-form .form-group {
    margin-bottom: 20px;
}
.teatro-form label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 6px;
    font-weight: 500;
}
.teatro-form input,
.teatro-form textarea,
.teatro-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.teatro-form input:focus,
.teatro-form textarea:focus,
.teatro-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.teatro-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ═══════════════════════════════════════
   FAQ Page
   ═══════════════════════════════════════ */
.faq-category {
    margin-bottom: 40px;
}
.faq-category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold-border);
}
.faq-category-title i {
    margin-right: 10px;
}
.faq-contact {
    text-align: center;
    margin-top: 48px;
}
.faq-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 40px 24px;
}
.faq-contact-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.faq-contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.faq-contact-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ═══════════════════════════════════════
   Privacy / Legal Content
   ═══════════════════════════════════════ */
.legal-content {
    padding: 10px 0 40px;
}
.legal-section {
    margin-bottom: 36px;
}
.legal-section h2 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}
.legal-section ul li {
    color: var(--text-secondary);
    padding: 6px 0 6px 24px;
    position: relative;
}
.legal-section ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 8px;
    font-weight: bold;
}
.legal-section a {
    color: var(--gold);
}

/* ═══════════════════════════════════════
   Refund Page
   ═══════════════════════════════════════ */
.refund-info {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}
.refund-policy-banner {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 32px;
}
.refund-policy-banner i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.refund-policy-banner h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.refund-policy-banner p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}
.input-large {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-input);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.input-large:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.order-summary-card {
    background: var(--bg-input);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 20px;
}
.order-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.order-info-row:last-child {
    border-bottom: none;
}

/* ═══════════════════════════════════════
   Trust Badges (Homepage)
   ═══════════════════════════════════════ */
.trust-badges {
    padding: 32px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s;
}
.trust-item:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}
.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}
.trust-item strong,
.trust-item h3 {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.trust-item span,
.trust-item p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0;
}

/* ═══════════════════════════════════════
   How It Works / Steps Grid
   ═══════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}
.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.step-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.step-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════
   Features Grid (Why Choose Us)
   ═══════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--gold);
}
.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════
   Section Titles
   ═══════════════════════════════════════ */
.section-title-center {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ═══════════════════════════════════════
   Empty State (Events)
   ═══════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--gold-border);
    border-radius: 16px;
}
.empty-state-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.empty-state h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.empty-state p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* Shows count badge on event cards */
.event-card-shows {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ═══════════════════════════════════════
   About Page — Intro Section
   ═══════════════════════════════════════ */
.about-intro-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.about-intro-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}
.about-intro-section h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.about-lead-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-intro-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}
.about-cta-row {
    margin-top: 28px;
}

/* About Checklist */
.about-checklist {
    max-width: 600px;
    margin: 0 auto;
}
.checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}
.checklist-item:hover {
    border-color: var(--gold);
}
.checklist-item i {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.checklist-item span {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* About Two-Column */
.about-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.about-col {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 28px 24px;
}
.about-col h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.about-col h3 i {
    margin-right: 8px;
}
.about-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 24px auto 0;
}
.fact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
}
.fact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.fact-item span {
    color: var(--text-secondary);
    font-size: 0.92rem;
}
.text-muted {
    color: var(--text-muted) !important;
    font-size: 0.88rem;
}

/* ═══════════════════════════════════════
   Contact — Support Categories
   ═══════════════════════════════════════ */
.contact-need-help {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
}
.contact-need-help i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.contact-need-help h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.contact-need-help p {
    color: var(--text-secondary);
    margin: 0;
}
.support-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.support-cat-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.support-cat-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}
.support-cat-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--gold);
}
.support-cat-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.support-cat-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.hours-detail p {
    margin: 4px 0;
    font-size: 0.92rem;
}

/* Button variants */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   Footer Additions
   ═══════════════════════════════════════ */
.footer-guarantee {
    color: var(--gold);
    font-size: 0.88rem;
    margin: 12px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-guarantee i {
    font-size: 1rem;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-bottom-links a:hover {
    color: var(--gold);
}
.footer-bottom-links span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   Responsive — Additional Pages
   ═══════════════════════════════════════ */
@media (min-width: 640px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-hero-title {
        font-size: 3rem;
    }
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .support-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    .container-narrow {
        padding: 0;
    }
}
