/*
Theme Name: Seamless Inspired FM
Theme URI: https://example.com
Author: Hassan
Author URI: https://example.com
Description: A clean corporate facility-management style theme inspired by Seamless FM (not affiliated).
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: seamless-inspired
*/

:root {
    --primary: #0052CC;
    --primary-light: #E8F2FF;
    --dark: #222222;
    --muted: #6b7280;
    --white: #ffffff;
    --max-width: 1160px;
    --radius-lg: 18px;
    --radius-md: 10px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --transition-fast: 0.18s ease-out;
    --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--dark);
    background-color: #f4f6fb;
    line-height: 1.6;
}

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

a:hover {
    text-decoration: underline;
}

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

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top bar */

.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 6px 0;
}

.top-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar i {
    font-style: normal;
    opacity: 0.75;
}

/* Header */

.site-header {
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.25);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: radial-gradient(circle at 0% 0%, #60a5fa, var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.site-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 19px;
}

.site-subtitle {
    font-size: 12px;
    color: var(--muted);
    margin-top: -4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: width var(--transition-fast);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: #0041a3;
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--white);
    color: var(--dark);
    border-color: #e5e7eb;
}

.btn-outline:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.header-burger {
    display: none;
}

/* Hero */

.hero {
    padding: 40px 20px 40px;
    background: radial-gradient(circle at top left, #e0ecff, #f4f6fb 60%, #ffffff);
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-kicker span {
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(191, 219, 254, 0.9);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.1;
    margin: 16px 0 10px;
}

.hero-highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 15px;
    color: var(--muted);
    max-width: 430px;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: var(--muted);
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Hero right widget */

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 20px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.hero-card-subtitle {
    font-size: 12px;
    color: var(--muted);
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.chip {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--primary-light);
    color: #1d4ed8;
}

.hero-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.hero-kpi {
    background: #f9fafb;
    border-radius: 14px;
    padding: 9px 10px;
    font-size: 11px;
}

.hero-kpi strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

/* Sections */

.section {
    padding: 30px 20px 10px;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 20px;
}

.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4f46e5;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 4px 0;
}

.section-desc {
    font-size: 14px;
    color: var(--muted);
}

/* Industries strip */

.industries-strip {
    background: #f9fafb;
    border-radius: 18px;
    padding: 12px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.industries-badge {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industries-pill {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--white);
    border: 1px dashed rgba(148, 163, 184, 0.8);
}

/* Services grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 15px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-size: 14px;
}

.service-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.service-title {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Two-column section */

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.process-step-badge {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--primary-light);
    color: #1d4ed8;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Stats strip */

.stats-strip {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.stat-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    min-width: 140px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    font-size: 13px;
}

.stat-item strong {
    display: block;
    font-size: 17px;
}

/* Testimonials */

.testimonials-strip {
    margin-top: 16px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 12px 14px;
    min-width: 230px;
    border: 1px solid rgba(226, 232, 240, 1);
    font-size: 13px;
}

/* CTA band */

.cta-band {
    margin-top: 26px;
    background: linear-gradient(135deg, #1d4ed8, #0041a3);
    border-radius: 24px;
    padding: 22px 22px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.cta-band-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 4px;
}

.cta-band-subtitle {
    font-size: 13px;
    opacity: 0.9;
}

/* Footer */

.site-footer {
    margin-top: auto;
    background: #020617;
    color: #cbd5f5;
    padding: 24px 20px 16px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
    font-size: 13px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* Forms */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
}

.form-field label {
    font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
    border-radius: 999px;
    border: 1px solid #d1d5db;
    padding: 8px 11px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
}

.form-field textarea {
    border-radius: 14px;
    min-height: 70px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner,
    .grid-2,
    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 22px;
    }

    .hero-title {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-inner {
        align-items: center;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .header-burger {
        display: block;
        font-size: 20px;
        cursor: pointer;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}




/* ===== VANTAGE CARE – CONTACT PAGE ENHANCEMENTS (page-id-13) ===== */

/* Narrower width for a more focused feel on contact page */
body.page-id-13 .section-inner {
    max-width: 1040px;
}

/* Give the contact page a softer intro spacing */
body.page-id-13 main.section {
    padding-top: 36px;
    padding-bottom: 54px;
}

/* Contact page header styling */
body.page-id-13 .section-header {
    align-items: flex-start;
    margin-bottom: 22px;
}

body.page-id-13 .section-header .section-title {
    font-size: 26px;
}

body.page-id-13 .section-header .section-desc {
    max-width: 620px;
}

/* Two-column layout spacing */
body.page-id-13 .grid-2 {
    align-items: flex-start;
}

/* Main contact form card tweaks */
body.page-id-13 .hero-card {
    border-radius: 22px;
    padding: 22px 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

body.page-id-13 .hero-card-title {
    font-size: 18px;
}

body.page-id-13 .hero-card-subtitle {
    font-size: 12px;
}

/* Make the submit button stretch full width on mobile */
body.page-id-13 .hero-card form .btn-primary {
    min-width: 160px;
}

/* Right-side info cards tweaks */
body.page-id-13 .service-card {
    margin-bottom: 16px;
}

body.page-id-13 .service-card .service-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Little emoji/icons in titles for visual hierarchy */
body.page-id-13 .service-card:nth-of-type(1) .service-title::before {
    content: "📞";
}

body.page-id-13 .service-card:nth-of-type(2) .service-title::before {
    content: "📍";
}


/* ===== ABOUT PAGE – VANTAGE CARE ===== */

/* Base typography just for About main area */
.about-page {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
}

/* Section labels on About page */
.about-page .section-kicker {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    color: #4f46e5;
}

/* Section titles on About page */
.about-page .section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

/* Hero title */
.about-page .about-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 10px 0 10px;
}

.about-highlight {
    color: var(--primary);
}

.about-page p {
    font-size: 14px;
    color: #374151;
}

.about-page h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

/* Generic About section spacing */
.about-section {
    margin-top: 34px;
}

/* === HERO LAYOUT (NEW) === */

.about-hero {
    margin-top: 10px;
    padding-bottom: 24px;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

.about-lead {
    font-size: 14px;
    color: var(--muted);
    max-width: 540px;
}

.about-lead-secondary {
    margin-top: 6px;
}

.about-pill-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-pill {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px dashed rgba(148, 163, 184, 0.85);
}

/* Right-hand hero meta card */

.about-hero-meta {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px 18px 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(226, 232, 240, 0.95);
    font-size: 13px;
}

.about-hero-meta-text {
    margin: 0 0 12px;
    color: #4b5563;
}

.about-hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.about-hero-stat {
    background: #f9fafb;
    border-radius: 14px;
    padding: 9px 10px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    font-size: 11px;
}

.about-hero-stat strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

/* === WHO WE ARE === */

.about-story-grid {
    align-items: flex-start;
    gap: 28px;
}

.about-body {
    font-size: 14px;
    color: #374151;
    margin-top: 8px;
}

/* Control centre card + bullets */

.about-image-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    color: #e5e7eb;
    border-radius: 22px;
    padding: 13px 16px 14px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.85);
    font-size: 13px;
}

.about-image-tag {
    display: inline-flex;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(191, 219, 254, 0.85);
    font-size: 11px;
    margin-bottom: 6px;
}

/* Bullet list as neat chips */
.about-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-bullet-list li {
    background: #f9fafb;
    border-radius: 999px;
    padding: 6px 12px 6px 22px;
    font-size: 12px;
    color: #111827;
    border: 1px solid rgba(226, 232, 240, 0.9);
    position: relative;
}

.about-bullet-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* === HOW WE WORK === */

.about-steps-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: flex-start;
}

.about-steps-column {
    display: grid;
    gap: 12px;
}

.about-step-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 14px 15px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.95);
    font-size: 13px;
}

.about-step-badge {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--primary-light);
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* right column metrics */

.about-stats-column {
    display: flex;
    align-items: stretch;
}

.about-metric-row {
    display: grid;
    gap: 10px;
    width: 100%;
}

.about-metric-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    font-size: 12px;
}

.about-metric-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

/* === SERVICES SNAPSHOT (reuses .services-grid) === */

.about-services-grid .service-card {
    min-height: 190px;
}

/* === WHY CHOOSE US === */

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 14px 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    font-size: 13px;
}

.about-why-card h3 {
    margin: 0 0 6px;
    font-size: 14px;
}

/* ===== ABOUT – VISION & MISSION TABS (CSS ONLY) ===== */

.about-vision-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 22px 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.about-vision-header {
    margin-bottom: 16px;
}

/* Hide the radio inputs – they only control the state */
.about-tab-radio {
    display: none;
}

/* Tab labels row */
.about-tab-list {
    display: inline-flex;
    gap: 8px;
    padding: 4px;
    background: #f3f4ff;
    border-radius: 999px;
    margin-bottom: 14px;
}

.about-tab {
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #4b5563;
    cursor: pointer;
    transition: background var(--transition-fast),
                color var(--transition-fast),
                box-shadow var(--transition-fast);
}

/* Default (no tab explicitly active in CSS) */
.about-tab-list .about-tab {
    background: transparent;
}

/* When VISION radio is checked -> highlight Vision tab */
#about-vm-vision:checked ~ .about-tab-list label[for="about-vm-vision"] {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

/* When MISSION radio is checked -> highlight Mission tab */
#about-vm-mission:checked ~ .about-tab-list label[for="about-vm-mission"] {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

/* Panels container */
.about-tab-panels {
    margin-top: 6px;
}

/* Hide all panels by default */
.about-tab-panel {
    display: none;
}

/* Show VISION panel when its radio is checked */
#about-vm-vision:checked ~ .about-tab-panels .about-tab-panel-vision {
    display: block;
}

/* Show MISSION panel when its radio is checked */
#about-vm-mission:checked ~ .about-tab-panels .about-tab-panel-mission {
    display: block;
}

.about-tab-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin: 2px 0 8px;
}

.about-vision-card .about-body {
    font-size: 14px;
    color: #374151;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .about-vision-card {
        padding: 18px 16px 20px;
    }

    .about-tab-list {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .about-tab {
        flex: 1 1 auto;
        text-align: center;
        padding-inline: 10px;
    }

    .about-tab-title {
        font-size: 16px;
    }
}




/* ===== FAQ – Accordion style (About + Contact) ===== */

.faq-list--accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion-item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

/* Header row */

.faq-header {
    width: 100%;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 1);
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #1d4ed8;
}

.faq-question {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* + / – icon on the right */

.faq-toggle-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6b7280;
    flex-shrink: 0;
    position: relative;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

/* horizontal bar */
.faq-toggle-icon::before {
    width: 10px;
    height: 2px;
}

/* vertical bar (for + sign) */
.faq-toggle-icon::after {
    width: 2px;
    height: 10px;
}

/* when open, turn + into – (hide vertical bar) */
.faq-accordion-item.is-open .faq-toggle-icon::after {
    opacity: 0;
    transform: scaleY(0);
}

/* Body */

.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    font-size: 13px;
    color: #4b5563;
    border-top: 1px solid rgba(243, 244, 246, 1);
    transition: max-height 0.25s ease-out, padding 0.18s ease-out;
}

/* Open state */
.faq-accordion-item.is-open .faq-body {
    padding: 10px 18px 14px;
    max-height: 200px; /* adjust if you have longer answers */
}

/* Small tweak on mobile */

@media (max-width: 640px) {
    .faq-header {
        align-items: flex-start;
    }
    .faq-question {
        font-size: 13px;
    }
}


.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-accordion-item {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
}

.faq-header {
    width: 100%;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font: inherit;
}

.faq-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #1d4ed8;
}

.faq-question {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.faq-toggle {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #6b7280;
    border-radius: 999px;
}

.faq-toggle::before {
    width: 10px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 10px;
}

/* hide vertical bar when open (= minus icon) */
.faq-accordion-item.is-open .faq-toggle::after {
    opacity: 0;
}

/* body */
.faq-body {
    padding: 0 18px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease, padding-top 0.24s ease, padding-bottom 0.24s ease;
    font-size: 14px;
    color: #4b5563;
}

.faq-accordion-item.is-open .faq-body {
    padding-top: 0;
    padding-bottom: 14px;
    max-height: 500px; /* enough for your longest answer */
}



/* Center-align the Vision/Mission tab buttons */
.tab-buttons-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px 0;
}

.vision-mission-tabs {
    display: inline-flex;
    gap: 10px;
    background: #f1f5fb;
    padding: 6px;
    border-radius: 50px;
}

.vision-mission-tabs button {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    background: transparent;
    color: #1e293b;
    transition: 0.25s ease;
}

.vision-mission-tabs button.active {
    background: #1d4ed8;
    color: #ffffff;
}

.vision-mission-content {
    margin-top: 15px;
}



/* ===== Center wrapper for tabs ===== */
.tab-buttons-wrapper {
    display: flex;
    justify-content: center;
    margin: 22px 0 26px;
}

/* ===== Tab list (pill background) ===== */
.about-tab-list {
    display: inline-flex;
    gap: 4px;
    background: #eef2ff;
    padding: 4px;
    border-radius: 999px;
}

/* ===== Base tab style ===== */
.about-tab {
    padding: 10px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #1e293b;
    background: transparent;
    transition: all 0.2s ease;
}

/* Hide radio inputs */
.about-tab-radio {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

/* ===== ACTIVE TAB (Blue) ===== */
#about-vm-vision:checked ~ .tab-buttons-wrapper .about-tab[for="about-vm-vision"],
#about-vm-mission:checked ~ .tab-buttons-wrapper .about-tab[for="about-vm-mission"] {
    background: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* ===== TAB PANELS (show/hide) ===== */
.about-tab-panel {
    display: none;
}

#about-vm-vision:checked ~ .tab-buttons-wrapper ~ .about-tab-panels .about-tab-panel-vision {
    display: block;
}

#about-vm-mission:checked ~ .tab-buttons-wrapper ~ .about-tab-panels .about-tab-panel-mission {
    display: block;
}






/* =========================================================
   VANTAGE CARE – SERVICES PAGE
   (Used on main <main class="section services-page">)
   ========================================================= */

/* Base layout */
.services-page {
    background: #f4f6fb;
}

.services-page .section-inner {
    max-width: 1120px;
}

/* Generic section spacing */
.services-page .services-section {
    margin-top: 34px;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.services-hero {
    margin-top: 18px;
    padding: 26px 22px 22px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, #e0ecff, #f4f6fb 55%, #ffffff);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.06);
}

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: center;
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.18;
    margin: 6px 0 10px;
}

.services-hero-highlight {
    color: var(--primary);
}

.services-hero-text {
    font-size: 14px;
    color: #4b5563;
    max-width: 520px;
}

.services-hero-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* small chips row under hero text if used */
.services-pill-row {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.services-pill {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px dashed rgba(148, 163, 184, 0.85);
}

/* Hero metrics card (right column) */

.services-hero-metrics {
    background: #ffffff;
    border-radius: 22px;
    padding: 16px 18px 18px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.95);
    font-size: 13px;
}

.services-hero-metrics-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.services-hero-metrics-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}

.services-hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.services-hero-metric-card {
    border-radius: 16px;
    padding: 10px 12px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.9);
    text-align: left;
}

.services-hero-metric-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.services-hero-metric-label {
    font-size: 11px;
    color: #6b7280;
}

/* ---------------------------------------------------------
   SERVICES GRID
   --------------------------------------------------------- */

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.services-page .service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 16px 14px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
}

.service-card-header {
    margin-bottom: 10px;
}

.service-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.service-card-heading h3 {
    margin: 0;
    font-size: 16px;
    font-family: var(--font-heading);
}

.service-chip {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--primary-light);
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-intro {
    font-size: 13px;
    color: #4b5563;
}

/* Bullet list of inclusions */

.service-feature-list {
    margin: 10px 0 12px;
    padding-left: 0;
    list-style: none;
    font-size: 13px;
    color: #111827;
}

.service-feature-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.service-feature-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

/* Card footer */

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.service-meta-tagline {
    font-size: 11px;
    color: #6b7280;
}

.service-read-more {
    font-size: 12px;
    padding: 7px 14px;
}

/* ---------------------------------------------------------
   IMPACT / METRICS SECTION
   --------------------------------------------------------- */

.services-impact-section {
    margin-top: 34px;
}

.services-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.services-impact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.95);
    text-align: left;
}

.services-impact-number {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.services-impact-label {
    font-size: 13px;
    color: #6b7280;
}

/* ---------------------------------------------------------
   FINAL CTA BAND
   --------------------------------------------------------- */

.services-final-cta {
    margin-top: 30px;
}

.services-final-cta .cta-band {
    margin-top: 0;
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1024px) {
    .services-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-hero-metrics {
        max-width: 520px;
        margin: 4px auto 0;
    }

    .services-page .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 20px 18px 18px;
    }

    .services-hero-title {
        font-size: 24px;
    }

    .services-hero-metrics-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-impact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* =========================================================
   VANTAGE CARE – SERVICES PAGE (MATCHING CURRENT PHP)
   ========================================================= */

.services-page {
    background: #f4f6fb;
}

.services-page .section-inner {
    max-width: 1120px;
}

/* ---------- HERO (you already see this working, keep as is or override) ---------- */
.services-hero {
    margin-top: 18px;
    padding: 26px 22px 22px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, #e0ecff, #f4f6fb 55%, #ffffff);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.06);
}

.services-hero .section-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 6px;
}

.services-hero .section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin: 4px 0 6px;
}

.services-hero .section-desc {
    font-size: 14px;
    color: #4b5563;
    max-width: 620px;
}

/* =========================================================
   SERVICES LIST – MAIN CARDS
   ========================================================= */

.services-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 18px 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Heading + intro text */

.service-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}

.service-desc {
    font-size: 13px;
    color: #4b5563;
    margin: 0 0 10px;
}

/* Bullet list inside each service */

.service-bullets {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    font-size: 13px;
    color: #111827;
}

.service-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
}

.service-bullets li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

/* "Read More" button under each card */

.service-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    transition: all 0.18s ease-out;
}

.service-btn:hover {
    background: #0041a3;
    transform: translateY(-1px);
    text-decoration: none;
}

/* =========================================================
   IMPACT SECTION
   ========================================================= */

.impact-section {
    margin-top: 36px;
    text-align: left;
}

.impact-section .section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.impact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.impact-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.impact-card span {
    font-size: 13px;
    color: #6b7280;
}

/* =========================================================
   FINAL CTA – "How Can We Support Your Success?"
   ========================================================= */

.services-cta {
    margin-top: 34px;
    background: linear-gradient(135deg, #1d4ed8, #0041a3);
    border-radius: 24px;
    padding: 22px 22px;
    color: #ffffff;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.45);
}

.services-cta h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin: 0 0 6px;
}

.services-cta p {
    font-size: 13px;
    margin: 0;
    max-width: 520px;
}

/* CTA button linking to contact page */

.services-cta .cta-btn {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: #ffffff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
    transition: all 0.18s ease-out;
    white-space: nowrap;
}

.services-cta .cta-btn:hover {
    color: #ffffff;
    background: #1d4ed8;
    text-decoration: none;
    transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .services-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cta .cta-btn {
        align-self: flex-start;
    }
}


/* =========================================================
   VANTAGE CARE – MOBILE FIX PACK
   Forces clean stacking on phones & small tablets
   ========================================================= */

@media (max-width: 1024px) {
    /* General containers */
    .section-inner {
        padding: 0 16px;
    }
}

/* Phones */
@media (max-width: 768px) {

    /* Make sections breathe a bit on mobile */
    .section {
        padding: 24px 0 16px;
    }

    .section-inner {
        max-width: 100%;
        width: 100%;
    }

    /* HOME & GENERIC GRIDS */
    .hero-inner,
    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    /* ABOUT PAGE GRIDS */
    .about-hero-grid,
    .about-steps-layout,
    .about-why-grid,
    .about-faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    /* SERVICES PAGE GRIDS */
    .services-list,
    .impact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Contact 2-column layout */
    .grid-2.contact-layout,
    body.page-id-13 .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Tighter padding on hero sections on mobile */
    .hero,
    .about-hero,
    .services-hero {
        padding: 18px 16px 18px;
        border-radius: 0;
    }

    /* Cards full width */
    .service-block,
    .service-card,
    .impact-card,
    .hero-card {
        margin: 0;
    }

    /* CTA bands stacked nicely */
    .cta-band,
    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band .btn,
    .services-cta .cta-btn {
        margin-top: 10px;
    }
}



/* =========================================================
   VANTAGE CARE – SERVICE DETAIL PAGES
   ========================================================= */

.service-detail-page {
    background: #f4f6fb;
}

.service-detail-page .section-inner {
    max-width: 1120px;
}

/* ---------- HERO BLOCK ---------- */

.service-detail-hero {
    margin-top: 18px;
    padding: 26px 22px 22px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, #e0ecff, #f4f6fb 55%, #ffffff);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.06);
}

.service-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: center;
}

.service-detail-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 6px;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin: 4px 0 8px;
}

.service-detail-lead {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 8px;
}

.service-detail-lead + .service-detail-lead {
    margin-top: 4px;
}

.service-detail-meta-row {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: #6b7280;
}

.service-detail-pill {
    padding: 4px 9px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px dashed rgba(148, 163, 184, 0.8);
}

/* Right image card */

.service-detail-media {
    display: flex;
    align-items: stretch;
}

.service-detail-media-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.service-detail-image-frame {
    border-radius: 18px;
    overflow: hidden;
    background: #020617;
}

.service-detail-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-detail-media-caption {
    margin-top: 8px;
    font-size: 11px;
    color: #6b7280;
}

/* ---------- CONTENT SECTIONS ---------- */

.service-detail-section {
    margin-top: 30px;
}

.service-detail-section .section-header {
    margin-bottom: 14px;
}

.service-detail-section .section-title {
    font-size: 20px;
}

.service-detail-text {
    font-size: 14px;
    color: #374151;
}

/* Two-column split for bullets / explanation */

.service-detail-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: flex-start;
}

/* bullet list */

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    font-size: 13px;
    color: #111827;
}

.service-detail-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.service-detail-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

/* Highlight strip */

.service-highlight-strip {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #eef2ff;
    border: 1px solid rgba(129, 140, 248, 0.4);
    font-size: 13px;
    color: #111827;
}

/* ---------- CTA ROW PER SERVICE ---------- */

.service-detail-cta-row {
    margin-top: 28px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1d4ed8, #0041a3);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.45);
}

.service-detail-cta-row h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-family: var(--font-heading);
}

.service-detail-cta-row p {
    margin: 0;
    font-size: 13px;
    max-width: 520px;
}

.service-detail-cta-row .btn-primary {
    background: #ffffff;
    color: #1d4ed8;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
}

.service-detail-cta-row .btn-primary:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .service-detail-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-detail-media-card {
        max-width: 520px;
        margin: 4px auto 0;
    }

    .service-detail-cols {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 20px 18px 18px;
        border-radius: 0;
    }

    .service-detail-title {
        font-size: 22px;
    }

    .service-detail-section {
        margin-top: 24px;
    }

    .service-detail-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}


.main-nav a::after { ... }
.main-nav a:hover::after { width: 100%; }

/* Active menu item */
.main-nav a.is-active {
    color: var(--primary);
}

.main-nav a.is-active::after {
    width: 100%;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

/* underline animation */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: width var(--transition-fast);
}

.main-nav a:hover::after {
    width: 100%;
}

/* active item */
.main-nav a.is-active {
    color: var(--primary);
}

.main-nav a.is-active::after {
    width: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

/* underline animation */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: width var(--transition-fast);
}

.main-nav a:hover::after {
    width: 100%;
}

/* active item */
.main-nav a.is-active {
    color: var(--primary);
}

.main-nav a.is-active::after {
    width: 100%;
}



/* HEADER MENU */
.header-menu,
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.header-menu li a {
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.header-menu li a:hover {
    color: var(--primary);
}

/* MOBILE MENU HIDDEN BY DEFAULT */
.mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 12px 20px;
}

.mobile-menu-list {
    flex-direction: column;
    gap: 14px;
}

/* BURGER ICON */
.header-burger {
    display: none;
    cursor: pointer;
    font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .header-burger {
        display: block;
    }
}


/* MOBILE NAV MENU */
.mobile-nav {
    display: none;
    background: #ffffff;
    padding: 15px 20px;
    border-top: 1px solid rgba(148,163,184,0.25);
}

.mobile-nav.open {
    display: block;
}

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

.mobile-nav li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(148,163,184,0.25);
}

.mobile-nav a {
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

/* HIDE DESKTOP MENU ON MOBILE */
@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }
    .header-burger {
        display: block !important;
        font-size: 24px;
        cursor: pointer;
    }
}

/* SHOW DESKTOP MENU ON BIG SCREENS */
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}



/* Light background for this band */
.section-muted {
    background: #f5f7fb;
}

/* Centered header */
.section-header-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}

/* Process steps card layout */
.process-layout {
    max-width: 1040px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.process-step-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
    border-color: #0052cc;
}

/* Number + label pill */
.process-step-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8f2ff;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 10px;
}

.process-step-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0052cc;
}

.process-step-label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Center stats under steps */
.stats-strip-centered {
    max-width: 1040px;
    margin: 26px auto 0;
}

/* Divider between how we work & testimonials */
.section-divider {
    margin: 40px auto 32px;
    max-width: 1040px;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(148, 163, 184, 0),
        rgba(148, 163, 184, 0.7),
        rgba(148, 163, 184, 0)
    );
}

/* Testimonials block */
.client-testimonials {
    max-width: 1040px;
    margin: 0 auto;
}

.section-sub-header {
    margin-bottom: 20px;
}

.section-sub-title {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 4px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Reuse existing .testimonial-card but add sleek modifier */
.testimonial-card.sleek {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

/* Thin blue strip on top */
.testimonial-card.sleek::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #00a3ff);
}

.testimonial-card.sleek > * {
    position: relative;
    z-index: 1;
}

.testimonial-card.sleek:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    border-color: #0052cc;
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #111827;
}

.testimonial-meta {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    color: #111827;
}

/* Gradient card-style container for HOW WE WORK block */
.howwework-section .section-inner {
    background: linear-gradient(
        180deg,
        #f8faff 0%,
        #eef4ff 50%,
        #e9f1ff 100%
    );
    border-radius: 26px;
    padding: 32px 28px;
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.04),
        0 14px 36px rgba(15, 23, 42, 0.08);
}

/* Keep spacing neat inside */
.howwework-section .process-layout {
    margin-top: 16px;
}

.howwework-section .stats-strip {
    margin-top: 24px;
}


/* MAIN MENU RESET */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* DROPDOWN */
.main-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background: #fff;
  min-width: 220px;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-nav ul li:hover > ul {
  display: block;
}

.main-nav ul ul li {
  padding: 6px 16px;
}





