/* Modern Clean Variables */
:root {
    --primary: #4ea189;
    --primary-hover: #3d816d;
    --secondary: #000000; 
    --bg-main: #F8FAFB;
    --bg-card: #FFFFFF;
    --text-main: #000000;
    --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 - Deeper Mint themed */
    --c-blue: #F0FDF4; var-c-blue-text: #4ea189;
    --c-purple: #F1F5F9; var-c-purple-text: #6B7280;
    --c-green: #F0FDF4; var-c-green-text: #3d816d;
    --c-orange: #FFF7ED; var-c-orange-text: #EA580C;
    --c-indigo: #F1F5F9; var-c-indigo-text: #000000;
}

* { 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 img, .nav-brand img {
    height: var(--logo-h, 45px);
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-inverted {
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
    :root { --logo-h: 42px; }
}

@media (max-width: 768px) {
    :root { --logo-h: 38px; }
    .nav-container { height: 60px; }
}

@media (max-width: 480px) {
    :root { --logo-h: 34px; }
}

.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;
}

/* Enhanced Footer */
.footer {
    background: #0F172A;
    color: #F8FAFC;
    padding: 5rem 0 2rem;
    border-top: 1px solid #1E293B;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.footer-links-list {
    list-style: none;
    padding: 0;
}
.footer-links-list li {
    margin-bottom: 0.75rem;
}
.footer-links-list a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.footer-links-list a:hover {
    color: #fff;
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-icon {
    width: 36px;
    height: 36px;
    background: #1E293B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}
.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1E293B;
    border: 1px solid #334155;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}
.app-btn:hover {
    background: #334155;
    border-color: #475569;
}
.app-btn-text {
    line-height: 1;
}
.app-btn-text span {
    display: block;
    font-size: 0.65rem;
    color: #94A3B8;
    margin-bottom: 2px;
}
.app-btn-text strong {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-bottom p {
    color: #64748B;
    font-size: 0.85rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-bottom-links a:hover {
    color: #94A3B8;
}

@media(max-width: 968px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media(max-width: 580px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Multi-step Modal Container */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.booking-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 95%; max-width: 950px;
    background: #fff;
    border-radius: 28px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-height: 92vh; /* Reduced for scroll-free */
    display: flex;
}
.booking-modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.modal-header {
    display: none; /* Custom header used in form side */
}

.modal-content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.modal-info-side {
    width: 38%;
    background: linear-gradient(165deg, #4f46e5 0%, #312e81 100%);
    padding: 3.5rem 2.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.modal-info-side::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.modal-form-side {
    width: 62%;
    padding: 2.5rem 3.5rem; /* Reduced padding */
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}

.modal-body { padding: 0; flex: 1; }

.modal-close-btn {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s;
    z-index: 10;
}
.modal-close-btn:hover { background: #f1f5f9; color: #1e293b; transform: rotate(90deg); border-color: #cbd5e1; }

/* Stepper */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem; /* Reduced margin */
    position: relative;
    padding: 0 10%;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 18px; left: 15%; right: 15%;
    height: 2px;
    background: #f1f5f9;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-dot {
    width: 40px; height: 40px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #cbd5e1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s;
}

.step-item.active .step-dot {
    background: #4f46e5;
    border-color: #4f46e5;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.12);
    transform: scale(1.1);
}

.step-item.active .step-label {
    color: #4f46e5;
}

.step-item.completed .step-dot {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.step-item.completed .step-label {
    color: #10b981;
}

/* Forms */
.section-header { margin-bottom: 1.5rem; }
.section-header h4 {
    font-size: 1.5rem; /* Reduced size */
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.03em;
}
.section-header p { font-size: 0.95rem; color: #64748b; margin-top: 4px; }

.form-group { margin-bottom: 1.75rem; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 700;
    margin-bottom: 0.6rem; color: #334155;
    text-transform: uppercase; letter-spacing: 0.025em;
}

/* Floating Label Refinement */
.form-floating-group { 
    position: relative; 
    margin-bottom: 24px; 
    width: 100%;
    display: block;
}
.form-floating-group label {
    position: absolute; 
    left: 1.25rem; 
    top: 1.25rem;
    color: #94a3b8; 
    font-size: 1rem; 
    font-weight: 500;
    pointer-events: none; 
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left top;
    z-index: 1;
}
.form-floating-group input:focus + label,
.form-floating-group input:not(:placeholder-shown) + label,
.form-floating-group textarea:focus + label,
.form-floating-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-1rem) scale(0.75);
    color: #4f46e5; 
    font-weight: 800;
}

.form-control {
    width: 100%;
    display: block;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s;
}

.form-floating-group .form-control { padding: 1.75rem 1.25rem 0.75rem; }

.form-control:focus {
    background: #fff;
    border-color: #4f46e5;
    box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.1);
    outline: none;
}
    box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.1);
    outline: none;
}

/* Interaction States */
.btn-primary.btn-block {
    background: #0f172a;
    color: #fff;
    font-weight: 800;
    padding: 1rem 2rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary.btn-block:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.2);
}
.btn-primary.btn-block:active { transform: translateY(0); }

.btn-outline.btn-back {
    background: transparent;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.2s;
}
.btn-outline.btn-back:hover { border-color: #cbd5e1; background: #f8fafc; color: #1e293b; }

/* Validation Messaging */
.validation-msg {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ef4444;
    margin-top: 6px;
    padding-left: 4px;
    display: none; /* Hidden by default */
}

.has-error .form-control {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
}

.has-error .validation-msg {
    display: block;
    animation: slideUp 0.2s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons and Footer */
.modal-footer {
    display: flex;
    gap: 16px;
    margin-top: 2rem; /* Reduced margin */
    align-items: center;
}

.btn-primary.btn-block {
    flex: 2;
    background: #0f172a;
    color: #fff;
    font-weight: 800;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.btn-primary.btn-block:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.2);
}

.btn-outline.btn-back {
    flex: 1;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    font-weight: 700;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.2s;
}
.btn-outline.btn-back:hover { border-color: #cbd5e1; background: #f1f5f9; color: #1e293b; }

/* Responsive Adjustments */
@media(max-width: 950px) {
    .booking-modal { 
        width: 95%; 
        max-width: 95%; 
        flex-direction: column; 
        max-height: 95vh; 
        top: 50%; 
        transform: translate(-50%, -50%); 
    }
    .modal-content-wrapper { flex-direction: column; height: auto; }
    .modal-info-side { 
        width: 100%; 
        padding: 2rem 1.5rem; 
        text-align: center; 
        min-height: auto;
    }
    .modal-info-side .info-trust-item { justify-content: center; }
    .modal-form-side { width: 100%; padding: 2rem 1.5rem; overflow-y: visible; }
}

@media(max-width: 640px) {
    .booking-modal { 
        width: 100%; 
        max-width: 100%;
        border-radius: 0; 
        min-height: 100vh; 
        height: 100vh;
        max-height: 100vh;
        top: 0; 
        left: 0;
        transform: none; 
        overflow-y: auto;
    }
    .booking-modal.active { transform: none; }
    .modal-content-wrapper { min-height: 100%; }
    .modal-form-side { padding: 1.5rem 1rem; flex: 1; }
    .booking-steps { padding: 0 5%; margin-bottom: 2rem; }
    .booking-steps::before { top: 16px; left: 15%; right: 15%; }
    .step-dot { width: 32px; height: 32px; font-size: 0.8rem; }
    .step-label { font-size: 0.65rem; }
    .section-header h4 { font-size: 1.4rem; }
    .modal-footer { flex-direction: column-reverse; gap: 10px; }
    .btn-outline.btn-back, .btn-primary.btn-block { width: 100% !important; flex: none !important; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-info-side { padding: 1.5rem; }
    .info-heading { font-size: 1.25rem; }
    .modal-close-btn { top: 10px; right: 10px; width: 32px; height: 32px; }
    .hero-title { font-size: 2.2rem; }
    .hero-container { grid-template-columns: 1fr; gap: 2rem; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 480px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 1.8rem; }
    .amc-banner-content h2 { font-size: 1.8rem; }
    .amc-banner { padding: 1.5rem; }
}

@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; }
    .modal-summary-item { margin-bottom: 10px; }
}
/* Info Side Utilities */
.info-heading { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; color: #fff; line-height: 1.2; }
.info-sub { font-size: 0.9rem; opacity: 0.8; margin-bottom: 2rem; }
.info-trust-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; font-weight: 500; }
.info-trust-item svg { color: #A5B4FC; }

.modal-summary-box {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.summary-label { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; color: #A5B4FC; margin-bottom: 10px; display: block; }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.9rem; }
.summary-item span:first-child { opacity: 0.8; }
.summary-item .val { font-weight: 600; }
/* Payment Method Options Optimized */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.5rem;
}
.payment-option {
    border: 2px solid #F1F5F9;
    border-radius: 18px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #fff;
}
.payment-option:hover {
    border-color: #E2E8F0;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.payment-option input[type="radio"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
    cursor: pointer;
}
.payment-option .opt-content {
    flex: 1;
}
.payment-option .opt-title {
    font-weight: 800;
    font-size: 1rem;
    color: #1E293B;
    display: block;
    margin-bottom: 2px;
}
.payment-option .opt-desc {
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.4;
}
.payment-option:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: #F5F3FF;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
.payment-option:has(input[type="radio"]:checked) .opt-title {
    color: var(--primary);
}

.payment-option.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    background: #F8FAFC !important;
    border-color: #E2E8F0 !important;
    filter: grayscale(1);
}

.payment-option.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #F1F5F9;
    color: #64748B;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1.5px solid #E2E8F0;
}
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid #E2E8F0;
    letter-spacing: 0.05em;
}

/* AMC Specific Styles */
.amc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.amc-plan-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}
.amc-plan-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.amc-plan-card.selected { border-color: var(--primary); background: #EEF2FF; }
.amc-plan-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.amc-plan-header h5 { font-size: 1.1rem; font-weight: 700; color: var(--text-main); }
.amc-plan-header .price { font-weight: 800; color: var(--primary); font-size: 1.1rem; }
.amc-plan-features { list-style: none; padding: 0; }
.amc-plan-features li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.amc-plan-features li svg { color: var(--secondary); }

.amc-section { background: #EEF2FF; border-bottom: 1px solid var(--border); }
.amc-banner {
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.amc-banner-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.amc-banner-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 500px; }
.amc-banner-image { width: 300px; height: auto; border-radius: 12px; }

.amc-devices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.amc-device-card {
    background: white; border-radius: var(--radius-lg); padding: 1.5rem;
    text-align: center; border: 1px solid var(--border); transition: all 0.3s;
    cursor: pointer;
}
.amc-device-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.amc-device-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.amc-device-card h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.amc-device-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }

@media(max-width: 860px) {
    .amc-devices-grid { grid-template-columns: 1fr; }
    .amc-banner { flex-direction: column; text-align: center; padding: 2rem; }
    .amc-banner-image { width: 200px; }
    .amc-grid { grid-template-columns: 1fr; }
}

.status-chip {
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
.status-chip.success { background: #DCFCE7; color: #166534; }
.status-chip.info { background: #DBEAFE; color: #1E40AF; }

.amc-calendar-table th { font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; }
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-soft {
    0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.btn-primary { 
    background: #000; 
    color: #fff; 
    position: relative; 
    overflow: hidden; 
}

.btn-primary:active {
    transform: scale(0.98);
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    border-color: var(--primary);
}

.booking-modal {
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: translate(-50%, -48%) scale(0.96); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Repeat customer highlight */
#customerName.recognized {
    background-color: #F0FDF4;
    border-color: #22C55E;
}

/* Floating Labels */
.form-floating-group {
    position: relative;
    margin-bottom: 24px;
}

.form-floating-group input, .form-floating-group textarea {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.form-floating-group label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-floating-group textarea + label {
    top: 1.25rem;
    transform: none;
}

.form-floating-group input:focus + label,
.form-floating-group input:not(:placeholder-shown) + label,
.form-floating-group textarea:focus + label,
.form-floating-group textarea:not(:placeholder-shown) + label {
    top: 0.5rem;
    left: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    transform: none;
}

.form-floating-group.has-error .validation-msg,
.form-control.error ~ .validation-msg {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-control.error {
    border-color: #EF4444 !important;
    background-color: #FEF2F2 !important;
}

/* Admin Addon Remove Button */
.addon-remove-btn {
    color: #F87171;
    cursor: pointer;
    transition: 0.2s;
    background: #FEE2E2;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.addon-remove-btn:hover {
    background: #EF4444;
    color: white;
}
@charset " UTF-8\;
/* New Booking Progress Bar */
.booking-progress-container {
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 5px;
 background: #f1f5f9;
 z-index: 20;
}
.booking-progress-bar {
 height: 100%;
 width: 0%;
 background: linear-gradient(90deg, #4f46e5, #10b981, #3b82f6);
 background-size: 200% 200%;
 animation: flowGradient 3s ease infinite;
 transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes flowGradient {
 0% { background-position: 0% 50%; }
 50% { background-position: 100% 50%; }
 100% { background-position: 0% 50%; }
}
.offer-device-card {
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}
.offer-device-card:hover {
    border-color: #4F46E5;
    background: #F8FAFC;
    transform: translateY(-2px);
}
.offer-device-card.selected {
    border-color: #4F46E5;
    background: #EEF2FF;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
