
/* ── Shared section backgrounds ── */
.about-story-section,
.about-values-section,
.about-engineers-section,
.about-services-section,
.about-testi-section { background: var(--bg); }

.about-accred-section{ background: #0a0a0a; }


/* ============================================================
   1. HERO
   ============================================================ */
.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .about-hero { min-height: 520px; }
}

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

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

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

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    background: linear-gradient(90deg, #007BFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-card {
    max-width: 700px;
    background: rgba(30, 30, 30, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

/* Hero CTA buttons */
.btn-about-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: var(--primary);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-about-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 123, 255, 0.55);
    color: #fff;
}

.btn-about-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #121212;
    background: var(--yellow);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 170, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-about-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 170, 0, 0.5);
    color: #121212;
}

@media (max-width: 575px) {
    .btn-about-call,
    .btn-about-quote {
        font-size: 0.8rem;
        padding: 0.65rem 1.1rem;
    }
}


/* ============================================================
   2. STORY / VISION / PROMISE CARDS
   ============================================================ */
.story-card {
    background: #1a1a1a;
    border-top: 3px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 -4px 15px rgba(0, 123, 255, 0.18);
}


/* ============================================================
   3. WHY CHOOSE US
   ============================================================ */
.about-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.about-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--primary);
    filter: drop-shadow(0 0 6px rgba(0, 123, 255, 0.5));
}


/* ============================================================
   4. ACCREDITATIONS
   ============================================================ */
.about-accred-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
}

.about-accred-logos img {
    height: 52px;
    max-width: 130px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.2s;
}

.about-accred-logos img:hover {
    filter: brightness(1.1);
}

@media (min-width: 768px) {
    .about-accred-logos img { height: 62px; }
}


/* ============================================================
   5. CORE VALUES
   ============================================================ */
.value-card {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 1.75rem 1rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 123, 255, 0.18);
}

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

.value-icon svg {
    width: 28px;
    height: 28px;
    color: #007BFF;
}


/* ============================================================
   6. ROLE OF OUR ENGINEERS
   ============================================================ */
.engineers-feature {
    display: flex;
    flex-direction: column;
}

.engineers-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.engineers-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #007BFF;
}

.about-engineer-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.15);
}

.about-engineer-img img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.btn-engineers-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    background: var(--primary);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    transition: opacity 0.2s, transform 0.2s;
}
.btn-engineers-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Utility: tracking-widest for uppercase label */
.tracking-widest { letter-spacing: 0.12em; }


/* ============================================================
   7. SERVICES GRID
   ============================================================ */
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

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

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

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

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

/* Service badges */
.svc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
}

.svc-badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

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


/* ============================================================
   8. SERVICE AREAS
   ============================================================ */
/* .about-areas-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
} */
 .service-locations{
    gap: 10px 25px !important;
 }


/* ============================================================
   9. TESTIMONIALS
   ============================================================ */
.about-testi-section .mw-900 { max-width: 1100px; margin-inline: auto; }

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

.testi-card .star {
    width: 20px;
    height: 20px;
    fill: var(--yellow);
    stroke: var(--yellow);
    stroke-width: 0;
    flex-shrink: 0;
}
