/* =====================================================
   ZyWash — Public Website Stylesheet
   Modern SaaS design | Bootstrap 5 base
   ===================================================== */

:root {
    --primary:      #1a73e8;
    --primary-dk:   #1558b0;
    --primary-lt:   #e8f0fe;
    --accent:       #fbbc04;
    --dark:         #0f172a;
    --gray-50:      #f8fafc;
    --gray-100:     #f1f5f9;
    --gray-200:     #e2e8f0;
    --gray-600:     #475569;
    --gray-700:     #334155;
    --text:         #1e293b;
    --text-muted:   #64748b;
    --card-shadow:  0 2px 16px rgba(0,0,0,.08);
    --card-shadow-hover: 0 8px 32px rgba(0,0,0,.14);
    --radius:       16px;
    --radius-sm:    10px;
}

/* ── Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.65;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ── Navbar ───────────────────────────────────────── */
.pub-navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 0;
    transition: box-shadow .3s;
}

.pub-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.pub-navbar .navbar-brand {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.5px;
}

.pub-navbar .navbar-brand em {
    color: var(--primary);
    font-style: normal;
}

.pub-navbar .nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: .45rem .8rem !important;
    border-radius: 8px;
    transition: color .2s, background .2s;
    font-size: .95rem;
}

.pub-navbar .nav-link:hover,
.pub-navbar .nav-link.active {
    color: var(--primary);
    background: var(--primary-lt);
}

.btn-book {
    background: var(--primary);
    color: #fff !important;
    border-radius: 50px !important;
    padding: .45rem 1.25rem !important;
    font-weight: 600 !important;
    font-size: .9rem !important;
    transition: background .2s, transform .15s, box-shadow .2s !important;
    box-shadow: 0 2px 8px rgba(26,115,232,.3);
}

.btn-book:hover {
    background: var(--primary-dk) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,115,232,.35) !important;
}

/* ── Buttons ──────────────────────────────────────── */
.btn-primary-pub {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .7rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(26,115,232,.35);
    display: inline-block;
}

.btn-primary-pub:hover {
    background: var(--primary-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,115,232,.4);
}

.btn-outline-pub {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: .65rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all .2s;
    display: inline-block;
}

.btn-outline-pub:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Hero Section ─────────────────────────────────── */
.pub-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2a4a 50%, #1a3a6e 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.pub-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(26,115,232,.15);
    top: -200px; right: -150px;
    pointer-events: none;
}

.pub-hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(251,188,4,.08);
    bottom: -150px; left: -100px;
    pointer-events: none;
}

.pub-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 1.25rem;
}

.pub-hero h1 span {
    color: var(--accent);
}

.pub-hero p.lead {
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 1.5rem;
}

.hero-badge i { color: var(--accent); }

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat .lbl {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: .2rem;
}

/* Hero visual card */
.hero-visual {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    padding: 2rem;
}

.hero-order-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    margin-bottom: 1rem;
}

.hero-order-card:last-child { margin-bottom: 0; }

.hero-order-status {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .65rem;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-processing { background: #fef9c3; color: #a16207; }
.status-delivered  { background: #dcfce7; color: #15803d; }
.status-pickup     { background: #e0e7ff; color: #3730a3; }

/* ── Section Commons ──────────────────────────────── */
.pub-section {
    padding: 80px 0;
}

.pub-section-gray {
    padding: 80px 0;
    background: var(--gray-50);
}

.section-label {
    display: inline-block;
    background: var(--primary-lt);
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -.3px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 3rem;
}

/* ── Feature Cards ────────────────────────────────── */
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: transform .25s, box-shadow .25s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-lt);
}

.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--primary-lt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: .5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
}

/* ── How It Works ─────────────────────────────────── */
.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(26,115,232,.3);
}

.step-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 26px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

/* ── Service Cards ────────────────────────────────── */
.service-pub-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.service-pub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.service-pub-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

.service-pub-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem;
    font-size: 1rem;
}

.service-pub-card p {
    color: var(--text-muted);
    font-size: .87rem;
    margin: 0;
}

/* ── Testimonial Cards ────────────────────────────── */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: .75rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--dark);
    line-height: 1.2;
}

.testimonial-role {
    font-size: .78rem;
    color: var(--text-muted);
}

/* ── CTA Banner ───────────────────────────────────── */
.pub-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pub-cta::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -150px; right: -100px;
    pointer-events: none;
}

.pub-cta h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.pub-cta p {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.btn-white {
    background: #fff;
    color: var(--primary) !important;
    border-radius: 50px;
    padding: .7rem 1.8rem;
    font-weight: 700;
    font-size: 1rem;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ── Page Hero (inner pages) ──────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2a4a 100%);
    padding: 70px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}

.page-hero p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Contact ──────────────────────────────────────── */
.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.contact-icon-box {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--primary-lt);
    color: var(--primary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.pub-form-control {
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: .7rem 1rem;
    font-size: .93rem;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}

.pub-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,115,232,.15);
}

textarea.pub-form-control { resize: vertical; min-height: 130px; }

.form-label-pub {
    font-weight: 500;
    font-size: .875rem;
    color: var(--gray-700);
    margin-bottom: .4rem;
    display: block;
}

/* ── About ────────────────────────────────────────── */
.value-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
}

.value-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--primary-lt);
    color: var(--primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────── */
.pub-footer {
    background: var(--dark);
    padding: 64px 0 0;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}

.pub-footer .brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.3px;
}

.pub-footer .brand-name em {
    color: var(--primary);
    font-style: normal;
}

.pub-footer .footer-about {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    line-height: 1.65;
    margin-top: .75rem;
}

.pub-footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 1rem;
}

.pub-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pub-footer ul li {
    margin-bottom: .55rem;
}

.pub-footer ul li a {
    color: rgba(255,255,255,.55);
    transition: color .2s;
    font-size: .88rem;
}

.pub-footer ul li a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: .65rem;
    margin-top: 1.25rem;
}

.social-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background .2s, color .2s, transform .2s;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .75rem;
    font-size: .88rem;
    color: rgba(255,255,255,.55);
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: .1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 3rem;
    padding: 1.25rem 0;
    text-align: center;
    color: rgba(255,255,255,.35);
    font-size: .82rem;
}

.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--primary); }

/* ── Alert box ────────────────────────────────────── */
.pub-alert {
    border-radius: var(--radius-sm);
    padding: .9rem 1.25rem;
    font-size: .9rem;
    border: none;
}

/* ── Terms / Privacy ──────────────────────────────── */
.policy-body {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
}

.policy-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: .6rem;
}

.policy-body h3:first-child { margin-top: 0; }

.policy-body p, .policy-body li {
    color: var(--gray-700);
    font-size: .93rem;
    line-height: 1.7;
}

/* ── Utility ──────────────────────────────────────── */
.text-primary-pub { color: var(--primary) !important; }
.bg-primary-pub   { background: var(--primary) !important; }
.fw-800 { font-weight: 800; }

@media (max-width: 767.98px) {
    .pub-hero { padding: 70px 0 50px; }
    .pub-section, .pub-section-gray { padding: 56px 0; }
    .hero-stats { gap: 1.25rem; }
    .pub-hero .hero-visual { margin-top: 2.5rem; }
    .pub-cta { padding: 56px 0; }
    .policy-body { padding: 1.5rem; }
}

/* =====================================================
   ZyWash — Homepage Extended Styles
   Hero form, Why Choose, Featured Laundries, SEO block
   ===================================================== */

/* ── Hero Query Form ──────────────────────────────── */
.hero-query-form {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 16px 60px rgba(0,0,0,.25);
    border-top: 4px solid var(--accent);
}

.hero-query-form h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.hf-label {
    font-size: .8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .3rem;
    display: block;
}

.hf-input {
    width: 100%;
    padding: .6rem .9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    font-size: .9rem;
    color: #1e293b;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}

.hf-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,115,232,.12);
}

.hf-input.is-invalid { border-color: #b91c1c; }

.hf-error {
    font-size: .75rem;
    color: #b91c1c;
    margin-top: .25rem;
    display: none;
}

.hf-error.show { display: block; }

.btn-submit-form {
    width: 100%;
    padding: .75rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .3px;
}

.btn-submit-form:hover {
    background: var(--primary-dk);
    transform: translateY(-1px);
}

/* Form success state */
.form-success-box {
    text-align: center;
    padding: 1.5rem;
}

.form-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* ── Why Choose ZyWash ────────────────────────────── */
.why-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-lt);
}

.why-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.why-card h5 {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: .3rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Featured Laundries ───────────────────────────── */
.featured-laundry-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--card-shadow);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-laundry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.featured-laundry-banner {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-laundry-logo {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,.2);
    border: 3px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
}

.featured-rating-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(255,255,255,.95);
    color: var(--dark);
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.featured-rating-badge i { color: #f59e0b; }

.featured-open-badge {
    position: absolute;
    top: 12px; left: 12px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .2rem .55rem;
    border-radius: 20px;
}

.featured-laundry-body {
    padding: 1.1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-laundry-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: .2rem;
}

.featured-laundry-city {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
}

.featured-tag {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .55rem;
    border-radius: 6px;
    margin: .15rem .15rem 0 0;
}

.featured-laundry-footer {
    padding: .85rem 1.25rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-price-badge {
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
}

/* ── SEO Content Block ────────────────────────────── */
.seo-content-block {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
}

.seo-content-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.seo-content-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.75rem 0 .6rem;
}

.seo-content-block p {
    color: var(--gray-700);
    font-size: .93rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-content-block ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.seo-content-block li {
    color: var(--gray-700);
    font-size: .93rem;
    line-height: 1.8;
    margin-bottom: .35rem;
}

/* ── Testimonial Enhanced ─────────────────────────── */
.testimonial-card-lg {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}

.testimonial-card-lg:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--primary-lt);
    line-height: 1;
    margin-bottom: .5rem;
    display: block;
}

.testimonial-card-lg .stars {
    color: #f59e0b;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.testimonial-card-lg .review-text {
    color: var(--gray-700);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testimonial-card-lg .reviewer {
    display: flex;
    align-items: center;
    gap: .85rem;
    border-top: 1px solid var(--gray-100);
    padding-top: 1rem;
}

.reviewer-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    color: var(--dark);
    font-size: .92rem;
}

.reviewer-meta {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .1rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .7rem;
    color: #15803d;
    font-weight: 600;
    margin-top: .2rem;
}

/* ── Counter Banner ───────────────────────────────── */
.counter-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0c4a9e 100%);
    padding: 48px 0;
}

.counter-item {
    text-align: center;
    padding: 1rem;
}

.counter-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: .35rem;
}

.counter-label {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .6px;
}

/* ── Service Feature Cards (big) ──────────────────── */
.service-big-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.service-big-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.service-big-header {
    padding: 2rem 1.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-big-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.service-big-card h4 {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: .15rem;
}

.service-big-card .starting {
    font-size: .78rem;
    color: var(--text-muted);
}

.service-big-card .starting span {
    font-weight: 700;
    color: var(--primary);
}

.service-big-body {
    padding: 0 1.75rem 1.5rem;
}

.service-big-body p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .85rem;
    color: #334155;
    margin-bottom: .4rem;
}

.service-feature-item i { flex-shrink: 0; }

@media (max-width: 767.98px) {
    .hero-query-form { margin-top: 2rem; padding: 1.5rem; }
    .seo-content-block { padding: 1.5rem; }
    .counter-number { font-size: 1.8rem; }
}

/* =====================================================
   ZyWash — About Us Page Styles
   Highlight boxes, timeline, mission/vision, process
   ===================================================== */

/* ── About Hero (enhanced) ────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1a2a4a 40%, #1a3a6e 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(26,115,232,.12);
    top: -180px; right: -100px;
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(251,188,4,.06);
    bottom: -100px; left: -80px;
    pointer-events: none;
}

/* ── Highlight / Callout Box ──────────────────────── */
.highlight-box {
    border-left: 4px solid var(--primary);
    background: var(--primary-lt);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box p { margin: 0; color: #1e3a8a; font-size: .95rem; line-height: 1.7; }
.highlight-box strong { color: #1558b0; }

.highlight-box-accent {
    border-left: 4px solid var(--accent);
    background: #fffbeb;
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box-accent p { margin: 0; color: #78350f; font-size: .95rem; line-height: 1.7; }

.highlight-box-green {
    border-left: 4px solid #15803d;
    background: #f0fdf4;
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box-green p { margin: 0; color: #14532d; font-size: .95rem; line-height: 1.7; }

/* ── Intro Quote Block ────────────────────────────── */
.intro-quote {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.intro-quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-lt);
    font-family: Georgia, serif;
    position: absolute;
    top: -.5rem; left: 1.5rem;
    font-weight: 900;
}

.intro-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.75;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

.intro-quote cite {
    display: block;
    margin-top: .75rem;
    font-size: .85rem;
    font-style: normal;
    color: var(--text-muted);
    font-weight: 600;
}

/* ── Story Timeline ───────────────────────────────── */
.story-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: .85rem;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), #7c3aed, #15803d, var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: .25rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--primary);
    z-index: 1;
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .2rem .65rem;
    border-radius: 20px;
    margin-bottom: .5rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem;
}

.timeline-body {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
}

/* ── Mission / Vision Split ───────────────────────── */
.mv-card {
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mv-card-mission {
    background: linear-gradient(135deg, #1a73e8 0%, #1558b0 100%);
    color: #fff;
}

.mv-card-vision {
    background: linear-gradient(135deg, #0f172a 0%, #1a2a4a 100%);
    color: #fff;
}

.mv-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.mv-card p {
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.mv-card p:last-child { margin-bottom: 0; }

.mv-card::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    bottom: -60px; right: -60px;
}

/* ── Why Choose – Enhanced ────────────────────────── */
.whyus-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.whyus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.whyus-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: opacity .25s;
}

.whyus-card:hover::after { opacity: 1; }

.whyus-card.c1::after { background: var(--primary); }
.whyus-card.c2::after { background: #7c3aed; }
.whyus-card.c3::after { background: #15803d; }
.whyus-card.c4::after { background: #a16207; }
.whyus-card.c5::after { background: #b91c1c; }
.whyus-card.c6::after { background: #0369a1; }

.whyus-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.whyus-card h5 {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.whyus-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Process Steps (numbered) ─────────────────────── */
.process-section { position: relative; }

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.process-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.process-line {
    width: 2px;
    flex: 1;
    min-height: 50px;
    margin-top: .5rem;
    background: var(--gray-200);
}

.process-step-right {
    padding-bottom: 1rem;
    flex: 1;
}

.process-step-right h4 {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.process-step-right p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: .75rem;
}

.process-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 6px;
    margin: .15rem;
}

/* ── About Content Block ──────────────────────────── */
.about-prose {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
}

.about-prose h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .75rem;
}

.about-prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2rem 0 .6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.about-prose h3:first-of-type { margin-top: 1rem; border-top: none; }

.about-prose p {
    color: var(--gray-700);
    font-size: .94rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-prose ul, .about-prose ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.about-prose li {
    color: var(--gray-700);
    font-size: .94rem;
    line-height: 1.8;
    margin-bottom: .4rem;
}

/* ── Stat Highlight Row ───────────────────────────── */
.stat-highlight-row {
    background: linear-gradient(135deg, var(--primary) 0%, #0c4a9e 100%);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2.5rem 0;
}

.stat-highlight-item {
    text-align: center;
    padding: .75rem;
}

.stat-highlight-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-highlight-lbl {
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: .3rem;
}

/* ── Team Card Enhanced ───────────────────────────── */
.team-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.team-card h5 {
    font-weight: 800;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: .2rem;
}

.team-role {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
}

.team-bio {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-social { display: flex; gap: .5rem; justify-content: center; }

.team-social a {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--gray-100);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: background .2s, color .2s;
}

.team-social a:hover { background: var(--primary); color: #fff; }

@media (max-width: 767.98px) {
    .about-prose { padding: 1.5rem; }
    .mv-card { padding: 1.75rem; }
    .story-timeline { padding-left: 1.75rem; }
    .process-step { flex-direction: column; gap: .75rem; }
    .process-step-left { flex-direction: row; align-items: center; gap: .75rem; }
    .process-line { display: none; }
}

/* =====================================================
   ZyWash — Services Page Styles
   ===================================================== */

/* ── Service Quick-Nav ────────────────────────────── */
.svc-nav-wrap {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 60px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.svc-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.svc-nav::-webkit-scrollbar { display: none; }

.svc-nav-item a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.25rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
}

.svc-nav-item a:hover,
.svc-nav-item a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.svc-nav-icon {
    width: 26px; height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}

/* ── Service Block (full section per service) ─────── */
.svc-block {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.svc-block:last-of-type { border-bottom: none; }

.svc-block-alt { background: var(--gray-50); }

.svc-hero-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.svc-hero-card::before {
    content: '';
    position: absolute;
    width: 150px; height: 150px;
    border-radius: 50%;
    opacity: .07;
    bottom: -40px; right: -40px;
    background: currentColor;
}

.svc-icon-lg {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.svc-hero-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .4rem;
}

.svc-tagline {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.svc-hero-card p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.svc-price-row {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.svc-price {
    display: flex;
    flex-direction: column;
}

.svc-price-from {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    font-weight: 600;
}

.svc-price-val {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

/* ── Benefit List ─────────────────────────────────── */
.svc-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.svc-benefit-item:last-child { border-bottom: none; }

.svc-benefit-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.svc-benefit-title {
    font-weight: 700;
    color: var(--dark);
    font-size: .92rem;
    margin-bottom: .2rem;
}

.svc-benefit-desc {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Use-case tags ────────────────────────────────── */
.usecase-wrap {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
}

.usecase-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: .65rem;
}

.usecase-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .8rem;
    margin: .2rem;
    color: var(--gray-700);
    transition: background .2s, border-color .2s;
}

.usecase-tag:hover {
    background: var(--primary-lt);
    border-color: var(--primary);
    color: var(--primary);
}

/* ── Comparison Table ─────────────────────────────── */
.comparison-wrap {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.comparison-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2a4a 100%);
    color: #fff;
    padding: 1.75rem 2rem;
}

.comparison-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}

.comparison-header p {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    margin: .3rem 0 0;
}

.comparison-table-inner {
    overflow-x: auto;
}

.comparison-table-inner table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table-inner thead th {
    padding: 1rem;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--gray-200);
    background: var(--gray-50);
    font-weight: 700;
    color: var(--gray-600);
    text-align: center;
}

.comparison-table-inner thead th:first-child {
    text-align: left;
    min-width: 160px;
}

.comparison-table-inner tbody td {
    padding: .85rem 1rem;
    font-size: .88rem;
    border-bottom: 1px solid var(--gray-100);
    text-align: center;
    color: var(--gray-700);
    vertical-align: middle;
}

.comparison-table-inner tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

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

.cmp-yes  { color: #15803d; font-weight: 700; font-size: 1rem; }
.cmp-no   { color: #ef4444; font-size: 1rem; opacity: .55; }
.cmp-part { color: #a16207; font-size: .85rem; font-weight: 600; }
.cmp-price{ font-weight: 700; color: var(--primary); }

/* ── FAQ Enhanced ─────────────────────────────────── */
.faq-category-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
    margin: 2rem 0 .75rem;
    padding-left: .25rem;
}

.faq-category-label:first-child { margin-top: 0; }

.zw-accordion-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: .5rem;
}

.zw-accordion-item .accordion-button {
    font-size: .93rem;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    padding: 1rem 1.25rem;
}

.zw-accordion-item .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--primary-lt);
    box-shadow: none;
}

.zw-accordion-item .accordion-button::after {
    filter: none;
}

.zw-accordion-item .accordion-body {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding: .75rem 1.25rem 1.25rem;
    border-top: 1px solid var(--gray-100);
}

@media (max-width: 767.98px) {
    .svc-block { padding: 3rem 0; }
    .svc-hero-card { padding: 1.75rem; }
    .svc-nav-item a { padding: .75rem .9rem; font-size: .78rem; }
}

/* =====================================================
   ZyWash — Contact Page Styles
   ===================================================== */

/* ── Contact Info Card ────────────────────────────── */
.contact-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.35rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    border: 1px solid var(--gray-200);
    margin-bottom: .75rem;
    transition: transform .2s, box-shadow .2s;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

.contact-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    margin-bottom: .3rem;
}

.contact-info-line {
    font-size: .88rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .1rem;
}

.contact-info-sub {
    font-size: .8rem;
    color: var(--text-muted);
}

/* ── Contact Form Card ────────────────────────────── */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
}

.contact-form-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .4rem;
}

.contact-form-card .sub {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 1.75rem;
}

/* ── Success State Card ───────────────────────────── */
.contact-success-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 14px;
    padding: 2.5rem;
    text-align: center;
}

.contact-success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #15803d;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(21,128,61,.3);
}

.contact-success-card h4 {
    font-weight: 800;
    color: #14532d;
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.contact-success-card p {
    color: #166534;
    font-size: .9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-ref {
    display: inline-block;
    background: #fff;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: .4rem .9rem;
    font-size: .8rem;
    font-weight: 700;
    color: #15803d;
    letter-spacing: .5px;
    margin-bottom: 1.25rem;
}

/* ── Field group styling ──────────────────────────── */
.pub-field-group {
    margin-bottom: 1.1rem;
}

.pub-field-group label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem;
}

.pub-field-group label .req { color: #b91c1c; margin-left: .15rem; }

.pub-input {
    width: 100%;
    padding: .72rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--dark);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-family: inherit;
}

.pub-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,115,232,.12);
}

.pub-input.is-error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.pub-input.is-valid { border-color: #15803d; }

.pub-field-error {
    font-size: .78rem;
    color: #b91c1c;
    margin-top: .3rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* ── Map Wrapper ──────────────────────────────────── */
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-200);
    height: 380px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Department Cards ─────────────────────────────── */
.dept-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.dept-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.dept-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.dept-card h5 {
    font-weight: 700;
    color: var(--dark);
    font-size: .95rem;
    margin-bottom: .3rem;
}

.dept-card p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: .75rem;
}

.dept-email {
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.dept-email:hover { color: var(--primary-dk); }

@media (max-width: 767.98px) {
    .contact-form-card { padding: 1.5rem; }
    .map-wrap { height: 260px; }
}

/* =====================================================
   ZyWash — Legal Pages (Terms & Privacy) Styles
   ===================================================== */

/* ── Legal page hero ──────────────────────────────── */
.legal-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1a2a4a 55%, #1a3a6e 100%);
    padding: 60px 0 55px;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(26,115,232,.1);
    top: -150px; right: -80px;
    pointer-events: none;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.85);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: .4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(251,188,4,.15);
    border: 1px solid rgba(251,188,4,.3);
    color: #fbbc04;
    font-size: .73rem;
    font-weight: 600;
    padding: .3rem .8rem;
    border-radius: 20px;
    margin-top: .5rem;
}

/* ── ToC (Table of Contents) ──────────────────────── */
.legal-toc {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
}

.legal-toc-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #94a3b8;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid #f1f5f9;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: .1rem;
}

.legal-toc a {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    padding: .45rem .5rem;
    border-radius: 8px;
    font-size: .82rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: background .15s, color .15s;
    line-height: 1.4;
}

.legal-toc a:hover {
    background: #f1f5f9;
    color: #1a73e8;
}

.legal-toc .toc-num {
    font-weight: 700;
    color: #cbd5e1;
    font-size: .75rem;
    flex-shrink: 0;
    min-width: 1.2rem;
    margin-top: .05rem;
}

/* ── Policy body (enhanced) ───────────────────────── */
.policy-body {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    border: 1px solid #e2e8f0;
}

.policy-body h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin: 2.5rem 0 .75rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
    scroll-margin-top: 90px;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.policy-body h2:first-of-type {
    margin-top: .5rem;
    padding-top: 0;
    border-top: none;
}

.policy-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #e8f0fe;
    color: #1a73e8;
    font-size: .82rem;
    font-weight: 800;
    flex-shrink: 0;
}

.policy-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.5rem 0 .5rem;
}

.policy-body p {
    color: #475569;
    font-size: .92rem;
    line-height: 1.85;
    margin-bottom: .85rem;
}

.policy-body ul,
.policy-body ol {
    padding-left: 1.35rem;
    margin-bottom: .85rem;
}

.policy-body li {
    color: #475569;
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: .35rem;
}

.policy-body a { color: #1a73e8; font-weight: 500; }
.policy-body a:hover { color: #1558b0; }

/* ── Legal callout box ────────────────────────────── */
.legal-callout {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    border-radius: 10px;
    margin: 1.25rem 0;
    font-size: .88rem;
    line-height: 1.65;
}

.legal-callout-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.legal-callout-warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #78350f;
}

.legal-callout-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.legal-callout-green {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #14532d;
}

.legal-callout i { flex-shrink: 0; margin-top: .15rem; font-size: 1rem; }

/* ── Data table ───────────────────────────────────── */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: .85rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.policy-table th {
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    padding: .7rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.policy-table td {
    padding: .65rem 1rem;
    border-bottom: 1px solid #f8fafc;
    color: #475569;
    vertical-align: top;
}

.policy-table tr:last-child td { border-bottom: none; }
.policy-table tr:hover td { background: #fafbfc; }

/* ── Legal sidebar CTA ────────────────────────────── */
.legal-sidebar-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a6e 100%);
    border-radius: 14px;
    padding: 1.5rem;
    color: #fff;
    margin-top: 1rem;
}

.legal-sidebar-cta h5 {
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: .5rem;
}

.legal-sidebar-cta p {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ── Last updated + meta strip ────────────────────── */
.policy-meta-strip {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.policy-meta-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    color: #64748b;
}

.policy-meta-item strong { color: #1e293b; }

@media (max-width: 991.98px) {
    .legal-toc { position: static; margin-bottom: 2rem; }
    .policy-body { padding: 1.5rem; }
}

/* =====================================================
   ZyWash — Optimisation Layer
   Breadcrumbs · FAB buttons · Animations · Accessibility
   ===================================================== */

/* ── Skip link (accessibility) ────────────────────── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: .85rem;
    z-index: 9999;
    transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Breadcrumbs ──────────────────────────────────── */
.zw-breadcrumb {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: .55rem 0;
}

.zw-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .15rem;
}

.zw-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: .15rem;
    font-size: .8rem;
    color: var(--text-muted);
}

.zw-breadcrumb-item a {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: color .15s;
}

.zw-breadcrumb-item a:hover { color: var(--primary-dk); }

.zw-breadcrumb-item.active span {
    color: var(--text);
    font-weight: 600;
}

/* Separator chevron between items */
.zw-breadcrumb-item + .zw-breadcrumb-item::before {
    content: '\F285'; /* bi-chevron-right */
    font-family: "bootstrap-icons";
    font-size: .65rem;
    color: #94a3b8;
    margin-right: .15rem;
}

/* ── Floating Action Buttons (WhatsApp / Call / Top) ─ */
.zw-fab-group {
    position: fixed;
    bottom: 1.75rem;
    right: 1.5rem;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .65rem;
}

.zw-fab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0,0,0,.22);
    transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
    text-decoration: none;
    animation: fabSlideIn .4s ease both;
}

.zw-fab:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.28);
    color: #fff;
}

.zw-fab:active { transform: scale(.96); }

.zw-fab-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation-delay: .1s;
}

.zw-fab-call {
    background: linear-gradient(135deg, #1a73e8 0%, #1558b0 100%);
    animation-delay: .2s;
}

.zw-fab-top {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    animation-delay: .3s;
}

/* Tooltip label on hover */
.zw-fab-tooltip {
    position: absolute;
    right: calc(100% + .65rem);
    background: rgba(15,23,42,.92);
    color: #fff;
    font-size: .73rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity .2s, transform .2s;
}

.zw-fab-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(15,23,42,.92);
}

.zw-fab:hover .zw-fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fabSlideIn {
    from { opacity: 0; transform: scale(.6) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Mobile: smaller FABs */
@media (max-width: 575.98px) {
    .zw-fab { width: 46px; height: 46px; font-size: 1.1rem; }
    .zw-fab-group { bottom: 1.25rem; right: 1rem; gap: .5rem; }
    .zw-fab-tooltip { display: none; }
}

/* ── Footer contact links ─────────────────────────── */
.footer-contact-link {
    display: flex !important;
    align-items: flex-start;
    gap: .6rem;
    text-decoration: none;
    color: rgba(255,255,255,.65);
    margin-bottom: .6rem;
    font-size: .85rem;
    line-height: 1.5;
    transition: color .2s;
}

.footer-contact-link:hover { color: #fbbc04; }

/* ── Enhanced scroll-driven animations ──────────────  */
.zw-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

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

/* Stagger delays */
.zw-fade-up[data-delay="1"] { transition-delay: .08s; }
.zw-fade-up[data-delay="2"] { transition-delay: .16s; }
.zw-fade-up[data-delay="3"] { transition-delay: .24s; }
.zw-fade-up[data-delay="4"] { transition-delay: .32s; }
.zw-fade-up[data-delay="5"] { transition-delay: .40s; }
.zw-fade-up[data-delay="6"] { transition-delay: .48s; }

/* ── Enhanced hover effects on cards ─────────────── */
.feature-card,
.service-pub-card,
.step-card,
.value-card,
.contact-card {
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease !important;
    will-change: transform;
}

.feature-card:hover,
.service-pub-card:hover,
.step-card:hover,
.value-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(26,115,232,.15) !important;
}

/* ── CTA button pulse animation ───────────────────── */
@keyframes ctaPulse {
    0%   { box-shadow: 0 0 0 0 rgba(251,188,4,.6); }
    60%  { box-shadow: 0 0 0 12px rgba(251,188,4,0); }
    100% { box-shadow: 0 0 0 0 rgba(251,188,4,0); }
}

.btn-book {
    animation: ctaPulse 2.4s infinite;
}

/* ── Page transition — subtle fade in on load ─────── */
@keyframes pageEnter {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

main { animation: pageEnter .35s ease both; }

/* ── Progress bar on scroll ───────────────────────── */
#zwScrollProgress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #fbbc04 100%);
    z-index: 9999;
    width: 0%;
    transition: width .1s linear;
    pointer-events: none;
}

/* =====================================================
   ZyWash — Zomato-style Homepage Hero (May 2026)
   Full-bleed photo background, centered headline,
   glass-morphism enquiry-form card, scroll cue.
   ===================================================== */

/* ── Hero section ─────────────────────────────────── */
.zw-hero {
    position: relative;
    min-height: 100vh;
    padding: 96px 0 72px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
}

/* Full-bleed background — stacked stock laundry images so it survives
   if any single one fails. Uses a clean linen / folded-towel aesthetic. */
.zw-hero__bg {
    position: absolute; inset: 0;
    background-image:
        url('https://images.unsplash.com/photo-1582735689369-4fe89db7114c?auto=format&fit=crop&w=2000&q=80'),
        url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: -2;
    animation: zw-hero-pan 30s ease-in-out infinite alternate;
}

@keyframes zw-hero-pan {
    from { transform: scale(1.05) translate3d(0,0,0); }
    to   { transform: scale(1.12) translate3d(-2%, -1%, 0); }
}

/* Dark gradient overlay (Zomato signature — keeps text readable on any photo) */
.zw-hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(15,23,42,.55) 0%, rgba(15,23,42,.85) 70%, rgba(0,0,0,.95) 100%),
        linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.65) 100%);
    z-index: -1;
}

.zw-hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Brand wordmark — same energy as Zomato's massive centered logo */
.zw-hero__brand {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.zw-hero__brand span { color: var(--accent, #fbbc04); }

.zw-hero__title {
    font-size: clamp(1.75rem, 4.6vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px;
    color: #fff;
    margin: 0 0 1rem;
    text-shadow: 0 4px 32px rgba(0,0,0,.55);
}

.zw-hero__subtitle {
    font-size: clamp(.95rem, 1.6vw, 1.15rem);
    color: rgba(255,255,255,.85);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.55;
}

/* CTA pills — visually echo Zomato's "Get it on Google Play / App Store" pair */
.zw-hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.75rem;
}
.zw-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    min-width: 200px;
}
.zw-hero__cta i {
    font-size: 1.6rem;
    line-height: 1;
}
.zw-hero__cta span {
    display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1;
}
.zw-hero__cta small { font-size: .7rem; opacity: .8; font-weight: 500; }
.zw-hero__cta strong { font-size: 1rem; font-weight: 700; }

.zw-hero__cta--primary {
    background: #fff; color: #0f172a;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.zw-hero__cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.45);
    color: #1a73e8;
}
.zw-hero__cta--ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
    backdrop-filter: blur(10px);
}
.zw-hero__cta--ghost:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
    transform: translateY(-2px);
}

.zw-hero__trust {
    display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem;
    justify-content: center;
    color: rgba(255,255,255,.78);
    font-size: .85rem; font-weight: 500;
    margin-bottom: 2.5rem;
}
.zw-hero__trust i { color: var(--accent, #fbbc04); margin-right: .35rem; }

/* Glass card holding the existing enquiry form */
.zw-hero__form-wrap {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
.zw-hero__form-card {
    background: rgba(255,255,255,.97) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.45) !important;
    border-top: 4px solid var(--accent, #fbbc04) !important;
    text-align: left;
}

/* Scroll-down cue — Zomato signature */
.zw-hero__scroll {
    display: flex; flex-direction: column; align-items: center; gap: .35rem;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .8rem; font-weight: 500;
    margin-top: 3rem;
    transition: color .2s, transform .2s;
}
.zw-hero__scroll:hover { color: #fff; transform: translateY(2px); }
.zw-hero__scroll i { font-size: 1.4rem; animation: zw-bounce 2s ease-in-out infinite; }

@keyframes zw-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* ── Collections row ──────────────────────────────── */
.zw-collections {
    padding: 80px 0;
    background: #fff;
}
.zw-collections__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark, #0f172a);
    text-align: center;
    margin-bottom: .5rem;
    letter-spacing: -.5px;
}
.zw-collections__subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 1rem;
}

.zw-collection-card {
    position: relative;
    display: block;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 24px rgba(15,23,42,.12);
    transition: transform .3s, box-shadow .3s;
    isolation: isolate;
}
.zw-collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(15,23,42,.25);
    color: #fff;
}
.zw-collection-card__img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
    z-index: -2;
}
.zw-collection-card:hover .zw-collection-card__img { transform: scale(1.08); }
.zw-collection-card__tint {
    position: absolute; inset: 0;
    z-index: -1;
}
.zw-collection-card__body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.5rem 1.6rem 1.4rem;
}
.zw-collection-card__body h3 {
    font-size: 1.4rem; font-weight: 800;
    margin: 0 0 .3rem;
    letter-spacing: -.3px;
}
.zw-collection-card__body p {
    font-size: .9rem; opacity: .9; margin: 0 0 .75rem; line-height: 1.4;
}
.zw-collection-card__more {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .85rem; font-weight: 700;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,.5);
    padding-bottom: 2px;
    transition: border-color .2s, gap .2s;
}
.zw-collection-card:hover .zw-collection-card__more {
    border-color: var(--accent, #fbbc04);
    gap: .6rem;
}

.zw-collections__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}
.zw-collections__stats > div { display: flex; flex-direction: column; gap: .15rem; }
.zw-collections__stats strong {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    color: var(--primary, #1a73e8);
    line-height: 1;
}
.zw-collections__stats span {
    font-size: .78rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── Mobile tuning ────────────────────────────────── */
@media (max-width: 767.98px) {
    .zw-hero { padding: 72px 0 48px; min-height: auto; }
    .zw-hero__brand { font-size: 2.4rem; margin-bottom: .75rem; }
    .zw-hero__title { font-size: 1.5rem; }
    .zw-hero__cta { min-width: 0; flex: 1 1 45%; padding: .65rem 1rem; }
    .zw-hero__cta i { font-size: 1.3rem; }
    .zw-hero__form-card { padding: 1.5rem !important; }
    .zw-hero__trust { gap: .75rem 1.25rem; font-size: .78rem; }
    .zw-hero__scroll { margin-top: 2rem; }
    .zw-collections { padding: 56px 0; }
    .zw-collection-card { height: 280px; }
    .zw-collections__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

/* ── Collapsible SEO content block ────────────────── */
.seo-collapsible {
    position: relative;
    max-height: 240px;
    overflow: hidden;
    transition: max-height .45s ease;
}
.seo-collapsible.is-expanded {
    max-height: 9999px;
}
.seo-collapsible .seo-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 95%);
    pointer-events: none;
    transition: opacity .25s ease;
}
.seo-collapsible.is-expanded .seo-fade { opacity: 0; }
.seo-toggle-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 10px 26px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, #1565d8 0%, #0a4bbd 100%);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(21,101,216,.28);
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.seo-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(21,101,216,.36);
    background: linear-gradient(135deg, #0a4bbd 0%, #073a99 100%);
}
.seo-toggle-btn:focus-visible {
    outline: 3px solid #1565d8;
    outline-offset: 2px;
}

/* ── Reviews marquee (auto-scroll right→left) ─────── */
.reviews-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.reviews-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: reviewsScroll 60s linear infinite;
    will-change: transform;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track {
    animation-play-state: paused;
}
.review-card-wrap {
    flex: 0 0 320px;
    max-width: 320px;
}
.review-card-wrap .testimonial-card-lg {
    height: 100%;
}
@keyframes reviewsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .reviews-track { animation: none; }
}
@media (max-width: 575.98px) {
    .review-card-wrap { flex-basis: 86vw; max-width: 86vw; }
    .reviews-track { animation-duration: 40s; }
}

/* ── About-service sidebar: stacked feature cards ──
   The default .feature-card has height:100% so cards in a grid
   line up. But when two cards are stacked vertically inside the
   same column, each one stretches to the row's full height,
   doubling the column's content and spilling into the section
   below. Restore natural height for stacked sidebar cards. */
#about-service .col-lg-4 > .feature-card {
    height: auto;
}

/* ── Hero YouTube background video ────────────────── */
.zw-hero__video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -2;          /* sits above the photo bg, below the overlay */
    pointer-events: none; /* keep the video purely decorative */
}
.zw-hero__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Cover trick: take the larger of (16:9 of viewport width) or (16:9 of viewport height) */
    width: 100vw;
    height: 56.25vw;       /* 16:9 of viewport width */
    min-height: 100vh;
    min-width: 177.78vh;   /* 16:9 of viewport height */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
/* Respect reduced-motion preference — fall back to the still photo */
@media (prefers-reduced-motion: reduce) {
    .zw-hero__video { display: none; }
}

/* Dark fallback bg for the hero so we never see a flash of white before
   the YouTube iframe paints, and so reduced-motion users still get a
   readable surface for the white text. */
.zw-hero {
    background:
        radial-gradient(ellipse at 50% 35%, #1a3a6e 0%, #0a1428 70%, #050a14 100%);
}
