/* ============================================================
   home.css — DC Recovery & Towing — Homepage only
   Replaces: style.css, responsive.css, custom.css, color1.css
   Font: Rubik Variable (local)
   Author: District Zero
   ============================================================ */

/* ── 1. Font ── */
@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-VariableFont.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: optional;
}

/* ── 2. Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    background: #fff;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #0060aa; text-decoration: none; transition: color .2s; }
a:hover { color: #010b17; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    color: #010b17;
    font-weight: 700;
    line-height: 1.25;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── 3. Layout ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── 4. Section title ── */
.sec-title { margin-bottom: 30px; }
.sec-title h2, .sec-title h3 {
    font-size: 26px;
    font-weight: 800;
    color: #010b17;
    margin-bottom: 12px;
}
.sec-title span.decor {
    display: block;
    width: 50px;
    height: 3px;
    background: #0069c0;
    margin-bottom: 20px;
}
.sec-title.text-left span.decor { margin-left: 0; }
.sec-title.text-center { text-align: center; }
.sec-title.text-center span.decor { margin: 0 auto 20px; }
.sec-title.large-title h2 { font-size: 32px; }


/* ── 5. Buttons ── */
.aut-cr-btn {
    display: inline-block;
    background: #0069c0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background .2s, color .2s;
    margin-right: 10px;
    margin-bottom: 10px;
}
.aut-cr-btn:hover { background: #010b17; color: #fff; }


/* ── 6. Header top bar ── */
.main-header { position: relative; z-index: 100; }

.header-top {
    background-color: #010b17;
    padding: 10px 0;
}

.header-top-content { display: flex; align-items: center; justify-content: space-between; }

.header-contact-info ul { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.header-contact-info ul li {
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.header-contact-info ul li a { color: #fff; }
.header-contact-info ul li a:hover { color: #0060aa; }

/* flaticon replacements — inline SVG is used in markup, these just size the gap holders */
.header-contact-info ul li svg { flex-shrink: 0; }

/* ── 7. Nav ── */
.header-lower { background: #fff; border-bottom: 2px solid #f0f0f0; }

.header-lower .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 104px;
}

.navbar-brand img { display: block; height: 50px; width: auto; }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar-nav > li > a {
    display: block;
    padding: 22px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #010b17;
    white-space: nowrap;
    position: relative;
}
.navbar-nav > li > a:hover,
.navbar-nav > li.active > a { color: #0060aa; }

/* dropdown */
.navbar-nav > li { position: relative; }
.navbar-nav > li > ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 200;
    min-width: 220px;
    background: #fff;
    border-top: 3px solid #0081e3;
    box-shadow: 0 4px 12px rgba(1,11,23,.15);
    padding: 6px 0;
}
.navbar-nav > li.open > ul.dropdown-menu { display: block; }
.navbar-nav > li > ul.dropdown-menu > li > a {
    display: block;
    padding: 9px 18px;
    color: #010b17;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    transition: padding .15s, color .15s;
}
.navbar-nav > li > ul.dropdown-menu > li:last-child > a { border-bottom: none; }
.navbar-nav > li > ul.dropdown-menu > li > a:hover { color: #0060aa; padding-left: 24px; background: #f5faff; }

/* hide chevron on desktop */
.nav-chevron { display: none; }

/* nav CTA button */
.nav-cta {
    display: inline-block;
    background: #010b17;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .2s;
    margin-left: 16px;
}
.nav-cta:hover { background: #0069c0; color: #fff; }

/* hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: #010b17;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform .2s, opacity .2s;
    transform-origin: center;
}
/* animate to X when open */
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) { opacity: 0; }
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar-toggle:hover { background: #0069c0; }

/* mobile collapse */
.navbar-collapse { display: flex; align-items: center; }

/* ── 8. Page banner (inner pages) ── */
.page-banner {
    background-color: #010b17;
    background-image: linear-gradient(to right, rgba(1,11,23,.92) 0%, rgba(1,11,23,.75) 100%);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}
.page-banner h1 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-banner .breadcrumb-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-banner .breadcrumb-nav li { font-size: 14px; color: #c8d8ea; }
.page-banner .breadcrumb-nav li a { color: #c8d8ea; }
.page-banner .breadcrumb-nav li a:hover { color: #0060aa; }
.page-banner .breadcrumb-nav li.separator { color: #0060aa; }
.page-banner .breadcrumb-nav li.current { color: #fff; font-weight: 600; }


/* ── 9. Hero ── */
.hero-image-area { position: relative; overflow: hidden; line-height: 0; aspect-ratio: 1920 / 700; }
.hero-image-area img { width: 100%; height: auto; display: block; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(1,11,23,.75) 0%, rgba(1,11,23,.35) 60%, rgba(1,11,23,0) 100%);
    display: flex;
    align-items: center;
}
.hero-overlay .hero-container { width: 100%; max-width: 1200px; padding: 0 30px; margin: 0 auto; }
.hero-overlay .hero-text { max-width: 560px; padding: 40px 0; }
.hero-overlay h1 { font-size: 44px; font-weight: 800; color: #fff; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.hero-sub { font-size: 18px; color: #e0eeff; margin-bottom: 24px; font-weight: 500; line-height: 1.6; }

.hero-services { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 22px; }
.hero-services li { color: #e0eeff; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.hero-services li svg { color: #0060aa; flex-shrink: 0; }

.hero-buttons { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

a.hero-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0069c0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 14px 28px;
    letter-spacing: .5px;
    transition: background .2s;
}
a.hero-call:hover { background: #010b17; color: #fff; }

a.hero-whatsapp {
    display: none;
    align-items: center;
    gap: 10px;
    background: #1a7c3e;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 14px 28px;
    letter-spacing: .5px;
    transition: background .2s;
}
a.hero-whatsapp:hover { background: #166830; color: #fff; }


/* ── 10. Call to action bar ── */
.call-to-action-area {
    background: #0069c0;
    position: relative;
    padding: 36px 20px 80px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 60%, 76% 60%, 73% 100%, 27% 100%, 24% 60%, 0% 60%);
    margin-bottom: -20px;
}
.call-to-action-area .box {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: nowrap;
}
.call-to-action-area .box h2 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.call-to-action-area .box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #010b17;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background .2s;
    flex-shrink: 0;
}
.call-to-action-area .box a:hover { background: #1a2332; color: #fff; }


/* ── 11. Quality service ── */
.quality-service-area { padding: 70px 0; background: #fff; }
.quality-service-area .service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.quality-service-area p { color: #555; font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.quality-service-area .btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.quality-service-area .btn-row .aut-cr-btn:nth-child(2) { background: #010b17; }
.quality-service-area .btn-row .aut-cr-btn:nth-child(2):hover { background: #0069c0; }


/* ── 12. Trusted service (3 icon cards) ── */
.trusted-service-area { background: #f8f9fb; padding: 70px 0; }
.trusted-service-area .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.trusted-service-area .single-item {
    background: #fff;
    padding: 30px 24px;
    border-bottom: 3px solid transparent;
    transition: border-color .2s;
}
.trusted-service-area .single-item:hover { border-bottom-color: #0060aa; }

.trusted-service-area .icon-holder {
    width: 64px;
    height: 64px;
    background: #0069c0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.trusted-service-area .icon-holder svg { color: #fff; }

.trusted-service-area .content h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #010b17; }
.trusted-service-area .content p { color: #555; font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.trusted-service-area .content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 9px 18px;
    background: #0069c0;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.trusted-service-area .content a:hover { background: #010b17; color: #fff !important; }


/* ── 13. Best services (dark bg, image cards) ── */
.best-service-area { background: #010b17; padding: 70px 0; }
.best-service-area .sec-title h2 { color: #fff; }

.our-best-service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.best-service-area .single-item {
    background: #0c1a2b;
    overflow: hidden;
}
.best-service-area .single-item .img-holder img { width: 100%; height: auto; display: block; }
.best-service-area .single-item .title {
    padding: 16px 16px 20px;
}
.best-service-area .single-item .title h3 { color: #fff; font-size: 16px; font-weight: 700; }


/* service card CTA button — 3-col homepage section */
.our-best-service-items .service-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 9px 18px;
    background: #0069c0;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.our-best-service-items .service-btn:hover { background: #010b17; color: #fff !important; }

/* ── 14. Services detail strip ── */
.services-detail-strip { background: #fff; padding: 60px 0; }
.services-detail-strip .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.services-detail-strip h2 { color: #010b17; font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.services-detail-strip p { color: #555; font-size: 15px; line-height: 1.8; }
.services-detail-strip ul.check-list { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 28px; }
.services-detail-strip ul.check-list li { color: #010b17; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.services-detail-strip ul.check-list li svg { color: #0060aa; flex-shrink: 0; }
.services-detail-strip .cta-col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 10px; }

a.strip-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0069c0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 26px;
    transition: background .2s;
}
a.strip-call:hover { background: #fff; color: #010b17; }

a.strip-whatsapp {
    display: none;
    align-items: center;
    gap: 10px;
    background: #1a7c3e;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 26px;
    transition: background .2s;
}
a.strip-whatsapp:hover { background: #166830; }

/* service tag label */
.service-tag {
    display: inline-block;
    background: #0069c0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 16px;
}

/* strip content text */
.services-detail-strip .inner > div:last-child { padding: 20px 0 20px 30px; }
.services-detail-strip .inner h2 { margin-bottom: 16px; }

/* reversed row: image on right, text on left */
.services-detail-strip .inner--reverse { direction: rtl; }
.services-detail-strip .inner--reverse > div { direction: ltr; }

/* best services content area */
.best-service-area .single-item .content {
    padding: 12px 16px 24px;
}
.best-service-area .single-item .content p {
    color: #c8d8ea;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}
.best-service-area .single-item .content a {
    color: #0060aa;
    font-size: 13px;
    font-weight: 600;
}
.best-service-area .single-item .content a:hover { color: #fff; }


/* ── 15. Reviews slider (include) ── */
/* Minimal wrapper — reviews-slider.php has its own inline styles */
.reviews-section { padding: 60px 0; background: #fff; }


/* ── 16. FAQ + Gallery ── */
.faq-and-gallery-area { padding: 70px 0; background: #fff; }
.faq-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* accordion */
.accordion-box { margin-bottom: 24px; }
.accordion-box .accordion { border-bottom: 1px solid #e8e8e8; }
.acc-btn {
    position: relative;
    padding: 16px 44px 16px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #010b17;
    cursor: pointer;
    background: #fff;
    transition: color .2s;
    line-height: 1.4;
    user-select: none;
}
.acc-btn:hover { color: #0060aa; }
.acc-btn.active { color: #0060aa; background: #f5faff; }
.toggle-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.acc-btn .plus { display: inline-block; }
.acc-btn .minus { display: none; }
.acc-btn.active .plus { display: none; }
.acc-btn.active .minus { display: inline-block; }
.acc-content { padding: 0 16px 16px; background: #f5faff; }
.acc-content p { font-size: 14px; color: #555; line-height: 1.8; margin: 0; padding-top: 12px; }

a.more-question {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0060aa;
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
a.more-question:hover { color: #010b17; }

/* gallery right */
.work-gallery-right .work-gallery-items .single-item .img-holder img {
    width: 100%;
    height: auto;
    display: block;
}


/* ── 17. Areas section ── */
.areas-section { background: #f8f9fb; padding: 70px 0; }
.areas-intro { max-width: 720px; margin: 0 auto 40px; text-align: center; color: #555; font-size: 15px; line-height: 1.8; }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.area-card {
    background: #fff;
    border-top: 3px solid #0081e3;
    padding: 24px 20px;
}
.area-card h3 { font-size: 17px; font-weight: 700; color: #010b17; margin-bottom: 14px; }
.area-card h3 a { color: #010b17; }
.area-card h3 a:hover { color: #0060aa; }
.area-card ul li {
    padding: 4px 0;
    color: #444;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.area-card ul li svg { color: #0060aa; flex-shrink: 0; }
.area-card .view-link {
    display: inline-block;
    margin-top: 14px;
    color: #0060aa;
    font-size: 13px;
    font-weight: 600;
}
.area-card .view-link:hover { color: #010b17; }
.areas-note { text-align: center; margin-top: 30px; color: #555; font-size: 15px; }
.areas-note a { color: #0060aa; font-weight: 600; }


/* ── 18. Contact / appointment ── */
.free-appoinment-area { padding: 70px 0; background: #fff; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact form fields */
.free-appoinment-form .sec-title { margin-bottom: 24px; }
.free-appoinment-form .input-field { position: relative; margin-bottom: 20px; }
.free-appoinment-form .input-field input,
.free-appoinment-form .input-field textarea {
    width: 100%;
    background: #f8f9fb;
    border: 1px solid #e0e0e0;
    padding: 13px 16px;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.free-appoinment-form .input-field input:focus,
.free-appoinment-form .input-field textarea:focus { border-color: #0060aa; background: #fff; }
.free-appoinment-form .input-field textarea { height: 130px; resize: vertical; }
.free-appoinment-form button[type="submit"],
.free-appoinment-form input[type="submit"] {
    background: #0069c0;
    color: #fff;
    border: none;
    padding: 13px 32px;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}
.free-appoinment-form button[type="submit"]:hover,
.free-appoinment-form input[type="submit"]:hover { background: #010b17; }
.free-appoinment-form p.form-note { font-size: 13px; color: #888; margin-top: 10px; }
.free-appoinment-form .form-success { color: #2e7d32; font-weight: 600; margin-top: 12px; }
.free-appoinment-form .form-error { color: #c62828; font-weight: 600; margin-top: 12px; }


/* ── 19. Footer ── */
.footer-area { background: #010b17; color: #b9b9b9; }

.footer-top { background: #0c1a2b; padding: 30px 0; }
.footer-top .top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.footer-top .single-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-right: 1px solid rgba(255,255,255,.06);
}
.footer-top .single-item:last-child { border-right: none; }
.footer-top .icon-holder {
    width: 52px;
    height: 52px;
    background: #0069c0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-top .icon-holder svg { color: #fff; }
.footer-top .content h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-top .content p, .footer-top .content a { color: #b9b9b9; font-size: 14px; }
.footer-top .content a:hover { color: #0060aa; }

.footer-middle { padding: 50px 0 30px; }
.footer-middle .mid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.single-footer-widget .sec-title h3 { font-size: 16px; color: #fff; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.single-footer-widget .sec-title span.decor { background: #0069c0; }
.single-footer-widget .text p { color: #b9b9b9; font-size: 14px; line-height: 1.7; }

.single-footer-widget .service-list li a {
    color: #b9b9b9;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    transition: color .2s, padding-left .15s;
}
.single-footer-widget .service-list li a:hover { color: #0060aa; padding-left: 4px; }

.single-footer-widget .tags-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.single-footer-widget .tags-list li a {
    border: 1px solid rgba(255,255,255,.1);
    color: #b9b9b9;
    display: block;
    padding: 4px 14px;
    font-size: 13px;
    transition: background .2s, color .2s;
}
.single-footer-widget .tags-list li a:hover { background: #0069c0; color: #fff; border-color: #0060aa; }

.single-footer-widget h3 { color: #fff; font-size: 15px; font-weight: 700; margin: 20px 0 10px; text-transform: uppercase; }
.single-footer-widget .working-hours-weekdays { color: #b9b9b9; font-size: 14px; line-height: 1.7; }

.single-footer-widget p { color: #b9b9b9; font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.single-footer-widget p a { color: #b9b9b9; }
.single-footer-widget p a:hover { color: #0060aa; }
.single-footer-widget p svg { vertical-align: middle; margin-right: 6px; }

.footer-bottom { background: rgba(0,0,0,.45); padding: 16px 0; }
.footer-bottom .bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.copy-right p { color: #a0a0a0; font-size: 13px; margin: 0; }
.copy-right p a { color: #fff; text-decoration: underline; }
.copy-right p a:hover { color: #fff; text-decoration: none; }

.footer-social-link ul { display: flex; gap: 6px; }
.footer-social-link ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #000;
    border: 1px solid #1d1e1f;
    color: #a0a0a0;
    transition: background .2s, color .2s;
}
.footer-social-link ul li a:hover { background: #0069c0; color: #fff; border-color: #0060aa; }


/* ── 20. WhatsApp mobile button ── */
.btn-whatsapp-mobile { display: none; }


/* ── 21. Responsive ── */

/* Tablet — ≤ 900px */
@media (max-width: 900px) {
    .quality-service-area .service-grid { grid-template-columns: 1fr; gap: 30px; }
    .trusted-service-area .cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .our-best-service-items { grid-template-columns: 1fr 1fr; }
    .services-detail-strip .inner { grid-template-columns: 1fr; }
    .faq-gallery-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    .footer-middle .mid-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile — ≤ 640px */
@media (max-width: 640px) {
    /* Nav collapse */
    .navbar-toggle { display: flex; }
    .nav-chevron { display: inline-block !important; color: #0060aa; font-size: 20px; line-height: 1; transition: transform .2s; margin-left: auto; padding-left: 10px; }
    .navbar-nav > li.open > a .nav-chevron { transform: rotate(90deg); }
    .navbar-collapse {
    .nav-cta { background: #0069c0; }
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #010b17;
        border-top: 2px solid #0081e3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 300;
        padding: 0;
    }
    .navbar-collapse.in { display: flex; }
    .header-lower { position: relative; }
    .header-lower .nav-inner { flex-wrap: wrap; }

    .navbar-nav { flex-direction: column; align-items: stretch; width: 100%; }
    .navbar-nav > li > a {
        color: #fff;
        padding: 13px 16px;
        border-bottom: 1px solid #eee;
    }
    .navbar-nav > li > a:hover,
    .navbar-nav > li.active > a { color: #0060aa; background: rgba(0,129,227,.1); }
    .navbar-nav > li > ul.dropdown-menu {
        display: none;
        position: static;
        background: #011a2e;
        border: none;
        border-top: 2px solid #0081e3;
        box-shadow: none;
        width: 100%;
        padding: 0;
    }
    .navbar-nav > li.open > ul.dropdown-menu { display: block; }
    .navbar-nav > li > ul.dropdown-menu > li > a {
        color: #c8d8ea;
        padding: 10px 25px;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .navbar-nav > li > ul.dropdown-menu > li > a:hover { color: #0060aa; padding-left: 25px; background: rgba(0,129,227,.1); }

    .nav-cta { margin: 10px 15px; width: calc(100% - 30px); text-align: center; }

    /* Hero */
    .hero-image-area { min-height: 480px; background-color: #010b17; aspect-ratio: 1124 / 480; }
    .hero-image-area img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .hero-overlay h1 { font-size: 30px; }
    .hero-sub { font-size: 17px; }
    a.hero-call { font-size: 18px; padding: 13px 20px; }
    a.hero-whatsapp { display: inline-flex; font-size: 18px; padding: 13px 20px; }
    .hero-services li { font-size: 15px; }

    /* CTA bar */
    .call-to-action-area { clip-path: none; padding: 36px 20px; margin-bottom: 0; }
    .call-to-action-area .box { flex-direction: column; align-items: flex-start; }

    /* Trusted */
    .trusted-service-area .cards-grid { grid-template-columns: 1fr; }

    /* Best services */
    .our-best-service-items { grid-template-columns: 1fr; }

    /* Services detail */
    .services-detail-strip .cta-col { width: 100%; }
    a.strip-whatsapp { display: inline-flex; }

    /* Areas */
    .areas-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Contact grid */
    .contact-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-top .top-grid { grid-template-columns: 1fr; }
    .footer-top .single-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: 16px; }
    .footer-top .single-item:last-child { border-bottom: none; }
    .footer-middle .mid-grid { grid-template-columns: 1fr; }
    .footer-bottom .bottom-row { flex-direction: column; align-items: flex-start; gap: 10px; }

    /* WhatsApp mobile */
    .btn-whatsapp-mobile { display: inline-flex; align-items: center; margin-top: 10px; background: #1a7c3e; color: #fff; font-size: 16px; font-weight: 700; padding: 11px 22px; text-decoration: none; letter-spacing: .5px; }
    .btn-whatsapp-mobile:hover { background: #166830; color: #fff; }
    .aut-cr-btn { display: inline-block; margin-bottom: 10px; }

    /* Page banner */
    .page-banner { padding: 40px 0; }
    .page-banner h1 { font-size: 26px; }
}

@media (max-width: 400px) {
    .areas-grid { grid-template-columns: 1fr; }
    .sec-title.large-title h2 { font-size: 24px; }
}


/* ── Inner page content grid (replaces Bootstrap col-md-6 / row) ── */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
/* full-width row override */
.row.row--full { grid-template-columns: 1fr; }

/* col-md-push-6 / col-md-pull-6 — reverse column order */
.col-md-push-6 { order: 2; }
.col-md-pull-6 { order: 1; }

/* single column fallback */
.col-md-12 { grid-column: 1 / -1; }

/* service content padding */
.service-content { padding: 20px 30px; }
.service-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #010b17;
    margin-bottom: 16px;
}
.service-content p { color: #555; font-size: 15px; line-height: 1.8; margin-bottom: 14px; }

/* check list (inner pages use inline styles — provide class fallback) */
.service-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.service-content ul li {
    padding: 5px 0;
    color: #0060aa;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* breadcrumb separator icon (fa-angle-right fallback) */
.breadcrumb-nav .separator { color: #0060aa; }

/* quality service area — inner page variant */
.quality-service-area.services-detail-area { padding: 0; }
.quality-service-area.services-detail-area .container { padding-top: 0; }

/* row padding inside service area */
.quality-service-area .row { padding: 50px 0; border-bottom: 1px solid #eee; }
.quality-service-area .row:last-child { border-bottom: none; }

/* img-holder */
.img-holder img { width: 100%; height: auto; display: block; }

/* contact row — form + map */
.free-appoinment-area .row { border-bottom: none; padding: 0; }

/* ── Responsive — inner pages ── */
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .col-md-push-6 { order: unset; }
    .col-md-pull-6 { order: unset; }
    .service-content { padding: 10px 0; }
}


/* ── SVG icon replacements (removes Font Awesome dependency) ──
   Inline SVG snippets for find/replace in PHP files.
   Usage notes at bottom of this block.
── */

/* fa-angle-right in breadcrumb separators — replace with CSS */
.breadcrumb-nav .separator i { display: none; }
.breadcrumb-nav .separator::after {
    content: "›";
    font-size: 16px;
    color: #0060aa;
}

/* fa-angle-double-right on more-question link — replace with CSS */
a.more-question i { display: none; }
a.more-question::after {
    content: " »";
    font-size: 15px;
}

/* fa-plus / fa-minus in accordion — already plain text in new markup
   but legacy inner pages use <span class="plus fa fa-plus"> etc */
.acc-btn .plus.fa-plus::before { content: "+"; font-style: normal; }
.acc-btn .minus.fa-minus::before { content: "−"; font-style: normal; }
.acc-btn .plus.fa-plus,
.acc-btn .minus.fa-minus { font-family: inherit; }

/* fa-check in service lists — hide the i tag, SVG added via PHP find/replace */
.service-content ul li i.fa-check { display: none; }

/* fa-phone in hero-call buttons — hide i tag, SVG already in index.php */
a.hero-call i.fa-phone { display: none; }

/* fa-map-marker — hide, replaced by SVG in new markup */
i.fa-map-marker { display: none; }
