/* ╔══════════════════════════════════════════════════════════════════════════════╗
   ║   SERVICES.CSS — SERVICE PAGE ARCHITECTURE                                   ║
   ║   Target: ADAS, Windshield Replacement, Repair, Door Glass                   ║
   ║   Version: 1.0 (Tesla DNA + Educational Focus)                               ║
   ║                                                                              ║
   ║   UNIQUE FEATURES:                                                           ║
   ║   - Process Steps: Vertical timeline visuals for "How it Works"              ║
   ║   - Pricing Tables: Clear, tiered pricing displays                           ║
   ║   - Warning Boxes: High-contrast alerts for safety info                      ║
   ║   - Interactive Objections: Styled <details> elements for FAQs               ║
   ║                                                                              ║
   ╚══════════════════════════════════════════════════════════════════════════════╝ */
/* ═══════════════════════════════════════════════════════════════════════════════
   1. GLOBAL PAGE CONFIGURATION & ANIMATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.page-service,
.page-services {
    background: linear-gradient(to bottom, var(--color-neutral-50) 0%, var(--color-brand-white) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Body text should be GRAY for readability, not all blue */
.page-service p,
.page-services p,
.page-service li,
.page-services li,
.page-service dd,
.page-services dd {
    color: var(--color-neutral-600, #4b5563) !important;
}

/* Strong text gets blue emphasis */
.page-service p strong,
.page-services p strong,
.page-service li strong,
.page-services li strong {
    color: var(--color-brand-blue-dark, #0f1e4a) !important;
}

/* Make price mentions stand out in green */
.page-service .price,
.page-services .price,
.page-service [class*="price"],
.page-services [class*="price"] {
    color: #059669 !important;
    font-weight: 700;
}

/* Center ALL h2 headings on service pages */
.page-service h2,
.page-services h2,
.page-service .section h2,
.page-services .section h2,
#services-hub h2,
.page-hub h2 {
    text-align: center !important;
}

/* Center section intro text */
.page-service .section-intro,
.page-services .section-intro,
.page-service > .container > p,
.page-services > .container > p,
#services-hub .section-intro,
.page-hub .section-intro {
    text-align: center !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services hub page - center all section headings */
.page-services.page-hub h2,
.page-services.page-hub .section h2 {
    text-align: center !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICES HUB (index.html) - CENTER ALL THE THINGS
   ═══════════════════════════════════════════════════════════════════════════════ */
/* Center ALL links including "Full details" buttons */
.page-services .section > .container > a,
.page-services .service-section > a,
.page-services a.btn,
.page-services a.btn-outline,
.page-services a.btn-secondary,
.page-services .cta-link,
.page-services .details-link,
.page-services p > a[href*="services/"],
.page-services .section p:last-of-type {
    display: block;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* Center any standalone paragraphs in service sections */
.page-services .section > .container > p,
.page-services .service-section > p {
    text-align: center !important;
}

/* Center the "Mobile service throughout..." text */
.page-services .area-intro,
.page-services .section-areas p,
.page-services [class*="service-area"] p {
    text-align: center !important;
}

/* Make sure link buttons are centered inline */
.page-services .section a[class*="btn"] {
    display: inline-block;
    margin: 0 auto;
}

/* Wrap link containers to center them */
.page-services .section > .container {
    text-align: center;
}

/* But keep list items left-aligned for readability */
.page-services .section ul,
.page-services .section ol,
.page-services .section li {
    text-align: left;
}

/* SPECIFIC: Center the "Full details on..." CTA links */
.page-services .service-cta,
.page-services p.service-cta {
    text-align: center !important;
    display: block;
    width: 100%;
}

.page-services .service-cta a {
    display: inline-block;
}

/* "Scroll Up" Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-hero,
.section-pricing,
.section-process,
.section-warning,
.section-explainer {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.section-pricing {
    animation-delay: 0.15s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.section-process {
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. BREADCRUMBS (Consistent "Clean Pill")
   ═══════════════════════════════════════════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    justify-content: center;
    padding: var(--space-4) 0;
    background: transparent;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    list-style: none !important;
    margin: 0;
    padding: var(--space-2) 16px;
    background: white;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.breadcrumb li {
    list-style: none !important;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: var(--space-2);
    opacity: 0.4;
}

.breadcrumb a {
    color: var(--color-brand-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-brand-red);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. HERO SECTION (Service Authority)
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-hero {
    text-align: center;
    padding: clamp(30px, 4vw, var(--space-16)) 0;
    background: linear-gradient(150deg, #1a2a4e 0%, var(--color-brand-blue, #183075) 100%) !important;
    color: white !important;
    margin-bottom: var(--space-10);
    box-shadow: 0 10px 25px -5px rgba(24, 48, 117, 0.25);
    position: relative;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.section-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Technical grid texture for "Service/Tech" feel */
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.section-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: white !important;
    margin: 0 auto var(--space-4);
    max-width: 900px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.section-hero .hero-lead,
.hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 70ch;
    margin: 0 auto var(--space-8);
    line-height: 1.6;
}

.section-hero a {
    color: white;
    text-decoration: underline;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. EDUCATIONAL SECTIONS (Explainers & Warnings)
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-explainer,
.section-warning,
.section-need,
.section-types,
.section-glass,
.section-complexity,
.section-causes,
.section-why {
    padding: var(--space-12) 0;
    background: white;
    border-top: 1px solid var(--border);
}

.section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-8);
}

/* Feature Lists (Compact) */
.feature-list-compact,
.benefit-list,
.glass-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3);
    list-style: none;
    padding: 0;
    margin-top: var(--space-6);
}

.feature-list-compact li,
.benefit-list li,
.glass-list li {
    background: #F8FAFC;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.03);
    font-size: 0.9rem;
}

.feature-list-compact li strong {
    color: var(--color-brand-blue);
    display: block;
    margin-bottom: 2px;
}

/* The Warning Box (Red Alert) */
.warning-box {
    background: #FFF5F5;
    border-left: 4px solid var(--color-danger);
    padding: var(--space-6);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-6) auto;
    max-width: 800px;
}

.warning-box p:first-child {
    color: var(--color-danger);
    font-size: 1.1rem;
}

.warning-box ul {
    margin-top: var(--space-4);
    padding-left: var(--space-4);
}

.warning-box li {
    margin-bottom: var(--space-2);
}

/* Authority Note */
.authority-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-8);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. PRICING MODULES (Tables & Simple Cards)
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-pricing {
    padding: var(--space-8) 0;
    background-color: var(--color-neutral-50, #f8fafc);
}

.section-pricing h2 {
    text-align: center !important;
    margin-bottom: var(--space-6);
}

/* Complex Pricing Table (Rows) - VISIBLE card */
.pricing-table {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--color-brand-blue, #183075);
    max-width: 900px;
    margin: 0 auto var(--space-8);
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-neutral-100);
    align-items: center;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:nth-child(even) {
    background-color: #FAFAFA;
}

/* Add-on Row (ADAS) */
.pricing-addon {
    background-color: #EFF6FF !important;

    /* Light blue tint */
    border-top: 2px solid var(--color-brand-blue);
}

.vehicle-type {
    font-weight: 700;
    color: var(--color-brand-blue-dark);
}

.vehicle-examples {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.price-range {
    font-weight: 800;
    color: var(--color-success);
    text-align: right;
    font-size: 1.1rem;
}

/* Simple Pricing Cards (Chip Repair) - Horizontal Row */
.pricing-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pricing-simple {
        grid-template-columns: 1fr;
    }
}

.price-item {
    background: white;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--color-brand-blue, #183075);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.price-type {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-neutral-600);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-2);
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--color-success);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. INTERACTIVE OBJECTION HANDLING (FAQs / Details)
   ═══════════════════════════════════════════════════════════════════════════════ */
.objection-intercept {
    background: white;
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--color-brand-blue, #183075);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.objection-intercept summary {
    padding: var(--space-4);
    font-weight: 700;
    color: var(--color-brand-blue);
    cursor: pointer;
    list-style: none;

    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.objection-intercept summary::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 400;
}

.objection-intercept[open] summary {
    background-color: var(--color-neutral-50);
    border-bottom: 1px solid var(--border);
}

.objection-intercept[open] summary::after {
    content: "−";
}

.intercept-content {
    padding: var(--space-5);
    color: var(--color-neutral-700);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   7. PROCESS STEPS (Horizontal Card Grid - Andy Crestodina Style)
   ═══════════════════════════════════════════════════════════════════════════════ */
.process-steps {
    list-style: none;
    padding: 0;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.process-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.step-content p,
.process-step p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-neutral-600);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   8. CRITERIA GRID (Repair vs Replace)
   ═══════════════════════════════════════════════════════════════════════════════ */
.criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto var(--space-8);
    align-items: start; /* Prevent uneven stretching */
}

.criteria-col {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 2px solid;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: auto; /* Natural height, no stretching */
}

.criteria-yes {
    background: #F0FDF4;
    border-color: #22c55e;
    border-top-width: 4px;
}

/* Light Green */
.criteria-no {
    background: #FEF2F2;
    border-color: #ef4444;
    border-top-width: 4px;
}

/* Light Red */
.criteria-heading {
    display: block;
    font-size: 1.2rem;
    margin-bottom: var(--space-4);
    text-align: center;
}

.criteria-yes .criteria-heading {
    color: #15803D;
}

.criteria-no .criteria-heading {
    color: #B91C1C;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. VEHICLE & TYPE GRIDS
   ═══════════════════════════════════════════════════════════════════════════════ */
/* Vehicle Links Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

/* Vehicle link cards - SIMPLE inline style, no heavy borders */
.vehicle-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vehicle-link strong {
    color: var(--color-brand-blue);
    font-size: 1rem;
    font-weight: 700;
}

.vehicle-link span {
    font-size: 0.85rem;
    color: var(--color-neutral-600, #4b5563);
    font-weight: 400;
}

.vehicle-link:hover {
    background: var(--color-brand-blue, #183075);
    border-color: var(--color-brand-blue, #183075);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 48, 117, 0.2);
}

.vehicle-link:hover strong,
.vehicle-link:hover span {
    color: white;
}

/* Vehicle grid - flex wrap for pills */
.vehicle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Glass Types Grid (Door Glass Page) */
.types-grid,
.damage-grid,
.complexity-grid,
.causes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-8);
}

.type-card,
.damage-type,
.complexity-item,
.cause-item {
    background: white;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--color-brand-blue, #183075);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.type-card h3,
.damage-name,
.complexity-item h3,
.cause-item h3 {
    color: var(--color-brand-blue);
    margin-bottom: var(--space-2);
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10. CTA & BUTTONS
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-cta {
    background: linear-gradient(135deg, var(--color-brand-blue, #183075) 0%, var(--color-brand-blue-dark, #0f1e4a) 100%) !important;
    padding: var(--space-12) 0;
    text-align: center;
    color: white !important;
}

.section-cta h2 {
    color: white !important;
    text-align: center;
}

.section-cta p,
.section-cta .cta-text {
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center;
    max-width: 60ch;
    margin: 0 auto var(--space-6);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: var(--space-5) 28px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 180px;
}

.btn-primary {
    background: var(--color-brand-red, #EC1C24);
    border: 2px solid var(--color-brand-red, #EC1C24);
    color: white;
}

.btn-primary:hover {
    background: white;
    color: var(--color-brand-red, #EC1C24);
}

.btn-secondary {
    background: white;
    border: 2px solid var(--color-brand-blue, #183075);
    color: var(--color-brand-blue, #183075);
}

.btn-secondary:hover {
    background: var(--color-brand-blue, #183075);
    color: white;
}

/* Hero section buttons - WHITE text on dark blue background */
.section-hero .btn-phone,
.section-hero .btn-text,
.section-hero .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white !important;
}

.section-hero .btn-phone:hover,
.section-hero .btn-text:hover,
.section-hero .btn-secondary:hover {
    background: var(--color-brand-gold, #FFC107);
    border-color: var(--color-brand-gold, #FFC107);
    color: var(--color-brand-blue-dark, #0f1e4a) !important;
}

/* CTA section buttons (light or dark backgrounds) */
.section-cta .btn-phone,
.section-cta .btn-text {
    background: white;
    border: 2px solid white;
    color: var(--color-brand-blue, #183075);
}

.section-cta .btn-phone:hover,
.section-cta .btn-text:hover {
    background: var(--color-brand-gold, #FFC107);
    border-color: var(--color-brand-gold, #FFC107);
    color: var(--color-brand-blue-dark, #0f1e4a);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11. SERVICE CONTENT CARDS (THE ACTUAL HTML STRUCTURE)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Service Sections - Alternating backgrounds for rhythm */
.section-service {
    padding: var(--space-phi-xl) 0;
}

.section-service:nth-child(odd) {
    background: white;
}

.section-service:nth-child(even) {
    background: var(--color-neutral-50, #F8FAFC);
}

.section-service h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-6);
    text-align: center;
}

/* Service Content Container */
.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-neutral-700);
    max-width: 75ch;
    margin: 0 auto var(--space-8);
    text-align: center;
}

/* Two-Column Details Grid */
.service-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.detail-col {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--color-brand-blue, #183075);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-service:nth-child(odd) .detail-col {
    background: var(--color-neutral-50, #F8FAFC);
}

.detail-heading {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand-blue);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--color-brand-blue);
}

/* Styled Lists with Checkmarks */
.detail-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-col li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: var(--space-3);
    font-size: 0.95rem;
    color: var(--color-neutral-700);
    line-height: 1.5;
}

.detail-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Links inside lists */
.detail-col li a {
    color: var(--color-brand-blue);
    text-decoration: none;
    font-weight: 500;
}

.detail-col li a:hover {
    text-decoration: underline;
}

/* Pricing Box */
.service-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    background: linear-gradient(135deg, var(--color-brand-blue) 0%, #1a3a5c 100%);
    color: white;
    padding: var(--space-5) var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    text-align: center;
}

.pricing-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.service-pricing .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.price-insurance,
.pricing-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-insurance::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.2em;
    background: rgba(255,255,255,0.4);
    margin-right: var(--space-3);
    vertical-align: middle;
}

/* Service CTA Button */
.service-cta {
    text-align: center;
}

.service-cta .btn-secondary {
    background: white;
    border: 2px solid var(--color-brand-blue);
    color: var(--color-brand-blue);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.service-cta .btn-secondary:hover {
    background: var(--color-brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 58, 94, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   12. MOBILE SERVICE SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-mobile {
    padding: var(--space-phi-xl) 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.section-mobile h2 {
    text-align: center;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-6);
}

.mobile-content > p {
    text-align: center;
    max-width: 70ch;
    margin: 0 auto var(--space-8);
    font-size: 1.05rem;
}

.section-mobile .benefit-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
    max-width: 1000px;
    margin: 0 auto;
}

.section-mobile .benefit-list li {
    background: white;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.section-mobile .benefit-list li strong {
    display: block;
    color: var(--color-brand-blue);
    margin-bottom: var(--space-2);
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   13. INSURANCE INFO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-insurance {
    padding: var(--space-phi-xl) 0;
    background: white;
    border-top: 1px solid var(--border);
}

.section-insurance h2 {
    text-align: center;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-6);
}

.section-insurance p {
    max-width: 70ch;
    margin: 0 auto var(--space-4);
    text-align: center;
    font-size: 1.05rem;
}

.section-insurance a {
    color: var(--color-brand-blue);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   14. AREAS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-areas {
    padding: var(--space-phi-lg) 0;
    background: var(--color-neutral-50);
}

.section-areas h2 {
    text-align: center;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-4);
}

.section-areas > .container > p {
    text-align: center;
    margin-bottom: var(--space-6);
}

/* Visible card container for location chips */
.area-list-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    list-style: none;
    padding: var(--space-6) var(--space-8);
    max-width: 900px;
    margin: var(--space-6) auto 0;
    /* Card styling - light blue tint so it's visible */
    background: linear-gradient(135deg, #f8fafc 0%, #eef4fb 100%);
    border: 2px solid var(--color-brand-blue, #183075);
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 4px 20px rgba(24, 48, 117, 0.1);
}

.area-list-inline li a {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: white;
    border: 2px solid var(--color-brand-blue, #183075);
    border-radius: var(--radius-full);
    color: var(--color-brand-blue, #183075);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(24, 48, 117, 0.08);
}

.area-list-inline li a:hover {
    background: var(--color-brand-blue);
    color: white;
    border-color: var(--color-brand-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 48, 117, 0.25);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   15. ENTITY/ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-entity {
    padding: var(--space-12) 0;
    background: white;
    border-top: 1px solid var(--border);
}

.section-entity h2 {
    text-align: center;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-6);
}

.section-entity p {
    max-width: 75ch;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   16. RESPONSIVE REFLOW
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .service-details {
        grid-template-columns: 1fr;
    }

    .service-pricing {
        flex-direction: column;
        text-align: center;
    }

    .price-insurance::before {
        display: none;
    }
    .section-hero h1 {
        font-size: 1.75rem;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: var(--space-2);
        text-align: center;
    }

    .price-range {
        text-align: center;
        color: var(--color-brand-blue-dark);
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }
}