/* ==========================================================================
   HARD HYDRO PRESSURE WASHING - MASTER STYLESHEET
   Design matches reference layout, color palette, angled row dividers,
   custom mascot character, double service vans, and photo collages.
   ========================================================================== */

/* --- CSS VARIABLES & THEME TOKENS --- */
:root {
    --color-navy-dark: #080d16;
    --color-navy-main: #0f172a;
    --color-navy-card: #151e32;
    --color-navy-light: #1e293b;
    
    --color-yellow: #ffb400;
    --color-yellow-hover: #e5a200;
    --color-yellow-dark: #cc8f00;

    --color-blue: #0066ff;
    --color-blue-dark: #004ecc;
    --color-blue-light: #3385ff;
    
    --color-white: #ffffff;
    --color-light-bg: #f3f5f9;
    --color-gray-text: #64748b;
    --color-gray-dark: #334155;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --box-shadow-glow: 0 0 25px rgba(255, 180, 0, 0.3);
}

/* --- RESET & GLOBAL BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- TYPOGRAPHY HELPERS --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.highlight-yellow {
    color: var(--color-yellow);
    text-shadow: 0 2px 10px rgba(255, 180, 0, 0.2);
}

.text-yellow {
    color: var(--color-yellow);
}

.text-yellow-dark {
    color: var(--color-yellow-dark);
}

.text-blue {
    color: var(--color-blue);
}

.text-center {
    text-align: center;
}

.section-tag-yellow {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.25rem 0.85rem;
    border-radius: 3px;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-title-dark {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--color-navy-dark);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title-light {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 1rem;
}

/* --- BUTTONS SYSTEM --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.85rem 1.85rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-yellow {
    background: linear-gradient(135deg, #ffc107 0%, var(--color-yellow) 100%);
    color: var(--color-navy-dark);
}

.btn-yellow:hover {
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-glow);
}

.btn-navy {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    border: 2px solid var(--color-yellow);
}

.btn-navy:hover {
    background-color: var(--color-yellow);
    color: var(--color-navy-dark);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-navy-dark);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-navy-dark);
    border: 2px solid var(--color-navy-dark);
}

.btn-outline-dark:hover {
    background: var(--color-navy-dark);
    color: var(--color-yellow);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-navy-dark);
    border-bottom: 2px solid rgba(255, 180, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.top-bar {
    background-color: #05080e;
    padding: 0.4rem 0;
    font-size: 0.825rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.top-info {
    display: flex;
    gap: 1.5rem;
    color: #94a3b8;
}

.top-info span i {
    color: var(--color-yellow);
    margin-right: 0.35rem;
}

.top-socials {
    display: flex;
    gap: 1rem;
}

.top-socials a {
    color: #94a3b8;
}

.top-socials a:hover {
    color: var(--color-yellow);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
    color: var(--color-navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 0 12px rgba(255, 180, 0, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
}

.logo-primary {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-yellow);
    letter-spacing: 1px;
}

.logo-secondary {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-blue);
    letter-spacing: 2px;
    margin-top: 2px;
}

/* NAV LINKS */
.nav-menu {
    display: flex;
    gap: 1.75rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-yellow);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-yellow);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-navy-card);
    border: 2px solid var(--color-yellow);
    padding: 0.5rem 1.1rem;
    border-radius: 4px;
    color: var(--color-white);
}

.btn-phone i {
    font-size: 1.35rem;
    color: var(--color-yellow);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.65rem;
    color: var(--color-yellow);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.75rem;
    cursor: pointer;
}

/* --- SECTION 1: HERO BANNER --- */
.hero-section {
    position: relative;
    background-color: var(--color-navy-dark);
    background-image: 
        linear-gradient(135deg, rgba(8, 13, 22, 0.96) 0%, rgba(15, 23, 42, 0.92) 100%),
        repeating-linear-gradient(45deg, rgba(255, 180, 0, 0.03) 0, rgba(255, 180, 0, 0.03) 2px, transparent 0, transparent 20px);
    padding: 3.5rem 0 0 0;
    overflow: hidden;
    border-bottom: 4px solid var(--color-yellow);
}

/* HERO DYNAMIC YELLOW LIGHTNING BOLT EFFECT */
.hero-bolt-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bolt-poly-yellow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffc107 0%, var(--color-yellow) 60%, #d48800 100%);
    clip-path: polygon(42% 0, 100% 0, 100% 100%, 12% 100%, 50% 55%, 34% 62%, 64% 25%);
    opacity: 0.95;
    filter: drop-shadow(-10px 0 25px rgba(0,0,0,0.6));
}

.bolt-poly-dark {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy-dark);
    clip-path: polygon(66% 0, 100% 0, 100% 48%, 75% 36%, 86% 18%);
    opacity: 0.92;
}

.bolt-wireframe-svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: flex-end;
}

.hero-content {
    padding-bottom: 3.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 180, 0, 0.15);
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 1.5rem;
    margin-bottom: 2rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
}

.hero-bullets li i {
    color: var(--color-yellow);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-badges-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--color-navy-card);
    border: 1px solid rgba(255, 180, 0, 0.3);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-white);
}

.badge-item i {
    color: var(--color-yellow);
    font-size: 1rem;
}

/* HERO CHARACTER CUTOUT */
.hero-character-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-character-img {
    max-height: 580px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    position: relative;
    z-index: 6;
}

.character-badge-floating {
    position: absolute;
    left: -20px;
    bottom: 80px;
    z-index: 7;
    background: var(--color-navy-card);
    border: 2px solid var(--color-yellow);
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.character-badge-floating i {
    font-size: 1.8rem;
    color: var(--color-yellow);
}

.character-badge-floating strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-white);
    line-height: 1.1;
}

.character-badge-floating span {
    font-size: 0.75rem;
    color: var(--color-yellow);
}

/* --- SECTION 2: 4-CARD FEATURE STRIP --- */
.feature-cards-strip {
    background-color: var(--color-navy-dark);
    padding: 2rem 0;
    margin-top: -1px;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    background-color: var(--color-navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--color-yellow);
    padding: 1.75rem 1.25rem;
    border-radius: 4px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-top-color: var(--color-blue);
}

.card-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-yellow);
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.15rem 0.6rem;
    border-bottom-left-radius: 4px;
}

.card-icon {
    font-size: 2.2rem;
    color: var(--color-yellow);
    margin-bottom: 0.85rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* --- ROW DIVIDERS (DIAGONAL ANGLED RIBBONS) --- */
.row-divider {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 10;
}

.row-divider-angle-light {
    background-color: var(--color-navy-dark);
}

.row-divider-angle-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-light-bg);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.row-divider-angle-dark {
    background-color: var(--color-light-bg);
}

.row-divider-angle-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy-dark);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.divider-ribbon-yellow {
    position: absolute;
    top: 20px;
    left: -5%;
    width: 110%;
    height: 12px;
    background-color: var(--color-yellow);
    transform: rotate(-1.5deg);
    z-index: 12;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.divider-ribbon-blue {
    position: absolute;
    top: 32px;
    left: -5%;
    width: 110%;
    height: 6px;
    background-color: var(--color-blue);
    transform: rotate(-1.5deg);
    z-index: 11;
}

/* --- SECTION 3: ABOUT / WHEN IN NEED SECTION --- */
.about-section {
    background-color: var(--color-light-bg);
    color: var(--color-navy-dark);
    padding: 5rem 0;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

/* ABOUT COLLAGE */
.about-collage {
    position: relative;
    padding: 1.5rem;
}

.collage-main-frame {
    width: 82%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 4px solid var(--color-white);
}

.collage-img-main {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.collage-overlay-frame {
    position: absolute;
    right: 5%;
    bottom: -5%;
    width: 55%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border: 5px solid var(--color-yellow);
    z-index: 3;
}

.collage-img-overlay {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.collage-accent-shape {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 120px;
    height: 120px;
    background-color: var(--color-blue);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
}

/* ABOUT CONTENT */
.about-description {
    font-size: 1.05rem;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats-counter-grid {
    display: flex;
    gap: 2rem;
    background-color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--color-yellow);
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-navy-dark);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-yellow-dark);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gray-text);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.about-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-spray-icon {
    font-size: 3rem;
    color: var(--color-blue);
    opacity: 0.8;
}

/* --- SECTION 4: SERVICES GRID (DARK NAVY SECTION) --- */
.services-section {
    background-color: var(--color-navy-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.services-watermark {
    position: absolute;
    top: -50px;
    left: -50px;
    font-size: 20rem;
    color: rgba(255, 180, 0, 0.02);
    pointer-events: none;
}

.services-header {
    margin-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-navy-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-yellow);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.service-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-navy-card) 0%, transparent 80%);
}

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--color-yellow);
    color: var(--color-navy-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: -40px;
    position: relative;
    z-index: 3;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-card-action {
    background: transparent;
    border: none;
    color: var(--color-yellow);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.btn-card-action:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

/* --- SECTION 5: IMMEDIATE ASSISTANCE BANNER WITH VANS --- */
.assistance-banner-section {
    background-color: var(--color-navy-dark);
    padding: 2rem 0 5rem 0;
}

.assistance-banner {
    position: relative;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    border-radius: 12px;
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
    border: 3px solid var(--color-yellow);
}

.assistance-text-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 1.75rem;
    line-height: 1.15;
}

.assistance-text-content .highlight-text {
    color: var(--color-yellow);
    display: block;
}

.assistance-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.assistance-vans-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.assistance-vans-img {
    max-width: 115%;
    margin-right: -2rem;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

/* --- SECTION 6: WHY CHOOSE HARD HYDRO --- */
.why-choose-section {
    background-color: var(--color-light-bg);
    color: var(--color-navy-dark);
    padding: 5rem 0;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-box {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border-top: 3px solid var(--color-yellow);
}

.why-box-icon {
    font-size: 2rem;
    color: var(--color-yellow-dark);
    margin-bottom: 0.75rem;
}

.why-box-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 0.4rem;
}

.why-box-text p {
    font-size: 0.85rem;
    color: var(--color-gray-text);
    line-height: 1.5;
}

/* POLYGON COLLAGE RIGHT */
.why-choose-collage {
    position: relative;
    display: flex;
    justify-content: center;
}

.polygon-collage-shape {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 440px;
}

.poly-img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    border: 4px solid var(--color-white);
}

.poly-img-1 {
    width: 75%;
    height: 280px;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.poly-img-2 {
    width: 70%;
    height: 250px;
    bottom: 0;
    right: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    border-color: var(--color-yellow);
}

.polygon-accent-yellow {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--color-yellow);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

/* --- SECTION 7: BLUE GUARANTEE RIBBON BANNER --- */
.guarantee-ribbon-section {
    background: linear-gradient(90deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
    padding: 2.5rem 0;
    border-top: 4px solid var(--color-yellow);
    border-bottom: 4px solid var(--color-yellow);
}

.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.guarantee-team-img {
    max-width: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--color-white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.guarantee-team-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guarantee-content {
    flex-grow: 1;
}

.guarantee-sub {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 1px;
}

.guarantee-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--color-white);
    margin: 0.25rem 0 1.25rem 0;
}

/* --- SECTION 8: REVIEWS / TESTIMONIALS --- */
.reviews-section {
    background-color: var(--color-light-bg);
    padding: 5rem 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.social-proof-box {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin: 1.5rem 0 2rem 0;
    border-left: 4px solid var(--color-blue);
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.8rem;
    color: var(--color-navy-dark);
    margin-bottom: 0.75rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.score {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-navy-dark);
}

.stars {
    color: var(--color-yellow-dark);
    font-size: 1.1rem;
}

.review-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gray-text);
}

.reviews-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background-color: var(--color-white);
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--color-yellow);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-navy-main);
    color: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.review-card-header h4 {
    font-size: 1.15rem;
    color: var(--color-navy-dark);
}

.review-card-header .location {
    font-size: 0.8rem;
    color: var(--color-gray-text);
}

.review-stars {
    margin-left: auto;
    color: var(--color-yellow-dark);
}

.review-text {
    font-style: italic;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- SECTION 9: GALLERY "SEE THE TEAM IN ACTION!" --- */
.gallery-section {
    background-color: #e2e8f0;
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.gallery-item {
    position: relative;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border: 3px solid var(--color-white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-hover-tag {
    position: absolute;
    bottom: 0;
    inset-x: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    color: var(--color-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 0.85rem 0.5rem 0.85rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-hover-tag {
    transform: translateY(0);
}

/* --- SECTION 10: 3-STEP PROCESS SECTION --- */
.process-section {
    background-color: var(--color-light-bg);
    padding: 5rem 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.process-card {
    position: relative;
    background-color: var(--color-white);
    padding: 2.5rem 1.75rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--color-navy-dark);
    text-align: center;
    transition: var(--transition);
}

.process-card:hover {
    border-top-color: var(--color-yellow);
    transform: translateY(-6px);
}

.process-num-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-yellow);
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--color-navy-dark);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.process-card h3 {
    font-size: 1.35rem;
    color: var(--color-navy-dark);
    margin-bottom: 0.6rem;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    line-height: 1.6;
}

/* --- SECTION 11: MAP & COVERAGE AREA SECTION --- */
.coverage-map-section {
    background-color: var(--color-navy-dark);
    padding: 5rem 0;
}

.cities-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 1.5rem 0 2.5rem 0;
}

.cities-list li {
    background-color: var(--color-navy-card);
    border: 1px solid rgba(255, 180, 0, 0.3);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cities-list li i {
    color: var(--color-yellow);
    margin-right: 0.35rem;
}

.map-wrapper-box {
    position: relative;
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--color-navy-card);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(110%);
}

.map-van-overlay {
    position: absolute;
    right: 20px;
    bottom: -20px;
    width: 380px;
    z-index: 10;
    pointer-events: none;
}

.map-van-img {
    width: 100%;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.7));
}

/* --- SECTION 12: FINAL CTA BANNER --- */
.final-cta-banner {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-main) 100%);
    padding: 4.5rem 0;
    border-top: 4px solid var(--color-yellow);
}

.final-cta-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--color-white);
    margin-bottom: 2rem;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #04070d;
    color: #94a3b8;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-desc {
    font-size: 0.875rem;
    margin: 1.25rem 0;
    line-height: 1.6;
}

.footer-contact-info p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-contact-info i {
    color: var(--color-yellow);
    margin-right: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-yellow);
    padding-left: 5px;
}

.footer-map-mini {
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.mini-map {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    background-color: #020306;
    padding: 1.25rem 0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    color: #94a3b8;
}

.footer-legal a:hover {
    color: var(--color-yellow);
}

/* --- MODAL CALCULATOR OVERLAY --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--color-navy-card);
    border: 2px solid var(--color-yellow);
    border-radius: 12px;
    width: 100%;
    max-width: 580px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--color-yellow);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.modal-icon {
    font-size: 2.2rem;
    color: var(--color-yellow);
    margin-bottom: 0.5rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--color-white);
}

.modal-header p {
    font-size: 0.85rem;
    color: #94a3b8;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.4rem;
}

.highlight-val {
    color: var(--color-yellow);
    font-weight: 800;
}

.form-control {
    width: 100%;
    background-color: var(--color-navy-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-yellow);
}

.form-range {
    width: 100%;
    accent-color: var(--color-yellow);
    cursor: pointer;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.col-6 {
    flex: 1;
}

.quote-estimate-box {
    background-color: rgba(255, 180, 0, 0.1);
    border: 1px dashed var(--color-yellow);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
}

.quote-estimate-box span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 1px;
}

.estimated-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin: 0.25rem 0;
}

.quote-estimate-box small {
    font-size: 0.75rem;
    color: #94a3b8;
}

.modal-success-msg {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.modal-success-msg i {
    font-size: 4rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.modal-success-msg h3 {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.modal-success-msg p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-bullets {
        justify-content: center;
    }

    .hero-buttons, .trust-badges-row {
        justify-content: center;
    }

    .hero-character-wrapper {
        display: none;
    }

    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container, .why-choose-container, .reviews-container {
        grid-template-columns: 1fr;
    }

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

    .assistance-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .assistance-buttons {
        justify-content: center;
    }

    .assistance-vans-wrapper {
        justify-content: center;
        margin-top: 2rem;
    }

    .assistance-vans-img {
        max-width: 100%;
        margin-right: 0;
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-navy-dark);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 2px solid var(--color-yellow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .btn-phone .phone-label {
        display: none;
    }

    .feature-cards-grid, .services-grid, .why-choose-grid, .process-steps-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-container {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-team-img {
        max-width: 100%;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ==========================================================================
   AUTOBIDDER HEADLESS INTEGRATION STYLES
   ========================================================================== */

.autobidder-modal-card {
    max-width: 680px;
}

.ab-wizard-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.ab-wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.ab-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ab-step-title {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--color-yellow);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.btn-back:hover {
    background-color: rgba(255,180,0,0.1);
}

/* SERVICE CARDS GRID */
.ab-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.ab-service-card-btn {
    background-color: var(--color-navy-dark);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.ab-service-card-btn:hover, .ab-service-card-btn.selected {
    border-color: var(--color-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,180,0,0.25);
}

.ab-card-visual-wrapper {
    position: relative;
    height: 110px;
    width: 100%;
    overflow: hidden;
}

.ab-service-photo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ab-service-card-btn:hover .ab-service-photo-bg {
    transform: scale(1.08);
}

.ab-card-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,13,22,0.2) 0%, rgba(21,30,50,0.95) 100%);
}

.ab-service-pill-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background-color: var(--color-yellow);
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.ab-icon-circle {
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 2px solid var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.ab-service-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.ab-service-card-body {
    padding: 1rem;
}

.ab-service-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.ab-service-desc {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.3;
}

/* MEASURE MAP BANNER */
.ab-measure-map-banner {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(255, 180, 0, 0.15));
    border: 1px solid var(--color-blue-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ab-mm-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ab-mm-info i {
    font-size: 1.8rem;
    color: var(--color-yellow);
}

.ab-mm-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-white);
}

.ab-mm-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* DYNAMIC OPTION TILES & INPUTS */
.ab-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
    margin-top: 0.4rem;
}

.ab-option-tile {
    background-color: var(--color-navy-dark);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ab-option-tile:hover, .ab-option-tile.selected {
    border-color: var(--color-yellow);
    background-color: rgba(255,180,0,0.12);
}

.ab-option-img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
}

.ab-option-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
}

.ab-section-heading {
    font-size: 1.05rem;
    color: var(--color-yellow);
    margin: 1.5rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.ab-button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ab-button-group .btn {
    flex: 1;
}

/* ESTIMATE PRICE CARD */
.ab-estimate-card {
    background: linear-gradient(135deg, rgba(255,180,0,0.15), rgba(15,23,42,0.9));
    border: 2px solid var(--color-yellow);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.ab-estimate-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 1.5px;
}

.ab-price-display {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin: 0.5rem 0;
}

.ab-price-breakdown {
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* UPSELLS & PACKAGES */
.ab-upsells-section {
    margin-bottom: 1.5rem;
}

.ab-upsells-title {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.ab-upsell-item {
    background-color: var(--color-navy-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.ab-upsell-item:hover, .ab-upsell-item.selected {
    border-color: var(--color-yellow);
    background-color: rgba(255,180,0,0.08);
}

.ab-upsell-info strong {
    display: block;
    color: var(--color-white);
    font-size: 0.9rem;
}

.ab-upsell-info p {
    font-size: 0.78rem;
    color: #94a3b8;
}

.ab-upsell-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-yellow);
    font-weight: 700;
    white-space: nowrap;
}

/* BOOKING SLOTS GRID */
.ab-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.6rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 4px;
}

.ab-slot-btn {
    background-color: var(--color-navy-dark);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--color-white);
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.ab-slot-btn:hover, .ab-slot-btn.selected {
    background-color: var(--color-yellow);
    color: var(--color-navy-dark);
    border-color: var(--color-yellow);
}

/* FLOATING AI CHAT WIDGET */
.ab-chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1900;
}

.ab-chat-launcher {
    background: linear-gradient(135deg, #ffc107 0%, var(--color-yellow) 100%);
    color: var(--color-navy-dark);
    border: none;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.ab-chat-launcher:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-glow);
}

.ab-chat-launcher i {
    font-size: 1.25rem;
}

.ab-chat-window {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    width: 360px;
    max-width: calc(100vw - 3rem);
    height: 480px;
    max-height: calc(100vh - 7rem);
    background-color: var(--color-navy-card);
    border: 2px solid var(--color-yellow);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.ab-chat-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ab-chat-header {
    background-color: var(--color-navy-dark);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ab-chat-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.ab-chat-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
}

.ab-chat-close:hover {
    color: var(--color-white);
}

.ab-chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ab-chat-msg {
    max-width: 85%;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.875rem;
    line-height: 1.4;
    word-break: break-word;
}

.ab-chat-msg.system, .ab-chat-msg.assistant {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    border: 1px solid rgba(255,255,255,0.08);
}

.ab-chat-msg.user {
    background-color: var(--color-yellow);
    color: var(--color-navy-dark);
    border-bottom-right-radius: 2px;
    align-self: flex-end;
    font-weight: 600;
}

.ab-chat-input-area {
    padding: 0.75rem;
    background-color: var(--color-navy-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 0.5rem;
}

.ab-chat-input {
    flex: 1;
    background-color: var(--color-navy-card);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--color-white);
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.ab-chat-input:focus {
    outline: none;
    border-color: var(--color-yellow);
}

.ab-chat-send-btn {
    background-color: var(--color-yellow);
    color: var(--color-navy-dark);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ab-chat-send-btn:hover {
    background-color: var(--color-yellow-hover);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .ab-services-grid {
        grid-template-columns: 1fr;
    }
    .ab-measure-map-banner {
        flex-direction: column;
        text-align: center;
    }
    .ab-button-group {
        flex-direction: column;
    }
}

/* ==========================================================================
   QUICK PRICE RANGE CALCULATOR STYLES
   ========================================================================== */

.range-calc-section {
    padding: 4rem 0;
    background-color: var(--color-navy-main);
    position: relative;
    border-bottom: 2px solid rgba(255, 180, 0, 0.15);
}

.range-calc-card {
    background-color: var(--color-navy-card);
    border: 2px solid var(--color-yellow);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    max-width: 860px;
    margin: 0 auto;
}

.range-header {
    margin-bottom: 2rem;
}

.range-subtitle {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.range-controls-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.range-result-box {
    background: linear-gradient(135deg, rgba(255,180,0,0.12), rgba(15,23,42,0.95));
    border: 1px dashed var(--color-yellow);
    border-radius: 10px;
    padding: 1.75rem;
    text-align: center;
}

.range-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.range-price-display {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin: 0.5rem 0;
}

.range-disclaimer {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.range-cta-box {
    background-color: var(--color-navy-dark);
    border: 1px solid var(--color-yellow);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
}

.range-cta-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-white);
}

.range-cta-text span {
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .range-controls-grid {
        grid-template-columns: 1fr;
    }
    .range-cta-box {
        flex-direction: column;
        text-align: center;
    }
}


