/* =============================================
   RESTORATAM - Design System
   Modern Industrial Theme | Shadcn/UI Inspired
   ============================================= */

/* CSS Variables */
:root {
    --primary: #F97316;
    --primary-hover: #EA580C;
    --primary-light: #FFF7ED;
    --primary-dark: #C2410C;
    --secondary: #1E293B;
    --secondary-light: #334155;
    --secondary-dark: #0F172A;
    --accent: #F59E0B;
    --accent-light: #FEF3C7;
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --danger: #EF4444;
    --danger-light: #FEE2E2;
    --info: #3B82F6;
    --info-light: #DBEAFE;
    --bg: #FAFAF9;
    --bg-card: #FFFFFF;
    --bg-muted: #F5F5F4;
    --border: #E7E5E4;
    --border-hover: #D6D3D1;
    --text: #1C1917;
    --text-secondary: #78716C;
    --text-muted: #A8A29E;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 15px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.85); backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
    width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff;
}
.brand-name { font-size: 20px; font-weight: 800; color: var(--secondary-dark); letter-spacing: -0.5px; display: block; line-height: 1.2; }
.brand-tagline { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; }
.navbar-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 500;
    color: var(--text-secondary); transition: var(--transition); white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--bg-muted); }
.nav-link.active { color: var(--primary); background: var(--primary-light); font-weight: 600; }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.navbar-toggle { display: none; width: 40px; height: 40px; border-radius: var(--radius-sm); align-items: center; justify-content: center; color: var(--text); }
.navbar-toggle:hover { background: var(--bg-muted); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
    transition: var(--transition); border: 1px solid transparent; cursor: pointer; white-space: nowrap;
}
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius); }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(249,115,22,0.4); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: var(--secondary-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { background: var(--bg-muted); border-color: var(--border-hover); }
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { background: var(--bg-muted); color: var(--text); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #20BD5A; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,0.4); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #DC2626; }
.btn-success { background: var(--success); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* =============================================
   EMERGENCY BANNER & FABs
   ============================================= */
.emergency-banner {
    background: linear-gradient(90deg, #DC2626, #EF4444); color: #fff; padding: 10px 0;
    font-size: 13px; font-weight: 600; text-align: center; position: fixed; top: 0; left: 0; right: 0;
    z-index: 1001; animation: pulse-bg 2s infinite;
}
.emergency-banner.hidden { display: none; }
.emergency-banner-content { display: flex; align-items: center; justify-content: center; gap: 12px; }
.emergency-close { color: #fff; font-size: 20px; background: rgba(255,255,255,0.2); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
@keyframes pulse-bg { 0%, 100% { opacity: 1; } 50% { opacity: 0.85; } }

.emergency-fab {
    position: fixed; bottom: 100px; right: 24px; z-index: 999;
    background: linear-gradient(135deg, #DC2626, #EF4444); color: #fff;
    padding: 12px 20px; border-radius: 50px; display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 13px; box-shadow: 0 4px 20px rgba(239,68,68,0.4);
    transition: var(--transition); animation: emergency-pulse 2s infinite;
}
.emergency-fab:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(239,68,68,0.5); }
.emergency-fab.active { background: linear-gradient(135deg, #059669, #10B981); animation: none; box-shadow: 0 4px 20px rgba(16,185,129,0.4); }
@keyframes emergency-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(239,68,68,0.4); } 50% { box-shadow: 0 4px 30px rgba(239,68,68,0.7); } }

.whatsapp-fab {
    position: fixed; bottom: 32px; right: 24px; z-index: 999;
    width: 56px; height: 56px; background: #25D366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    padding: 140px 0 100px; background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, #2D3748 100%);
    position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(249,115,22,0.15) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(245,158,11,0.1) 0%, transparent 50%);
}
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3); color: var(--primary); padding: 6px 16px;
    border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { font-size: 56px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -2px; margin-bottom: 8px; }
.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 18px; color: #94A3B8; line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: left; }
.hero-stat-number { font-size: 32px; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: 13px; color: #64748B; font-weight: 500; }

.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 32px; color: #fff;
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.hero-card-title { font-size: 18px; font-weight: 700; }
.hero-card-subtitle { font-size: 13px; color: #94A3B8; }
.hero-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-service-item {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm); padding: 16px 12px; text-align: center;
    transition: var(--transition); cursor: default;
}
.hero-service-item:hover { background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.3); transform: translateY(-2px); }
.hero-service-item i { color: var(--primary); margin-bottom: 8px; }
.hero-service-item span { display: block; font-size: 12px; font-weight: 500; color: #CBD5E1; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--secondary-dark); color: #fff; }
.section-muted { background: var(--bg-muted); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px; color: var(--primary);
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-title { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.section-dark .section-subtitle { color: #94A3B8; }

/* =============================================
   CARDS
   ============================================= */
.card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition); overflow: hidden;
}
.card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 24px; }
.card-header { padding: 24px 24px 0; }
.card-footer { padding: 0 24px 24px; }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card { position: relative; }
.service-card-icon {
    width: 52px; height: 52px; background: var(--primary-light);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    color: var(--primary); margin-bottom: 16px; transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--primary); color: #fff; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.service-card-footer { display: flex; align-items: center; justify-content: space-between; }
.service-price { font-size: 14px; color: var(--primary); font-weight: 700; }
.service-link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.service-link:hover { gap: 8px; }
.service-badge {
    position: absolute; top: 16px; right: 16px; padding: 4px 10px;
    border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.service-badge.emergency { background: var(--danger-light); color: var(--danger); }
.service-badge.featured { background: var(--accent-light); color: #B45309; }

/* =============================================
   GALLERY BEFORE/AFTER
   ============================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.gallery-card { overflow: hidden; }
.gallery-compare {
    position: relative; height: 280px; overflow: hidden; cursor: col-resize;
}
.gallery-before, .gallery-after {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.gallery-before { clip-path: inset(0 50% 0 0); }
.gallery-slider {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
    background: var(--primary); z-index: 2; cursor: col-resize;
}
.gallery-slider::after {
    content: '⟷'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 36px; height: 36px; background: var(--primary); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    box-shadow: var(--shadow-md);
}
.gallery-label {
    position: absolute; bottom: 8px; padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; z-index: 3;
    backdrop-filter: blur(8px);
}
.gallery-label.before { left: 8px; background: rgba(239,68,68,0.9); color: #fff; }
.gallery-label.after { right: 8px; background: rgba(16,185,129,0.9); color: #fff; }
.gallery-info { padding: 20px; }
.gallery-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.gallery-info p { font-size: 13px; color: var(--text-secondary); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.testimonial-card { padding: 32px; }
.testimonial-stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--text-muted); }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-size: 14px; background: var(--bg-card); color: var(--text); transition: var(--transition);
    outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Multi-step form */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 48px; }
.step {
    display: flex; align-items: center; gap: 8px; padding: 8px 16px;
    font-size: 13px; font-weight: 600; color: var(--text-muted); position: relative;
}
.step.active { color: var(--primary); }
.step.completed { color: var(--success); }
.step-number {
    width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px;
    transition: var(--transition);
}
.step.active .step-number { border-color: var(--primary); background: var(--primary); color: #fff; }
.step.completed .step-number { border-color: var(--success); background: var(--success); color: #fff; }
.step-connector { width: 40px; height: 2px; background: var(--border); }
.step-connector.active { background: var(--primary); }
.step-connector.completed { background: var(--success); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* =============================================
   BADGES
   ============================================= */
.badge {
    display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px;
    border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: var(--success-light); color: #059669; }
.badge-warning { background: var(--warning-light); color: #B45309; }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-info { background: var(--info-light); color: #2563EB; }
.badge-accent { background: rgba(249,115,22,0.15); color: var(--primary-dark); }
.badge-default { background: var(--bg-muted); color: var(--text-secondary); }

/* =============================================
   TABLES (Admin)
   ============================================= */
.table-wrapper { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; background: var(--bg-muted); border-bottom: 1px solid var(--border); }
.table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--primary-light); }

/* =============================================
   CALCULATOR
   ============================================= */
.calculator-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px; max-width: 600px; margin: 0 auto;
}
.calculator-result {
    text-align: center; padding: 32px; background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    border-radius: var(--radius); color: #fff; margin-top: 24px;
}
.calculator-result h3 { font-size: 14px; color: #94A3B8; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.calculator-result .value { font-size: 48px; font-weight: 900; color: var(--primary); }
.calculator-result .subtitle { font-size: 14px; color: #64748B; margin-top: 8px; }
.range-slider { width: 100%; -webkit-appearance: none; height: 6px; border-radius: 3px; background: var(--border); outline: none; }
.range-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); cursor: pointer; box-shadow: 0 2px 8px rgba(249,115,22,0.3); }
.range-value { font-size: 24px; font-weight: 800; color: var(--primary); text-align: center; }

/* =============================================
   TRACKER
   ============================================= */
.tracker-search { max-width: 500px; margin: 0 auto; }
.tracker-input-group { display: flex; gap: 8px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
    position: absolute; left: -32px; top: 4px; width: 22px; height: 22px;
    border-radius: 50%; border: 3px solid var(--border); background: var(--bg-card); z-index: 1;
}
.timeline-item.completed .timeline-dot { border-color: var(--success); background: var(--success); }
.timeline-item.current .timeline-dot { border-color: var(--primary); background: var(--primary); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); } 50% { box-shadow: 0 0 0 8px rgba(249,115,22,0); } }
.timeline-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.timeline-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 13px; color: var(--text-secondary); }
.timeline-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
.progress-bar-bg { height: 8px; background: var(--bg-muted); border-radius: 4px; overflow: hidden; margin-top: 16px; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 4px; transition: width 0.5s ease; }

/* =============================================
   ADMIN DASHBOARD
   ============================================= */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; padding-top: 72px; }
.admin-sidebar {
    background: var(--secondary-dark); padding: 24px 16px; border-right: 1px solid rgba(255,255,255,0.1);
    position: sticky; top: 72px; height: calc(100vh - 72px); overflow-y: auto;
}
.admin-nav-link {
    display: flex; align-items: center; gap: 12px; padding: 10px 16px;
    border-radius: var(--radius-sm); color: #94A3B8; font-size: 14px; font-weight: 500;
    margin-bottom: 4px; transition: var(--transition);
}
.admin-nav-link:hover { background: rgba(255,255,255,0.08); color: #E2E8F0; }
.admin-nav-link.active { background: rgba(249,115,22,0.15); color: var(--primary); }
.admin-nav-section { font-size: 11px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 1px; padding: 20px 16px 8px; }
.admin-content { padding: 32px; background: var(--bg); }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.admin-title { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; transition: var(--transition);
}
.stat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.stat-card-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.stat-card-value { font-size: 32px; font-weight: 800; color: var(--text); }
.stat-card-change { font-size: 12px; color: var(--success); font-weight: 600; margin-top: 4px; }
.stat-card-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -1px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary-dark); font-weight: 700; }
.btn-white:hover { background: #F5F5F4; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* =============================================
   FLASH MESSAGES
   ============================================= */
.flash-message { padding: 12px 0; font-size: 14px; font-weight: 500; position: relative; z-index: 999; }
.flash-success { background: var(--success-light); color: #059669; }
.flash-error { background: var(--danger-light); color: var(--danger); }
.flash-warning { background: var(--warning-light); color: #B45309; }
.flash-message .container { display: flex; align-items: center; justify-content: space-between; }
.flash-message button { font-size: 18px; color: inherit; opacity: 0.7; }

/* =============================================
   LOGIN PAGE
   ============================================= */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 60px; background: var(--bg-muted); }
.auth-card { width: 100%; max-width: 440px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.auth-card .brand-icon { margin: 0 auto 24px; width: 56px; height: 56px; }
.auth-card h1 { text-align: center; font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.auth-card .subtitle { text-align: center; color: var(--text-secondary); font-size: 14px; margin-bottom: 32px; }

/* =============================================
   SERVICE DETAIL PAGE
   ============================================= */
.page-header { padding: 120px 0 60px; background: linear-gradient(135deg, var(--secondary-dark), var(--secondary)); color: #fff; }
.page-header h1 { font-size: 44px; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.page-header p { font-size: 16px; color: #94A3B8; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #64748B; margin-bottom: 16px; }
.breadcrumb a { color: #94A3B8; }
.breadcrumb a:hover { color: var(--primary); }

/* =============================================
   BOOKING SUCCESS
   ============================================= */
.success-page { text-align: center; padding: 60px 24px; }
.success-icon { width: 80px; height: 80px; background: var(--success-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--success); }
.success-page h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.success-page .ref-code { font-size: 20px; font-weight: 700; color: var(--primary); background: var(--primary-light); padding: 12px 24px; border-radius: var(--radius-sm); display: inline-block; margin: 16px 0; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.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-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.hidden { display: none !important; }
.flex { display: flex; } .flex-col { flex-direction: column; } .items-center { align-items: center; } .justify-between { justify-content: space-between; } .gap-2 { gap: 16px; } .gap-1 { gap: 8px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 42px; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}
@media (max-width: 768px) {
    .navbar-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px; flex-direction: column; box-shadow: var(--shadow-lg); z-index: 1000; }
    .navbar-menu.open { display: flex; }
    .navbar-toggle { display: flex; }
    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero h1 { font-size: 34px; }
    .hero-stats { gap: 24px; }
    .hero-stat-number { font-size: 24px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-section h2 { font-size: 28px; }
    .btn-text-desktop { display: none; }
    .steps { flex-wrap: wrap; gap: 4px; }
    .step-connector { width: 20px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--secondary-dark); color: #94A3B8; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand h3 { font-size: 20px; font-weight: 800; color: #fff; }
.footer-brand .brand-icon { width: 36px; height: 36px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-section h4 { font-size: 15px; font-weight: 700; color: #E2E8F0; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: #94A3B8; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact i { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--primary); }
.footer-socials { display: flex; gap: 8px; }
.social-link {
    width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; color: #94A3B8; transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between; padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08); margin-top: 60px; font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #64748B; }
.footer-bottom-links a:hover { color: var(--primary); }

/* Option selection styling */
.option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.option-item {
    border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 16px; text-align: center;
    cursor: pointer; transition: var(--transition); background: var(--bg-card);
}
.option-item:hover { border-color: var(--primary); }
.option-item.selected { border-color: var(--primary); background: var(--primary-light); }
.option-item i { color: var(--primary); margin-bottom: 8px; }
.option-item span { display: block; font-size: 13px; font-weight: 600; }
