

/* ════════════════════════════════════════
   1. HERO SECTION
   ════════════════════════════════════════ */
.hero-section {
    position: relative;
    /* min-height: 600px; */
    padding-bottom: 20px;
}

/* @media (min-width: 992px) {
    .hero-section {
        min-height: 650px;
    }
} */

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, .90);
}

.hero-content {
    position: relative;
}

.hero-video-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid rgba(0, 123, 255, .20);
    box-shadow: 0 0 20px rgba(0, 123, 255, .4),
                0 0 60px rgba(0, 212, 255, .2);
}

.hero-video-wrap video {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.gradient-text {
    background: linear-gradient(90deg, #007BFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.tracking-widest {
    letter-spacing: .15em;
}

.btn-hero-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #007BFF;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, .4);
    transition: transform .2s;
    border: none;
}

.btn-hero-call:hover {
    transform: translateY(-2px);
    color: #fff;
}

.btn-hero-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFAA00;
    color: hsl(0, 0%, 10%);
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(255, 170, 0, .3);
    transition: transform .2s;
    border: none;
}

.btn-hero-quote:hover {
    transform: translateY(-2px);
    color: hsl(0, 0%, 10%);
}

@media (max-width: 767px) {
    .btn-hero-call,
    .btn-hero-quote {
        font-size: 13px;
        padding: 12px 12px;
    }
}

.hero-bottom-strip {
    position: relative;
    background: rgba(26, 26, 26, .90);
    padding: 6px 0;
}


/* ════════════════════════════════════════
   2. ABOUT PREVIEW
   ════════════════════════════════════════ */
.about-section {
    background: var(--bg);
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}


/* ════════════════════════════════════════
   3. SERVICES SECTION
   ════════════════════════════════════════ */
.services-section {
    background: var(--bg);
}

.service-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .3s, border-color .3s, box-shadow .3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    border-top: 2px solid var(--primary);
    box-shadow: 0 8px 25px rgba(0, 123, 255, .3);
}

.service-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
    display: block;
}

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

/* Service badge (the coloured pill overlaid on the image) */
.svc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.svc-badge svg {
    width: 14px;
    height: 14px;
}

.svc-badge-primary   { background: var(--primary);   color: var(--primary-fg);   }
.svc-badge-emergency { background: var(--emergency); color: var(--emergency-fg); }
.svc-badge-whatsapp  { background: var(--whatsapp);  color: var(--whatsapp-fg);  }
.svc-badge-yellow    { background: var(--yellow);    color: var(--yellow-fg);    }
.svc-badge-dark      { background: var(--dark-grey); color: var(--fg);           }


/* ════════════════════════════════════════
   4. WHY CHOOSE US
   ════════════════════════════════════════ */
.why-section {
    background: var(--secondary);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 123, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, .6));
}


/* ════════════════════════════════════════
   5. PROCESS STEPS
   ════════════════════════════════════════ */
.process-section {
    position: relative;
    padding: 80px 0;
}

.process-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.process-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, .90);
}

.process-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: -32px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, .5);
    flex-shrink: 0;
}

.process-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, .6));
}

.process-card {
    background: var(--bg);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 48px 24px 24px;
    text-align: center;
    width: 100%;
    transition: box-shadow .3s;
}

.process-card:hover {
    box-shadow: 0 0 15px rgba(0, 123, 255, .4),
                inset 0 0 10px rgba(0, 123, 255, .2);
}

/* Chevron clip-path on desktop only */
@media (min-width: 992px) {
    .chevron-card {
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .chevron-card-first {
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    }
}


/* ════════════════════════════════════════
   6. EICR COMPARISON TABLE
   ════════════════════════════════════════ */
.eicr-section {
    background: var(--secondary);
}

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

.eicr-table thead tr {
    background: var(--dark-grey);
    color: var(--fg);
}

.eicr-table th {
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: left;
}

.eicr-table td {
    padding: 16px 24px;
}

.eicr-table tbody tr:nth-child(odd) {
    background: var(--bg);
}

.eicr-table tbody tr:nth-child(even) {
    background: var(--secondary);
}

.eicr-table td:first-child {
    font-weight: 600;
    color: var(--fg);
}

.eicr-table td:not(:first-child) {
    color: var(--muted-fg);
}


/* ════════════════════════════════════════
   7. QUOTE FORM SECTION
   (The inline 3-step form embedded in the
    home page body — not the modal header.)
   quote-input / step-circle / btn-next /
   btn-back are in common.css because they
   are also used inside the modal.
   ════════════════════════════════════════ */
.quote-section {
    background: var(--dark-grey);
}

.quote-card {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5),
                0 0 20px rgba(0, 123, 255, .15);
}


/* ════════════════════════════════════════
   8. SEO CONTENT SECTION
   ════════════════════════════════════════ */
.seo-section {
    background: var(--light-grey);
}


/* ════════════════════════════════════════
   9. TESTIMONIALS
   ════════════════════════════════════════ */
.testi-section {
    background: var(--bg);
}

.testi-card {
    background: #1a1a1a;
    border-top: 3px solid var(--primary);
    box-shadow: 0 -4px 15px rgba(0, 123, 255, .2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* ════════════════════════════════════════
   10. FAQ SECTION
   ════════════════════════════════════════ */
.faq-section {
    background: var(--bg);
}

/* ── Desktop: side-tab layout ── */
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.faq-btn.active {
    background: var(--primary);
    color: #fff;
}

.faq-btn.inactive {
    background: var(--secondary);
    color: var(--fg);
}

.faq-btn.inactive:hover {
    background: var(--muted);
}

.faq-answer {
    background: var(--primary);
    border-radius: 12px;
    padding: 32px;
}

/* ── Mobile: accordion ── */
.faq-acc-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-acc-btn {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s;
    background: #1a1a1a;
    color: #fff;
}

.faq-acc-btn.open {
    background: var(--primary);
    color: #fff;
}

.faq-acc-btn.closed {
    background: var(--secondary);
    color: var(--fg);
}

.faq-acc-btn svg {
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-acc-btn.open svg {
    transform: rotate(180deg);
}

.faq-acc-body {
    background: var(--primary);
    padding: 16px 20px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.7;
    display: none;
}

.faq-acc-body.open {
    display: block;
}
.faq-acc-body{
display:none;
}

.faq-acc-body.open{
display:block;
}

.faq-acc-btn svg{
transition:transform .2s;
}

.faq-acc-btn.open svg{
transform:rotate(180deg);
}

/* ════════════════════════════════════════
   11. AREAS WE COVER
   ════════════════════════════════════════ */
.areas-section {
    background: var(--muted);
}

.area-pill {
    background: rgba(0, 123, 255, .10);
    color: var(--primary);
    border: 1px solid rgba(0, 123, 255, .20);
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}


/* ════════════════════════════════════════
   12. HOME-PAGE UTILITY CLASSES
   (extracted from formerly-inline styles –
    specific to home page sections only)
   ════════════════════════════════════════ */

/* Hero section content top/bottom padding */
.hero-content-pad {
    padding-top: 64px !important;
    padding-bottom: 96px !important;
}

/* Hero tagline paragraph (max-width + line-height + font-size) */
.hero-desc {
    max-width: 540px;
    line-height: 1.7;
    font-size: 17px;
}

/* Hero bottom strip text */
.hero-strip-text {
    font-size: 13px;
    line-height: 1.6;
    opacity: .8;
}

/* FAQ desktop side-tab layout (2-col grid) */
.faq-desktop-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
}