/* =============================================
   Circuito Detailing - Landing Page Styles
   Motorsport Black & Racing Red Performance Theme
   No emojis - 100% Crisp Native SVG Icons
   ============================================= */

/* --- CSS Variables --- */
:root {
    --bg-body: #030712;
    --bg-primary: #030712;
    --bg-secondary: #0B0E14;
    --bg-card: rgba(15, 23, 42, 0.7);
    --bg-card-hover: rgba(30, 41, 59, 0.85);
    --bg-card-solid: #0F172A;
    --bg-input: #0B0F19;
    
    --bg: #030712;
    --bg-subtle: #0B0F19;
    --fg: #F8FAFC;
    --fg-muted: #94A3B8;
    --fg-subtle: #64748B;
    --line: #1E293B;
    
    --border-color: #1E293B;
    --border-color-hover: rgba(225, 29, 72, 0.45);
    --border-color-active: #E11D48;
    
    --accent: #E11D48;
    --accent-rgb: 225, 29, 72;
    --accent-hover: #BE123C;
    --accent-light: rgba(225, 29, 72, 0.12);
    --accent-glow: rgba(225, 29, 72, 0.35);
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #0284C7;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(225, 29, 72, 0.25);
    
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1152px;
}

[data-theme="light"] {
    --bg-body: #F8FAFC;
    --bg-primary: #F8FAFC;
    --bg-secondary: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --bg-card-solid: #FFFFFF;
    --bg-input: #FFFFFF;
    
    --bg: #FFFFFF;
    --bg-subtle: #F8FAFC;
    --fg: #0F172A;
    --fg-muted: #64748B;
    --fg-subtle: #94A3B8;
    --line: #E2E8F0;
    
    --border-color: #E2E8F0;
    --border-color-hover: rgba(225, 29, 72, 0.45);
    --border-color-active: #E11D48;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
}

/* --- Layout and Component Utilities --- */
.bg-bg { background-color: var(--bg); }
.bg-bg-subtle { background-color: var(--bg-subtle); }
.bg-bg\/80 { background-color: rgba(3, 7, 18, 0.85); }
.bg-bg\/90 { background-color: rgba(3, 7, 18, 0.92); }
[data-theme="light"] .bg-bg\/80 { background-color: rgba(255, 255, 255, 0.88); }
[data-theme="light"] .bg-bg\/90 { background-color: rgba(255, 255, 255, 0.94); }

.text-fg { color: var(--fg); }
.text-fg-muted { color: var(--fg-muted); }
.text-fg-subtle { color: var(--fg-subtle); }
.text-accent { color: var(--accent); }

.border-line { border-color: var(--line); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }
.border-accent\/40 { border-color: rgba(var(--accent-rgb), 0.4); }
.border-accent\/50 { border-color: rgba(var(--accent-rgb), 0.5); }
.bg-accent\/10 { background-color: rgba(var(--accent-rgb), 0.1); }

.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }

.sticky { position: sticky; }
.top-0 { top: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0px; }
.z-40 { z-index: 40; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.backdrop-blur { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.max-w-6xl { max-width: 72rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-md { max-width: 28rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-12 { height: 3rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-9 { height: 2.25rem; }
.w-9 { width: 2.25rem; }
.w-auto { width: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.ml-1 { margin-left: 0.25rem; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 3rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1.1; }
}
@media (min-width: 768px) {
    .md\:grid-cols-\[1\.1fr_0\.9fr\] { grid-template-columns: 1.1fr 0.9fr; }
    .md\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.text-center { text-align: center; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.transition { transition-property: color, background-color, border-color, transform, box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }
.no-underline { text-decoration: none !important; }
.text-inherit { color: inherit; }
.block { display: block; }
.hidden { display: none; }
.cursor-pointer { cursor: pointer; }

/* =============================================
   Hero Background Media
   ============================================= */
.hero-media-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroKenBurns 24s ease-in-out infinite alternate;
}

.hero-media-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.2) 0%, transparent 55%),
        linear-gradient(180deg, rgba(8, 8, 11, 0.5) 0%, rgba(6, 6, 9, 0.85) 100%);
}

@keyframes heroKenBurns {
    0% { transform: scale(1) translate3d(0, 0, 0); }
    100% { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}

/* =============================================
   Header / Navbar
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-header::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}

.site-header-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.site-logo:hover img {
    transform: scale(1.03);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: #FFFFFF;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    padding: 10px 18px;
    border-radius: 9px;
    background: var(--accent);
    color: #FFFFFF !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.45);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--line);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle:hover {
    border-color: var(--border-color-hover);
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--fg);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 0.625rem;
    transition: var(--transition);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background-color: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF !important;
    background: var(--accent) !important;
    border: 1px solid var(--accent) !important;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
    box-shadow: none !important;
}
.btn-primary:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fg) !important;
    background: transparent !important;
    border: 1px solid var(--line) !important;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
}
.btn-ghost:hover {
    background: var(--bg-subtle) !important;
    border-color: var(--fg-muted) !important;
    color: var(--fg) !important;
}

.btn-sm {
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
}

.form-control {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    background: var(--bg-input);
    border: 1px solid var(--line);
    border-radius: 0.375rem;
    color: var(--fg);
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.2);
}


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

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

body {
    font-family: var(--font);
    background-color: var(--bg-body);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(220, 38, 38, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 90% 25%, rgba(220, 38, 38, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(220, 38, 38, 0.04) 0%, transparent 35%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: #EF4444;
}

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

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography Helpers --- */
.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 25%, #EF4444 85%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent { color: var(--accent) !important; }
.text-info { color: var(--info) !important; }
.text-success { color: var(--success) !important; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #EF4444;
    background: var(--accent-light);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

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

.section {
    padding: 85px 0;
    position: relative;
}

/* --- Navigation / Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

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

.brand-logo-img {
    height: 38px;
    max-width: 160px;
    object-fit: contain;
}

.sidebar-logo-img {
    height: 32px;
    max-width: 140px;
    object-fit: contain;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.brand-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: var(--radius-sm);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.2);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.navbar-nav a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.navbar-cta {
    background: linear-gradient(135deg, #EF4444, #B91C1C) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    padding: 9px 22px !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.navbar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
    color: #FFFFFF !important;
}

.navbar-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-secondary) !important;
    font-size: 0.85rem !important;
    border-radius: 999px !important;
    padding: 6px 14px !important;
}

.navbar-admin-link:hover {
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 150px 0 85px 0;
    overflow: hidden;
    text-align: center;
}

.hero-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-glow-1 {
    top: 5%;
    left: 20%;
    background: #DC2626;
}

.hero-bg-glow-2 {
    top: 25%;
    right: 20%;
    background: #B91C1C;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #EF4444;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #EF4444;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 34px auto;
    line-height: 1.7;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-primary {
    background: linear-gradient(135deg, #EF4444, #B91C1C);
    color: #FFFFFF;
    border-color: #EF4444;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F87171, #DC2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    color: #FFFFFF;
}

.btn-glow {
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 35px rgba(220, 38, 38, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-accent {
    background: var(--accent-light);
    color: #EF4444;
    border-color: rgba(220, 38, 38, 0.3);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}

/* --- Servicios Section --- */
.category-block {
    margin-bottom: 50px;
}

.category-header {
    margin-bottom: 20px;
}

.category-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
}

.category-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.service-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    background: #050810;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-badge-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #EF4444;
    text-transform: uppercase;
}

.service-card-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.service-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.service-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-card-pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}

.price-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 10px;
    text-align: center;
}

.price-box-single {
    grid-column: 1 / -1;
}

.price-tier {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.price-tier small {
    display: block;
    text-transform: none;
    font-size: 0.65rem;
}

.price-amount {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
}

.price-box-high .price-amount {
    color: #EF4444;
}

.service-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.service-card-footer .btn {
    width: 100%;
}

/* --- Sedes Section --- */
.sedes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.sede-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
}

.sede-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: var(--shadow-lg);
}

.sede-card-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sede-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.badge-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.3);
    padding: 3px 10px;
    border-radius: 999px;
}

.badge-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.sede-info-list {
    margin-bottom: 18px;
}

.sede-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.sede-info-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.sede-horarios-list {
    margin: 18px 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.sede-horarios-list h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.horarios-compact-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.horario-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    color: var(--text-secondary);
}

.sede-card-action {
    margin-top: 18px;
}

/* --- Talleres Section --- */
.talleres-section {
    border-top: 1px solid var(--border-color);
}

.talleres-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}

.talleres-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.taller-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.taller-benefit-item svg {
    color: #EF4444;
    flex-shrink: 0;
}

/* =============================================
   RESERVAS PAGE & UNIFIED FORM STYLES
   ============================================= */
.reservation-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.attention-note {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    color: #FECACA;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.attention-icon {
    color: #EF4444;
    flex-shrink: 0;
}

.form-section-block {
    background: rgba(8, 12, 20, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 22px;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.form-section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--accent);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.form-section-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.form-section-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cc-highlight-group {
    background: rgba(220, 38, 38, 0.06);
    border: 1px dashed rgba(220, 38, 38, 0.4);
    padding: 14px;
    border-radius: var(--radius-md);
}

.cc-input {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #EF4444 !important;
    border-color: rgba(220, 38, 38, 0.4) !important;
}

.cc-hint {
    color: #FCA5A5 !important;
    font-weight: 500;
}

.sede-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.sede-select-card {
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    cursor: pointer;
    transition: var(--transition);
    display: block;
}

.sede-select-card input[type="radio"] {
    display: none;
}

.sede-select-card:hover {
    border-color: rgba(220, 38, 38, 0.4);
    background: var(--bg-card-solid);
}

.sede-select-card.selected {
    border-color: var(--accent);
    background: rgba(220, 38, 38, 0.12);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
}

.sede-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.sede-card-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.sede-card-address {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sede-card-address svg {
    color: var(--accent);
    flex-shrink: 0;
}

.service-cat-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #EF4444;
    margin: 18px 0 10px 0;
}

.services-subgrid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-rich-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-select-card-rich {
    width: 100%;
    background: #0B0F17;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: stretch;
    gap: 16px;
    user-select: none;
    position: relative;
    box-sizing: border-box;
}

.service-select-card-rich:hover {
    border-color: rgba(220, 38, 38, 0.4);
    background: #111827;
}

.service-select-card-rich.selected {
    border-color: var(--accent);
    background: rgba(220, 38, 38, 0.08);
    box-shadow: 0 0 0 1px var(--accent), 0 4px 20px rgba(220, 38, 38, 0.15);
}

.service-rich-thumb {
    position: relative;
    width: 110px;
    min-height: 110px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #030712;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
    .service-rich-thumb {
        width: 150px;
        min-height: 115px;
    }
}

.service-rich-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-rich-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #475569;
}

.service-check-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    background: var(--accent);
    color: #FFFFFF;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.service-select-card-rich.selected .service-check-badge {
    display: flex;
}

.service-rich-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-rich-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.service-rich-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.service-rich-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #EF4444;
    white-space: nowrap;
    margin-left: auto;
}

.service-rich-desc {
    margin: 6px 0 8px 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #CBD5E1;
    white-space: normal;
    word-break: break-word;
    flex: 1;
}

.service-rich-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #94A3B8;
    margin-top: 2px;
}

.service-rich-meta svg {
    color: var(--accent);
}

.wizard-subtotal-bar {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.subtotal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
}

.subtotal-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: #EF4444;
}

.subtotal-note {
    font-size: 0.75rem;
    color: #94A3B8;
    margin: 0;
}

.service-select-card {
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    user-select: none;
    position: relative;
}

.service-select-card:hover {
    border-color: rgba(220, 38, 38, 0.4);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.service-select-card.selected {
    border-color: var(--accent);
    background: rgba(220, 38, 38, 0.12);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.service-select-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #06090F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-select-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-select-img-wrap.placeholder-wrap {
    color: var(--text-muted);
}

.service-select-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.service-select-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.service-select-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-select-card.selected .service-select-check {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
}

.service-select-top h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.service-select-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-select-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.service-select-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-select-price {
    font-size: 1rem;
    font-weight: 800;
    color: #EF4444;
}

.reservation-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    margin-top: 20px;
}

.total-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #FFFFFF;
}

.total-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.total-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #EF4444;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.payment-option {
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option:hover {
    border-color: rgba(220, 38, 38, 0.3);
    background: var(--bg-card-solid);
}

.payment-option.selected {
    border-color: var(--accent);
    background: rgba(220, 38, 38, 0.12);
}

.payment-icon {
    color: #EF4444;
    margin-bottom: 8px;
}

.payment-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.payment-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- Form Controls & Row --- */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group label .required {
    color: #EF4444;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
    background: #0B1019;
}

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

.uppercase-input {
    text-transform: uppercase;
}

.input-group {
    display: flex;
    align-items: stretch;
}

.input-prefix {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    padding: 0 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-group .form-input {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.form-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-check input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #EF4444;
    cursor: pointer;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 10px;
}

.btn-submit-all {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.15rem;
}

/* --- Footer --- */
.footer {
    background: #020305;
    border-top: 1px solid var(--border-color);
    padding: 45px 0 25px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #EF4444;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Animations & Utilities --- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Scroll-Reveal System (.reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.25s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* --- Extra hover/transition utilities used by cards --- */
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

.hover\:-translate-y-0\.5:hover { transform: translateY(-3px); }
.hover\:border-accent\/50:hover { border-color: rgba(var(--accent-rgb), 0.5); }
.group:hover .group-hover\:scale-\[1\.03\] { transform: scale(1.03); }

@media (prefers-reduced-motion: reduce) {
    .reveal, .fade-up, .hero-media-bg, .badge-dot {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- 3-Step Wizard Layout (/reservar) --- */
.wizard-main-wrapper {
    padding: 110px 0 80px 0;
    min-height: 90vh;
}

.wizard-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.wizard-header {
    margin-bottom: 24px;
}

.wizard-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.wizard-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.wizard-stepper {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 20px 0;
}

.stepper-item {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition);
}

.stepper-item.active {
    border-color: var(--accent);
    color: #FFFFFF;
    background: rgba(220, 38, 38, 0.12);
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.25);
}

.stepper-item.completed {
    border-color: rgba(22, 163, 74, 0.4);
    color: var(--success);
    background: rgba(22, 163, 74, 0.08);
}

.wizard-card-form {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

.form-group-custom {
    margin-bottom: 16px;
}

.custom-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    pointer-events: none;
}

.custom-input, .custom-select, .custom-textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 0.92rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.custom-input.pl-icon, .custom-select.pl-icon {
    padding-left: 38px;
}

.custom-input:focus, .custom-select:focus, .custom-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
    background: #090E17;
}

.custom-textarea {
    min-height: 80px;
    resize: vertical;
}

.custom-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.panel-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.services-wizard-section {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
}

.empty-cc-placeholder {
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
}

.wizard-subtotal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-top: 16px;
}

.subtotal-label {
    font-size: 0.86rem;
    color: var(--text-secondary);
}

.subtotal-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}

.payment-options-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-option-compact {
    background: var(--bg-input);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    user-select: none;
}

.payment-option-compact svg, .payment-option-compact .lucide {
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.payment-option-compact input[type="radio"] {
    display: none;
}

.payment-option-compact:hover {
    border-color: rgba(220, 38, 38, 0.4);
}

.payment-option-compact.selected {
    border-color: var(--accent);
    background: rgba(220, 38, 38, 0.1);
}

.payment-option-compact.selected svg, .payment-option-compact.selected .lucide {
    color: var(--accent);
}

.pay-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
}

.pay-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.wizard-actions {
    display: flex;
    align-items: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.wizard-actions.flex-end {
    justify-content: flex-end;
}

.wizard-actions.flex-between {
    justify-content: space-between;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 900px) {
    .hero-title { font-size: 2.6rem; }
    .payment-options, .payment-options-compact { grid-template-columns: 1fr; }
    .form-row, .custom-grid-2 { grid-template-columns: 1fr; }
    .reservation-container, .talleres-container, .wizard-card-form { padding: 22px 16px; }
}

@media (max-width: 768px) {
    .site-logo img {
        height: 42px;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px 20px;
        border-bottom: 1px solid var(--border-color);
        display: none;
        gap: 4px;
    }

    .site-nav.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 13px 14px;
        font-size: 0.95rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-cta {
        justify-content: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        padding: 120px 0 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .wizard-stepper {
        flex-direction: column;
        gap: 6px;
    }
}
