/* Modern Clean Variables */
:root {
    --primary: #4F46E5; /* Indigo */
    --primary-hover: #4338CA;
    --secondary: #10B981; /* Emerald */
    --bg-main: #F9FAFB;
    --bg-card: #FFFFFF;
    --text-main: #111827;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-sans: 'Inter', sans-serif;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Category Colors */
    --c-blue: #E0F2FE; var-c-blue-text: #0284C7;
    --c-purple: #F3E8FF; var-c-purple-text: #9333EA;
    --c-green: #D1FAE5; var-c-green-text: #059669;
    --c-orange: #FFEDD5; var-c-orange-text: #EA580C;
    --c-indigo: #E0E7FF; var-c-indigo-text: #4F46E5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.95rem;
}
.btn-primary { background: var(--text-main); color: #fff; } /* Black button like UrbanClap */
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: #F3F4F6; color: var(--text-main); }
.btn-secondary:hover { background: #E5E7EB; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-main); }
.btn-outline:hover { border-color: var(--text-main); }
.btn-block { width: 100%; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }

/* Navbar */
.navbar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 40;
}
.nav-container {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.brand-icon {
    background: var(--text-main);
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; justify-content: center; align-items: center;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.location-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-title .highlight {
    color: var(--primary);
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
}
.trust-badges {
    display: flex;
    gap: 1rem;
}
.badge {
    background: #F3F4F6;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}
.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.hero-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Category Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.cat-card {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}
.cat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.cat-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; justify-content: center; align-items: center;
    transition: all 0.3s;
}
.cat-svg { color: var(--primary); transition: all 0.3s; }
.bg-soft-blue { background: #EEF2FF; }

.cat-card:hover .cat-icon-wrap {
    background: var(--primary);
}
.cat-card:hover .cat-svg {
    color: #fff;
}

.cat-name { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }

/* Sections */
.section { padding: 5rem 0; }
.bg-light { background: #fff; border-bottom: 1px solid var(--border); }
.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.feature-item { text-align: center; }
.f-icon {
    width: 64px; height: 64px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    border: 1px solid var(--border);
}
.feature-item h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}
.step-box {
    width: 28%;
    text-align: center;
    position: relative;
}
.step-num {
    width: 48px; height: 48px;
    background: var(--text-main);
    color: #fff;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.step-box h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.step-box p { color: var(--text-muted); font-size: 0.9rem; }
.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-top: 24px;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); margin-top: 0.5rem; font-size: 0.9rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.footer-links a:hover { color: var(--text-main); }
.footer-bottom {
    text-align: center; border-top: 1px solid var(--border);
    padding-top: 1.5rem; color: var(--text-muted); font-size: 0.85rem;
}

/* Multi-step Modal Container */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(4px);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.booking-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -45%);
    width: 90%; max-width: 440px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.booking-modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { font-size: 1.25rem; font-weight: 700; }
.close-btn {
    background: transparent; border: none; font-size: 1.5rem;
    color: var(--text-muted); cursor: pointer;
}
.modal-body { padding: 1.5rem; }

/* Progress Bar */
.progress-container {
    height: 4px; background: var(--border);
    border-radius: 2px; margin-bottom: 1.5rem;
    overflow: hidden;
}
.progress-bar {
    height: 100%; background: var(--text-main);
    width: 33%; transition: width 0.3s;
}

/* Form Steps */
.form-step { display: none; animation: fadeIn 0.4s; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.step-title { font-size: 1.1rem; margin-bottom: 1.25rem; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 0.5rem; color: var(--text-main);
}
.form-control {
    width: 100%; padding: 0.875rem 1rem;
    border: 1px solid var(--border); border-radius: var(--radius-md);
    font-family: inherit; font-size: 0.95rem;
    transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--text-main); }
.form-control.error { border-color: #EF4444; }

textarea.form-control { resize: vertical; }

.summary-box {
    background: var(--bg-main); border: 1px solid var(--border);
    padding: 1rem; border-radius: var(--radius-md);
    margin-bottom: 1.5rem; text-align: center;
}
.summary-total { font-size: 1.1rem; }

/* Error/Success */
.error-msg {
    color: #EF4444; font-size: 0.85rem; font-weight: 500;
    margin-bottom: 1rem; display: none; text-align: center;
}
.success-state { text-align: center; padding: 2rem 0; }
.success-icon-large {
    color: var(--secondary); background: #D1FAE5;
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 1.5rem;
}

.spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin 0.8s linear infinite;
    display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile Responses */
@media(max-width: 860px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .trust-badges { justify-content: center; margin-bottom: 2rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .steps-container { flex-direction: column; align-items: center; gap: 2rem; }
    .step-box { width: 100%; max-width: 300px; }
    .step-line { display: none; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 500px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
}

/* Charge Breakdown Styles */
.charge-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.9rem; padding: 0.3rem 0;
}
.total-row {
    border-top: 1px solid var(--border);
    margin-top: 0.5rem; padding-top: 0.5rem;
    font-size: 1.1rem;
}


/* Process Flow (How it works) */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.process-step {
    text-align: center;
    width: 28%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-icon {
    width: 80px; height: 80px;
    background: #E0E7FF;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 20px;
    position: relative;
}
.p-icon img { width: 45px; height: 45px; object-fit: contain; }
.step-num-badge {
    position: absolute;
    top: -5px; right: 0px;
    background: #4F46E5; color: white;
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 14px; font-weight: bold;
    border: 2px solid white;
}
.process-step h4 { font-size: 1.15rem; margin-bottom: 8px; color: #111827; }
.process-step p { color: #6B7280; font-size: 0.95rem; line-height: 1.5; }
.process-connector {
    flex: 1;
    height: 4px;
    background: repeating-linear-gradient(90deg, #CBD5E1, #CBD5E1 8px, transparent 8px, transparent 16px);
    margin: 0 15px;
    margin-top: -80px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.t-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.t-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.t-text {
    font-size: 0.95rem;
    color: #4B5563;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 40px; height: 40px;
    background: #E0E7FF;
    color: #4F46E5;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-weight: bold; font-size: 1.1rem;
}
.t-author strong { display: block; font-size: 0.95rem; color: #111827; }
.t-author span { font-size: 0.8rem; color: #6B7280; }

@media(max-width: 860px) {
    .process-flow { flex-direction: column; gap: 3rem; }
    .process-step { width: 100%; max-width: 320px; }
    .process-connector { display: none; }
    .testimonial-grid { grid-template-columns: 1fr; }
}
/* Payment Method Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.payment-option {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.payment-option:hover {
    border-color: var(--primary);
    background: #F9FAFB;
}
.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}
.payment-option .opt-content {
    display: flex;
    flex-direction: column;
}
.payment-option .opt-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}
.payment-option .opt-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.payment-option input[type="radio"]:checked + .opt-content .opt-title {
    color: var(--primary);
}
.payment-option:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: #EEF2FF;
}
