/* Multi-City Online Printing - Modern Responsive Frontend CSS */
/* Theme: Royal Sapphire Blue & Tech Slate Navy (High-Tech, Premium & Trustworthy) */

:root {
    --primary: #2563eb;           /* Royal Sapphire Blue */
    --primary-hover: #1d4ed8;     /* Deep Royal Blue */
    --primary-dark: #1e40af;      /* Dark Navy Sapphire */
    --primary-light: #eff6ff;     /* Ice Blue soft tint */
    --primary-border: #bfdbfe;    /* Subtle Ice Blue border */
    --secondary: #0f172a;         /* Deep Slate Navy (Header/Footer/Hero) */
    --secondary-hover: #1e293b;   /* Midnight Slate */
    --accent: #0284c7;            /* Vibrant Electric Sky Blue */
    --accent-hover: #0369a1;
    --success: #059669;           /* Emerald Green (Pricing & Verification) */
    --success-light: #ecfdf5;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gray-50: #f8fafc;           /* Crisp Modern Slate Background */
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.15), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background-color: var(--gray-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-hover);
}

/* ================= Top Bar ================= */
.top-bar {
    background: var(--secondary);
    color: #cbd5e1;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contact a {
    color: #fff;
    font-weight: 500;
}

.top-contact .divider {
    margin: 0 8px;
    opacity: 0.4;
}

.wa-top-btn {
    background: #25d366;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.wa-top-btn:hover {
    background: #20ba59;
}

/* ================= Main Header ================= */
.main-header {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
}

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

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.track-link {
    color: var(--primary);
    font-weight: 600;
}

.header-cta .btn {
    padding: 10px 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-800);
}

/* ================= Buttons & Form Controls ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #fff;
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.btn-success {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(5, 150, 105, 0.35);
}
.btn-success:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: #fff;
    box-shadow: 0 6px 20px 0 rgba(5, 150, 105, 0.45);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--gray-700);
}
.btn-outline:hover {
    background: var(--gray-100);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--gray-800);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ================= Flash Alerts ================= */
.flash-wrapper {
    margin-top: 16px;
}
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    font-size: 14px;
}
.alert-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}
.alert-danger {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ================= Hero Section ================= */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #1e3a5f 100%);
    color: #fff;
    padding: 50px 0 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(191, 219, 254, 0.4);
    color: #bfdbfe;
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero-lead {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
    color: #e4e4e7;
}

.hero-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 10px;
    color: #f4f4f5;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp-hero {
    background: #18181b;
    border: 1px solid #3f3f46;
    color: #fff;
}
.btn-whatsapp-hero:hover {
    background: #27272a;
    border-color: #52525b;
}

/* ================= Order Wizard Card ================= */
.order-wizard-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.35);
    padding: 28px;
    color: var(--gray-800);
    border: 2px solid #09090b;
}

.wizard-header {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.wizard-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wizard-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Wizard Steps Indicator */
.wizard-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    flex: 1;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 4px;
    transition: all 0.3s;
}

.step-node.active .step-number {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.step-node.completed .step-number {
    background: var(--accent);
    color: #fff;
}

.step-node.active, .step-node.completed {
    color: var(--gray-800);
}

/* Wizard Step Containers */
.wizard-step-content {
    display: none;
}
.wizard-step-content.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

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

/* Step 1: OTP */
.phone-input-wrap {
    display: flex;
    align-items: stretch;
}
.country-code {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-right: none;
    padding: 10px 14px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}
.phone-input-wrap .form-control {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.otp-box-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Step 2: Upload Dropzone */
.dropzone-box {
    border: 2px dashed var(--primary-border);
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.dropzone-box:hover, .dropzone-box.dragover {
    border-color: var(--primary);
    background: #dbeafe;
}

.dropzone-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.dropzone-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.dropzone-hint {
    font-size: 12px;
    color: var(--gray-500);
}

/* Step 3: File Verified Box */
.verified-file-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.file-info-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.file-icon-badge {
    font-size: 32px;
}

.file-name-txt {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-900);
    word-break: break-all;
}

.file-meta-txt {
    font-size: 12px;
    color: var(--gray-500);
}

.page-badge {
    background: #dcfce7;
    color: #166534;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
}

/* Step 4: Toggle Option Grids */
.option-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.option-choice-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    background: #fff;
    user-select: none;
}

.option-choice-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Delivery Option Cards */
.delivery-option-card {
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    background: #ffffff;
    transition: all 0.2s ease;
    text-align: left;
    user-select: none;
    position: relative;
}
.delivery-option-card:hover {
    border-color: var(--primary);
    background: #f8fafc;
}
.delivery-option-card.selected {
    border-color: var(--primary) !important;
    background: var(--primary-light) !important;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25) !important;
}
.delivery-option-card .option-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
}
.delivery-option-card.selected .option-title {
    color: var(--primary);
}
.delivery-option-card .option-desc {
    color: #64748b;
    font-size: 11px;
    line-height: 1.4;
}

.option-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.option-title {
    font-weight: 700;
    font-size: 14px;
}

.option-desc {
    font-size: 11px;
    color: var(--gray-500);
}

/* Copies Quick Select */
.copies-quick-select {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.copy-pill {
    padding: 6px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.copy-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Sticky Live Pricing Summary Bar inside Wizard */
.live-price-card {
    background: var(--gray-900);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.price-row.total-row {
    border-top: 1px solid #334155;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.price-total-val {
    color: #34d399;
}

/* Step Navigation Footer */
.wizard-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    gap: 12px;
}

/* ================= Section Layouts ================= */
.section-pad {
    padding: 70px 0;
}

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

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-lead {
    font-size: 16px;
    color: var(--gray-600);
}

/* Modern Premium Customized Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-accent, #991b1b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
}

.service-card:hover::before {
    opacity: 1;
}

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

/* Service Card Featured Image Banner */
.service-card-media-banner {
    position: relative;
    width: calc(100% + 48px);
    margin: -26px -24px 18px -24px;
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.service-card-media-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-media-banner img {
    transform: scale(1.06);
}

.service-media-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.service-card-city-pill {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 12px;
}

.service-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: var(--icon-bg, #f1f5f9);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-box {
    transform: scale(1.08) rotate(2deg);
}

.service-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.service-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.35;
}

.service-card-tagline {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

.service-feature-check {
    color: #16a34a;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    margin-top: 2px;
}

.service-card-meta {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.service-meta-price {
    display: flex;
    flex-direction: column;
}

.service-meta-label {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-meta-val {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.service-meta-turnaround {
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 4px 8px;
    border-radius: 6px;
}

.service-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.service-card-actions .btn {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-service-order {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-service-order:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.btn-service-explore {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.btn-service-explore:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    position: relative;
}

.step-index-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 12px 0 6px 0;
}

.step-card p {
    font-size: 13px;
    color: var(--gray-600);
}

/* Price Slabs Table */
.price-table-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th {
    background: #09090b;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 2px solid var(--primary);
}

.data-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-800);
}

.data-table tbody tr:hover {
    background: var(--gray-50);
}

/* City SEO Content Sections */
.city-content-section {
    background: #fff;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.city-content-block {
    margin-bottom: 36px;
}

.city-content-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.city-content-block p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-answer {
    padding: 0 24px 18px 24px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

/* Multi-City Internal Linking Pills */
.city-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--gray-300);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
}

.city-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* WhatsApp CTA Banner */
.whatsapp-cta-section {
    background: #09090b;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    color: #fff;
    text-align: center;
    padding: 55px 20px;
}

.whatsapp-cta-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.whatsapp-cta-section p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tracking Page Stepper */
.tracking-stepper {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.track-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.track-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    font-size: 16px;
    font-weight: 700;
}

.track-step.done .track-step-circle {
    background: var(--accent);
    color: #fff;
}
.track-step.current .track-step-circle {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 6px var(--primary-light);
}

/* ================= Footer ================= */
.main-footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 60px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-contact-info p {
    font-size: 13px;
    margin-bottom: 6px;
    color: #cbd5e1;
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.btn-whatsapp-footer {
    background: #25d366;
    color: #fff;
    font-size: 13px;
    padding: 10px 18px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    font-size: 12px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ================= Mobile Responsiveness ================= */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--gray-200);
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.active {
        display: block;
    }
    .main-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 28px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .order-wizard-card {
        padding: 20px 16px;
    }
}

/* ================= City Work Samples & Gallery Cards ================= */
.city-gallery-section {
    background: #fafafa;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.city-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.work-sample-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
}

.work-sample-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -8px rgba(37, 99, 235, 0.18), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

.work-sample-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    background: #0f172a;
    overflow: hidden;
}

.work-sample-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.work-sample-card:hover .work-sample-img-wrap img {
    transform: scale(1.05);
}

.work-sample-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0f172a;
    color: #fff;
    border: 1px solid #3b82f6;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-sample-city-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.88);
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, 0.3);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

.work-sample-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.work-sample-title {
    font-size: 16px;
    font-weight: 800;
    color: #09090b;
    margin-bottom: 8px;
    line-height: 1.35;
}

.work-sample-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.work-sample-title a:hover {
    color: var(--primary);
}

.work-sample-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.work-sample-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid var(--gray-100);
    padding-top: 14px;
    margin-top: auto;
}

.work-sample-actions .btn {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
}
