/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    --color-primary: #0A192F;
    --color-accent: #DD2D4A; /* Your Orange/Red */
    --color-secondary-grey: #E2E8F0;
    --color-surface-light: #f6f6f4;
    --color-text-light: #FFFFFF;
    --color-text-dark: #1A202C;
    --color-bg-light: #F8FAFC;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;

    --space-1: 8px; --space-2: 16px; --space-3: 24px; --space-4: 32px;
    --space-6: 48px; --space-8: 64px; --space-12: 96px;
    --section-gap: 80px;
    --container-padding: 16px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--color-text-dark); line-height: 1.6; background: var(--color-bg-light); }
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--container-padding); }

/* ============================================================
   3. TOP BAR 
   ============================================================ */
.top-bar {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    /* font-family: var(--font-heading); */
    font-weight: 600;
    font-size: 12px;
}

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

.top-left a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}

.top-right { display: flex; align-items: center; gap: 6px; }

.top-icon { width: 18px; height: 18px; stroke: #ffffff; }

/* ============================================================
   ============================================================ */

.header-logo { display: flex; align-items: center; }
.header-logo img { max-height: 65px; width: auto; display: block; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1A202C;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links > li > a:hover { color: var(--color-accent); }

.caret { font-size: 12px; margin-left: 2px; }

/* ============================================================
   4. MAIN HEADER 
   ============================================================ */

[data-component="header"] {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header {
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--color-accent);
    z-index: 999;
}

.main-nav.active .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-nav.active .nav-links > li {
    border-bottom: 1px solid #f0f0f0;
}
.main-nav.active .nav-links > li:last-child { border-bottom: none; }

.main-nav.active .nav-links > li > a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-dark);
}
.main-nav.active .nav-links > li > a:hover { color: var(--color-accent); }

/* Dropdown Menus */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f5f5f5;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border: 1px solid #f1f1f1;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #4A5568;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: var(--color-accent);
    padding-left: 25px;
}

.dropdown-item:hover .dropdown-menu { display: block; }

/* RIGHT ACTIONS FLEX */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Orange Call Button */
.mobile-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.2s;
}
.mobile-call-btn:active { transform: scale(0.95); }
.call-icon { width: 18px; height: 18px; stroke: currentColor; }

/* Desktop Phone Number (Hidden on Mobile) */
.desktop-phone-number { display: none; }

/* Hamburger Box */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid #E2E8F0;
    padding: 5px;
    border-radius: 8px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #1A202C;
    margin: 4px 0;
    transition: 0.3s;
}

.hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px); }
.hamburger.is-active span:nth-child(2) {
    opacity: 0; }
.hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px); }

    /* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: clamp(620px, 78vh, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #1A202C;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url('../assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    transform: scale(1.01);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(
        90deg,
        rgba(10, 16, 22, 0.78) 0%,
        rgba(10, 16, 22, 0.64) 42%,
        rgba(10, 16, 22, 0.38) 72%,
        rgba(10, 16, 22, 0.52) 100%
    );
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: clamp(620px, 78vh, 820px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-top: 72px;
    padding-bottom: 118px;
}

.hero-content {
    width: min(100%, 760px);
    color: #FFFFFF;
}

.hero-eyebrow {
    margin: 0 0 22px;
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.25vw, 1.2rem);
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.4rem, 6.2vw, 6.2rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 span {
    color: #FFFFFF;
}

.hero h1 strong {
    color: #DD2D4A;
    font-weight: 800;
}

.hero-rule {
    width: 110px;
    height: 5px;
    margin-top: 48px;
    background: #FFFFFF;
}

.hero-phone-card {
    position: absolute;
    right: 24px;
    bottom: 0;
    width: min(100%, 615px);
    min-height: 198px;
    padding: 42px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    color: #FFFFFF;
    background: #DD2D4A;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    z-index: 3;
}

.hero-phone-label,
.hero-phone-number {
    position: relative;
    z-index: 1;
}

.hero-phone-label {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-phone-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero-phone-card:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}
/* ============================================================
   6. WHY CHOOSE US SECTION
   ============================================================ */
.why-choose-us-section {
    padding: var(--section-gap) 0;
    background-color: #FFFFFF;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
    gap: var(--space-3);
}

.why-title-group { max-width: 700px; }

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: var(--space-2);
}

/* Re-usable dot */
.orange-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    margin-right: 10px;
}

.why-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin: 0;
}

.why-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-accent);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.why-cta-phone:hover {
    background-color: #b82941;
    color: #FFFFFF;
}

.why-cta-phone svg { width: 24px; height: 24px; stroke: currentColor; }

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: var(--space-4);
}

.why-right-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.why-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.why-feature-card {
    background-color: var(--color-surface-light);
    border-radius: 12px;
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.why-feature-card:hover { transform: translateY(-3px); }

.large-card { min-height: 480px; }
.sub-card { padding: var(--space-2); }

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #1A202C;
    stroke-width: 1.5;
    margin-bottom: 6px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #E2E8F0;
    margin: 10px 0 14px 0;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin-bottom: 14px;
}

.card-image-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: auto;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.large-card .card-image-wrapper { height: 480px; }
.small-img { height: 200px; }

.card-top-row {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.card-top-row .card-content { flex: 1; }
.card-top-row .card-icon { flex-shrink: 0; }

/* ============================================================
   SERVICES SWIPE SECTION (Horizontal scroll on mobile)
   ============================================================ */
.services-swipe-section {
    padding: var(--section-gap) 0;
    background-color: var(--color-surface-light);
}

.services-swipe-section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-2);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-6);
}

/* --- Scroll Wrapper (Hides scrollbar) --- */
.services-scroll-wrapper {
    overflow-x: auto; /* Enables scrolling */
    padding: 4px 4px 20px 4px;
    margin: 0 -16px; /* Negative margin for full width on mobile */
    padding-left: 16px;
    padding-right: 16px;
    scroll-snap-type: x mandatory; /* Snaps cards to center */
    -webkit-overflow-scrolling: touch;
    /* Hide ugly scrollbars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
.services-scroll-wrapper::-webkit-scrollbar { 
    display: none; /* Chrome/Safari */
}

/* --- The Track (Holds the cards) --- */
.services-track {
    display: flex;
    gap: 20px; /* Spacing between cards */
    width: max-content; /* Allows infinite horizontal stretch */
}

/* --- The Individual Cards --- */
.service-swipe-card {
    width: 85vw; /* Mobile: Takes up 85% of screen width */
    max-width: 340px; /* Max width on desktop */
    background: var(--color-text-light);
    border-radius: 12px;
    padding: var(--space-4);
    border: 1px solid var(--color-secondary-grey);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex-shrink: 0; /* Prevents them from squishing */
    scroll-snap-align: center; /* Centers the card when you lift your finger */
    transition: transform 0.2s ease;
}

.service-swipe-card:hover {
    transform: translateY(-5px);
    border-top: 4px solid var(--color-accent);
}

.service-swipe-card img {
    height: 180px; /* Fixed height for images */
    width: 100%;
    object-fit: cover;
    margin-bottom: var(--space-1);
    border-radius: 8px;
}

.service-swipe-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-swipe-card p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.5;
    flex-grow: 1; /* Pushes the link to the bottom */
}

.service-swipe-card a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    text-decoration: none;
}

.service-swipe-card a:hover {
    color: var(--color-accent);
}

/* --- Services Dots --- */
.services-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.service-dot.active {
    width: 28px; /* Pill shape for active */
    border-radius: 10px;
    background-color: var(--color-accent);
}

/* ============================================================
   8. PROCESS SECTION (Split Screen)
   ============================================================ */
.process-section {
    padding: var(--section-gap) 0;
    background-color: var(--color-bg-light);
}

.process-section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-2);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    counter-reset: process-counter;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    background: var(--color-text-light);
    padding: var(--space-2);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.process-item::before {
    counter-increment: process-counter;
    content: "0" counter(process-counter);
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.5;
    font-size: 1.5rem;
    min-width: 40px;
}

/* =========================================================
   GLOBAL CTA BANNER
========================================================= */

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: var(--color-primary);
    text-align: center;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
}

.cta-banner .phone-number {
    display: inline-block;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-decoration: none;
}
/* ---------------------------------------------------------
   SUBTLE DECORATIVE CIRCLES
--------------------------------------------------------- */

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner::before {
    width: 320px;
    height: 320px;
    top: -190px;
    left: -100px;
}

.cta-banner::after {
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -260px;
}


/* ============================================================
   11. SERVICE AREAS (MAP) SECTION
   ============================================================ */
.service-areas-section {
    padding: var(--section-gap) 0;
    background-color: var(--color-text-light);
}

.service-area-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-2);
}

.service-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-6);
    color: var(--color-text-dark);
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.city-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-bg-light);
    padding: 14px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: center;
    white-space: nowrap;
}

.city-card .city-icon svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    stroke: var(--color-accent);
}

.city-card:hover {
    background-color: var(--color-secondary-grey);
    transform: translateY(-2px);
}

.city-card.active {
    background-color: var(--color-accent);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 10px rgba(221, 45, 74, 0.4);
}

.city-card.active .city-icon svg { stroke: #FFFFFF; }

.service-note {
    text-align: center;
    margin: var(--space-3) 0 var(--space-4);
    color: var(--color-text-dark);
    font-size: 1.1rem;
}

.highlight-link {
    color: var(--color-accent);
    font-weight: 700;
    text-decoration: none;
}

.highlight-link:hover { text-decoration: underline; }

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: var(--color-secondary-grey);
}

.map-wrapper iframe,
.map-wrapper .leaflet-container {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: var(--section-gap) 0;
    background-color: #f7f7f7; /* Light grey background */
}

/* --- Header --- */
.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.testimonials-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-2);
}

.testimonials-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.2;
}

.testimonials-title .highlight-text {
    font-weight: 900;
}

/* --- Swipeable Scroll Wrapper --- */
.testimonials-scroll-wrapper {
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 4px 4px 20px 4px; /* Space for shadows */
    margin: 0 -16px; /* Negative margin to allow full-width on mobile */
    padding-left: 16px;
    padding-right: 16px;
    scroll-snap-type: x mandatory; /* Snap to cards when scrolling stops */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    /* Hide ugly scrollbars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
.testimonials-scroll-wrapper::-webkit-scrollbar { 
    display: none; /* WebKit (Chrome, Safari) */
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* --- Individual Testimonial Cards --- */
.testimonial-card {
    width: 85vw; /* Mobile: Takes up 85% of screen width */
    max-width: 380px; /* Max width on desktop */
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    flex-shrink: 0; /* Prevent shrinking */
    scroll-snap-align: center; /* Snap to center */
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

/* --- Card Content --- */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 1.02rem; /* Larger than reviewer name */
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background-color: #e5e7eb;
    margin-bottom: 16px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.testimonial-author-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

.testimonial-author-meta span {
    color: #9ca3af;
}

/* --- Pagination Dots --- */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    width: 28px; /* Pill shape for active */
    border-radius: 10px;
    background-color: var(--color-accent);
}

/* ============================================================
   FOOTER (Clean, Dark Theme)
   ============================================================ */
footer {
    background-color: var(--color-primary); /* Your existing dark blue */
    color: #b0b8c5;
    padding-top: 60px;
}

/* --- Top CTA Row --- */
.footer-cta-row {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-cta-text {
    flex: 1;
}

.footer-cta-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.footer-cta-text p {
    font-size: 1.05rem;
    color: #b0b8c5;
    max-width: 500px;
    margin-bottom: 24px;
}

/* --- Buttons Wrapper --- */
.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* --- BUTTONS --- */
.footer-btn-solid {
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    width: auto;
    padding: 14px 32px;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 6px;
}

.footer-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #ffffff;
    padding: 14px 24px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.2s;
}
.footer-btn-outline:hover {
    background-color: #ffffff;
    color: var(--color-primary);
}

.footer-btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* --- Footer Divider --- */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 40px 0;
}

/* --- 4-Column Grid --- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #b0b8c5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--color-accent); /* #DD2D4A */
}

/* --- Brand Column (Column 1) --- */
.brand-col .footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-row img {
    max-height: 100px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.9rem;
    color: #b0b8c5;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--color-accent); /* #DD2D4A */
    color: #ffffff;
    border-radius: 50%;
    transition: 0.2s;
}
.social-icon:hover {
    background-color: #ffffff;
    color: var(--color-accent);
    transform: translateY(-2px);
}
.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* --- Contact List Column --- */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b8c5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-list li a {
    color: #b0b8c5;
    text-decoration: none;
}
.contact-list li a:hover {
    color: var(--color-accent); /* #DD2D4A */
}

.contact-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent); /* #DD2D4A */
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: #b0b8c5;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #b0b8c5;
    text-decoration: none;
    transition: 0.2s;
}
.footer-bottom-links a:hover {
    color: var(--color-accent); /* #DD2D4A */
}

/* ============================================================
   14. RESPONSIVE SYSTEM
   ============================================================ */

/* Tablet landscape / portrait */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .process-item { text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-title { font-size: 2.2rem; }
    .city-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .why-main-title { font-size: 2.2rem; }
    .why-grid { grid-template-columns: 1fr; }
    .large-card { min-height: auto; }
}

/* Mobile / tablet navigation: 1024px and below */
@media (max-width: 1024px) {
    .top-bar-flex {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .header-logo img { max-height: 50px; }

    .main-nav { display: none; }
    .hamburger { display: flex; }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 24px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-top: 3px solid var(--color-accent);
        box-sizing: border-box;
        z-index: 9999;
        margin: 0;
    }

    .main-nav.active .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
        margin: 0;
        background-color: transparent;
        list-style: none;
    }

    .main-nav.active .nav-links > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding: 0;
        margin: 0;
    }

    .main-nav.active .nav-links > li:last-child { border-bottom: none; }

    .main-nav.active .nav-links > li > a {
        display: block;
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 700;
        color: #1A202C;
        text-align: left;
        text-decoration: none;
        background-color: transparent;
    }

    .main-nav.active .nav-links > li > a:hover,
    .main-nav.active .nav-links > li > a:active {
        color: var(--color-accent);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
        border-radius: 8px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .dropdown-item.open .dropdown-menu { display: block; }

    .cta-banner { padding: 70px 0; }
    .why-header { flex-direction: column; align-items: flex-start; }
    .why-main-title { font-size: 1.8rem; }
    .why-cta-phone { width: 100%; justify-content: center; font-size: 1.2rem; }
    .why-split-row { grid-template-columns: 1fr; }
    .why-grid { gap: var(--space-3); }
    h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-3); }
    .footer-bottom { flex-direction: column; text-align: center; gap: var(--space-2); }
    .hero-cta-group { flex-direction: column; align-items: stretch; text-align: center; }
    .service-title { font-size: 1.8rem; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
    .city-card { padding: 12px; font-size: 0.9rem; white-space: normal; }
    .map-wrapper { height: 300px; }
    .service-note { font-size: 1rem; padding: 0 10px; }
}

/* Mobile footer layout */
@media (max-width: 767px) {
    .footer-cta-text { text-align: center; }
    .footer-cta-text p { margin-left: auto; margin-right: auto; }
    .footer-cta-buttons { flex-direction: column; align-items: center; }
    .footer-cta-buttons .btn,
    .footer-btn-outline {
        width: 100%;
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .brand-col { text-align: center; }
    .brand-col .footer-logo-row { justify-content: center; }
    .footer-logo-row img { max-height: 80px; }
    .footer-desc { margin-left: auto; margin-right: auto; }
    .footer-socials { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   6. DESKTOP OVERRIDES (Wider than 992px)
   ============================================================ */
@media (min-width: 1025px) {
    .top-bar { text-align: left; }
    .top-bar-content { display: flex; justify-content: space-between; align-items: center; }
    
    /* Show the address on Desktop */
    .address-desktop {
        display: flex; /* Using flex because the icon+text are flex items */
        align-items: center;
        gap: 6px;
    }

    .main-header { padding: 18px 0; }

    /* Hide Mobile Button */
    .mobile-call-btn { display: none; }
    
    /* Show Desktop Number */
    .desktop-phone-number {
        display: block;
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 28px;
        color: var(--color-text-dark);
        white-space: nowrap;
    }
    .desktop-phone-number:hover { color: var(--color-accent); }

    /* Hide Hamburger */
    .hamburger { display: none; }

    /* Show Desktop Nav */
    .main-nav {
        display: flex;
        flex: 1;
        justify-content: center;
    }

    /* Desktop Dropdowns */
    .dropdown-menu {
        min-width: 200px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 10px 0;
    }

    /* why grid */
    .why-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { gap: 20px; }
    .nav-links > li > a { font-size: 17px; }
    /* services */
    .services-scroll-wrapper {
        overflow-x: visible; /* Disable horizontal scroll */
        margin: 0;
        padding: 0;
    }
    
    .services-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
        width: 100%;
        gap: 24px;
    }
    
    .service-swipe-card {
        width: 100%;
        max-width: none;
        scroll-snap-align: none;
    }
    /* testimonials */
    .testimonials-title {
        font-size: 3rem;
    }
    
    .testimonials-scroll-wrapper {
        overflow-x: visible; /* Disable horizontal scroll */
        margin: 0;
        padding: 0;
    }
    
    .testimonials-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
        width: 100%;
        gap: 24px;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: none;
        scroll-snap-align: none;
    }
    
    .testimonials-dots {
        display: none;
    }
}

/* for hero */
@media (max-width: 1024px) {
    .hero {
        min-height: 680px;
    }

    .hero-container {
        min-height: 680px;
        align-items: flex-start;
        padding-top: 92px;
        padding-bottom: 145px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-phone-card {
        right: 24px;
        width: min(58%, 560px);
        min-height: 175px;
        padding: 32px;
    }

    .hero-phone-number {
        font-size: clamp(1.9rem, 4vw, 2.8rem);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        min-height: 690px;
    }

    .hero-bg {
        background-position: 64% center;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 16, 22, 0.62) 0%,
            rgba(10, 16, 22, 0.70) 48%,
            rgba(10, 16, 22, 0.82) 100%
        );
    }

    .hero-container {
        min-height: 690px;
        display: block;
        padding-top: 72px;
        padding-bottom: 132px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-eyebrow {
        max-width: 430px;
        margin-bottom: 26px;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4.6rem);
        line-height: 0.98;
        letter-spacing: -1.4px;
    }

    .hero-rule {
        width: 112px;
        height: 4px;
        margin-top: 38px;
    }

    .hero-phone-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        min-height: 134px;
        padding: 25px 22px;
        border-radius: 11px;
    }

    .hero-phone-label {
        font-size: 0.95rem;
    }

    .hero-phone-number {
        font-size: clamp(1.65rem, 7.2vw, 2.3rem);
        letter-spacing: 0;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 60px 20px;
    }

    .cta-banner h2 {
        font-size: clamp(29px, 8vw, 40px);
    }

    .cta-banner .phone-number {
        font-size: clamp(24px, 7vw, 32px);
    }

    .cta-banner::before {
        width: 220px;
        height: 220px;
        top: -130px;
        left: -100px;
    }

    .cta-banner::after {
        width: 280px;
        height: 280px;
        right: -140px;
        bottom: -180px;
    }
}

/* Tablet: 768px–1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .services-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        width: 100%;
        gap: 20px;
    }
    .service-swipe-card {
        width: 100%;
        max-width: none;
        scroll-snap-align: none;
    }
}

/* service dot */
@media (min-width: 768px) {
    .services-dots { display: none; }
}

/* Tablet: 768px–1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .testimonials-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 20px;
    }
    .testimonial-card {
        width: 100%;
        max-width: none;
        scroll-snap-align: none;
    }
    .testimonials-dots { display: none; }
}

/* Small phones */
@media (max-width: 480px) {
    .header-logo img { max-height: 40px; }
    .nav-links > li > a { font-size: 16px; }
    .city-grid { grid-template-columns: 1fr 1fr; }
    .city-card { padding: 10px; font-size: 0.8rem; }
    .city-card .city-icon svg { width: 14px; height: 14px; }
    .map-wrapper { height: 250px; }

    /* hero */
    .hero {
        min-height: 660px;
    }

    .hero-container {
        min-height: 660px;
        padding-top: 58px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-eyebrow {
        font-size: 0.82rem;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 13vw, 3.6rem);
    }

    .hero-rule {
        margin-top: 32px;
    }

    .hero-phone-card {
        left: 16px;
        right: 16px;
        bottom: 12px;
        min-height: 126px;
        padding: 22px 18px;
    }

    .hero-phone-number {
        font-size: clamp(1.5rem, 7.4vw, 2rem);
    }
}


/* =========================================================
   SERVICE PAGE — INTRO
========================================================= */

.service-page .service-intro {
    padding: 80px 0 75px;
    background: var(--color-primary);
    text-align: center;
}

.service-page .service-intro-content {
    max-width: 850px;
    margin: 0 auto;
}

.service-page .service-intro .section-eyebrow,
.service-page .service-intro .service-eyebrow {
    color: #ffffff;
}

.service-page .service-intro .Page-title {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
}

.service-page .service-intro-text {
    max-width: 720px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
}

/* =========================================================
   SERVICE PAGE — IMAGE + TEXT
========================================================= */

.service-page .service-media {
    padding: 90px 0;
    background: #ffffff;
}

.service-page .service-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
}

/* Image */

.service-page .service-media-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-page .service-media-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-page .service-media-image:hover img {
    transform: scale(1.05);
}

/* Text */

.service-page .service-media-content {
    max-width: 580px;
}

.service-page .service-media-content h2 {
    margin: 0 0 20px;
    color: var(--color-text-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.service-page .service-media-content p {
    margin: 0 0 18px;
    color: var(--color-text-dark);
    line-height: 1.75;
}

/* =========================================================
   OUR SERVICES INCLUDE
   Bullet-list layout
========================================================= */

.service-page .service-includes {
    padding: 90px 0;
    background: var(--color-surface-light);
}

.service-page .service-includes-heading {
    max-width: 760px;
    margin: 0 0 50px;
}

.service-page .service-includes-heading .section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    gap: 8px;
    margin-bottom: var(--space-2);
}

.service-page .service-includes-heading h2 {
    margin: 0 0 16px;
    color: var(--color-text-dark);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
}

.service-page .service-includes-heading p {
    max-width: 650px;
    margin: 0;
    color: var(--color-text-dark);
    line-height: 1.7;
}

/* ---------------------------------------------------------
   SERVICE LIST
--------------------------------------------------------- */


.service-page .service-includes-list {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.service-page .service-include-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);

    transition:
        padding-left 0.3s ease,
        border-color 0.3s ease;
}

.service-page .service-include-bullet {
    padding-top: 9px;
}

.service-page .service-include-bullet span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-page .service-include-content {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 40px;
    align-items: start;
}

.service-page .service-include-content h3 {
    margin: 0;
    color: var(--color-text-dark);
    font-size: 21px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-page .service-include-content p {
    max-width: 650px;
    margin: 0;
    color: var(--color-text-dark);
    line-height: 1.65;
}

/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

@media (hover: hover) {

    .service-page .service-include-item:hover {
        padding-left: 8px;
        border-bottom-color: var(--color-accent);
    }

    .service-page .service-include-item:hover
    .service-include-bullet span {
        transform: scale(1.5);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.05);
    }

    .service-page .service-include-item:hover
    .service-include-content h3 {
        color: var(--color-accent);
    }

}

/* ---------------------------------------------------------
   SHARED SECTION HEADING
   --------------------------------------------------------- */

.service-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
}

.service-section-heading h2 {
    margin: 0 0 16px;
    color: var(--color-text-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.service-section-heading p {
    margin: 0;
    color: var(--color-text-dark);
    line-height: 1.7;
}


/* ---------------------------------------------------------
   BENEFITS
   --------------------------------------------------------- */

.service-page .service-benefits {
    padding: 90px 0;
    background: var(--color-bg-light);
}

.service-page .service-benefits .service-section-heading {
    text-align: center;
}

.service-page .service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-page .service-benefit {
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
}

/* =========================================================
   BENEFIT ICONS
========================================================= */

.service-page .service-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    color: var(--color-accent);
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
}

.service-page .service-benefit-icon svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------------------------------------------------------
   ICON HOVER
--------------------------------------------------------- */

@media (hover: hover) {

    .service-page .service-benefit-icon {
        transition:
            transform 0.3s ease,
            background-color 0.3s ease;
    }

    .service-page .service-benefit:hover
    .service-benefit-icon {
        transform: translateY(-3px);
        background: rgba(0, 0, 0, 0.07);
    }

}

.service-benefit h3 {
    margin: 0 0 12px;
    color: var(--color-text-dark);
    font-size: 20px;
    line-height: 1.3;
}

.service-benefit p {
    margin: 0;
    color: var(--color-text-dark);
    line-height: 1.65;
}

/* =========================================================
   SERVICE PAGE — SERVICE DETAILS
========================================================= */

.service-page .service-details {
    padding: 100px 0;
    background: var(--color-surface-light);
}

.service-page .service-details-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Heading */

.service-page .service-details .service-section-heading {
    text-align: center;
    max-width: 760px;
    margin-bottom: 42px;
    margin-left: auto;
    margin-right: auto;
}

.service-page .service-details .service-section-heading h2 {
    margin: 0;
    color: var(--color-text-dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

/* Text */

.service-page .service-details-text {
    max-width: 780px;
}

.service-page .service-details-text p {
    margin: 0 0 22px;
    color: var(--color-text-dark);
    font-size: 17px;
    line-height: 1.8;
}

.service-page .service-details-text p:last-of-type {
    margin-bottom: 38px;
}

/* Subheading */

.service-page .service-details-text h3 {
    margin: 0 0 20px;
    color: var(--color-text-dark);
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.3;
}

/* List */

.service-page .service-details-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page .service-details-text li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--color-text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.service-page .service-details-text li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.service-page .service-details-text li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .service-intro {
        padding: 60px 0 45px;
    }

    .service-page .service-media {
        padding: 75px 0;
    }

    .service-page .service-media-grid {
        gap: 45px;
    }

    .service-page .service-includes {
        padding: 75px 0;
    }

    .service-page .service-include-item {
        gap: 18px;
    }

    .service-page .service-include-content {
        grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
        gap: 25px;
    }

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

    .service-page .service-details {
        padding: 80px 0;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .service-page .service-intro {
        padding: 55px 0 50px;
    }

    .service-page .service-intro .Page-title {
        font-size: clamp(34px, 10vw, 46px);
    }

    .service-page .service-intro-text {
        font-size: 16px;
    }

    .service-page .service-media {
        padding: 60px 0;
    }

    .service-page .service-media-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-page .service-media-image {
        border-radius: 14px;
    }

    .service-page .service-media-content {
        max-width: none;
    }

    .service-page .service-includes {
        padding: 60px 0;
    }

    .service-page .service-includes-heading {
        margin-bottom: 35px;
    }

    .service-page .service-include-item {
        grid-template-columns: 14px minmax(0, 1fr);
        gap: 15px;
        padding: 23px 0;
    }

    .service-page .service-include-bullet {
        padding-top: 8px;
    }

    .service-page .service-include-bullet span {
        width: 7px;
        height: 7px;
    }

    .service-page .service-include-content {
        display: block;
    }

    .service-page .service-include-content h3 {
        margin-bottom: 8px;
        font-size: 19px;
    }

    .service-page .service-include-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .service-page .service-benefits {
        padding: 60px 0;
    }

    .service-page .service-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-page .service-benefit {
        padding: 24px;
    }

    .service-page .service-details {
        padding: 60px 0;
    }

    .service-page .service-details .service-section-heading {
        margin-bottom: 32px;
    }

    .service-page .service-details-text p {
        font-size: 16px;
        line-height: 1.75;
    }

    .service-page .service-details-text li {
        padding: 13px 0 13px 25px;
        font-size: 15px;
    }

    .service-page .service-details-text li::before {
        top: 21px;
        left: 4px;
    }

}

/* =========================================================
   LEGAL / INFORMATION PAGES
========================================================= */

.legal-page {
    background: #fff;
}

.legal-hero {
    padding: 80px 0 55px;
    background: var(--color-bg-light);
}

.legal-hero-content {
    max-width: 850px;
}

.legal-hero .Page-title {
    margin: 10px 0 18px;
    color: var(--color-text-dark);
}

.legal-intro {
    max-width: 700px;
    margin: 0;
    color: var(--color-text-dark);
    line-height: 1.7;
}

.legal-content {
    padding: 75px 0 100px;
}

.legal-document {
    max-width: 850px;
    margin: 0 auto;
    color: var(--color-text-dark);
}

.legal-document h2 {
    margin: 42px 0 14px;
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.3;
}

.legal-document p,
.legal-document li {
    font-size: 16px;
    line-height: 1.8;
}

.legal-document p {
    margin: 0 0 20px;
}

.legal-document ul {
    margin: 0 0 24px;
    padding-left: 22px;
}

.legal-document li {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .legal-hero {
        padding: 55px 0 40px;
    }

    .legal-content {
        padding: 55px 0 70px;
    }

    .legal-document p,
    .legal-document li {
        font-size: 15px;
        line-height: 1.75;
    }

    .legal-document h2 {
        margin-top: 34px;
    }
}

/* =========================================================
   404 PAGE
========================================================= */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--color-bg-light);
}

.error-hero {
    width: 100%;
    padding: 100px 0;
}

.error-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.error-content .section-eyebrow {
    display: inline-block;
}

.error-number {
    margin: 5px 0 0;
    font-size: clamp(100px, 18vw, 190px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.06em;
    color: var(--color-primary);
}

.error-content h1 {
    margin: 25px 0 14px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
}

.error-content > p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.75;
}

.error-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.error-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    text-decoration: none;
}

.error-actions .btn-secondary {
    background: transparent;
    border: 1px solid currentColor;
}

@media (max-width: 767px) {
    .error-hero {
        padding: 70px 0;
    }

    .error-number {
        font-size: clamp(90px, 28vw, 140px);
    }

    .error-content > p {
        font-size: 15px;
    }

    .error-actions {
        flex-direction: column;
        width: 100%;
    }

    .error-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
