/* =============================================
   ULTRA-PREMIUM MODERN DESIGN
   Colors derived from standard Gutter Contractor palettes (Navy blue, Warning orange/gold)
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Premium Contractor Colors */
    --primary: #0044B3;
    --primary-dark: #00235C;
    --primary-light: #E6EEFA;

    --accent: #FF6A00;
    --accent-dark: #cc5500;
    --accent-glow: rgba(255, 106, 0, 0.4);

    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;

    --surface: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-section: #f1f5f9;

    --border: #e2e8f0;

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(0, 35, 92, 0.05);
    --shadow-hover: 0 20px 50px rgba(0, 35, 92, 0.12);
    --shadow-accent: 0 10px 30px var(--accent-glow);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-subtle);
    line-height: 1.7;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

h4 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

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

img {
    max-width: 100%;
    display: block;
    border-radius: inherit;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 68, 179, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 68, 179, 0.3);
}

.btn-secondary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 25px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px var(--accent-glow);
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translateX(5px);
}

/* Topbar */
.topbar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5;
}

.topbar-right .topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 15px;
}

.topbar-right .topbar-phone svg {
    width: 15px;
    height: 15px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

@media (min-width: 1101px) {
    .main-header {
        position: sticky;
        top: 0;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
}

.header-scrolled .header-inner {
    height: 88px;
}

.logo img {
    height: 90px;
    width: auto;
    transition: height var(--transition);
}

.header-scrolled .logo img {
    height: 76px;
}

.main-nav>ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
}

.main-nav>ul>li>a {
    color: var(--primary-dark);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    position: relative;
    padding: 35px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

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

.chevron {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    opacity: 0.6;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    z-index: 2000;
    box-shadow: 0 20px 40px rgba(0, 35, 92, 0.1);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px;
    border-top: 3px solid var(--accent);
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    list-style: none;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Custom Scrollbar for Dropdown */
.has-dropdown .dropdown::-webkit-scrollbar {
    width: 6px;
}

.has-dropdown .dropdown::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 6px;
}

.has-dropdown .dropdown::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

.dropdown li a {
    color: var(--text-body);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    display: block;
    text-align: left;
    transition: all 0.2s ease;
}

.dropdown li a:hover {
    background: rgba(0, 68, 179, 0.05);
    color: var(--primary);
    padding-left: 23px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 160px;
    background: linear-gradient(to bottom, rgba(0, 35, 92, 0.8), rgba(0, 35, 92, 0.95)), url('/images/Home/image.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero .badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 106, 0, 0.15);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 100px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Stats */
.stats-floating {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.stats-grid {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 35, 92, 0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    color: var(--accent);
}

.stat-label {
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.bg-light {
    background: #fff;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-title {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 15px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50px;
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-head h2 {
    margin-bottom: 20px;
}

.section-head h2 span,
h2 span {
    color: var(--accent);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* About Section */
.about-images {
    position: relative;
}

.about-images:has(.about-experience) {
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-images .main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
    height: auto;
}

.about-experience {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--accent);
    color: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-accent);
    text-align: center;
    border: 6px solid #fff;
    z-index: 2;
}

.about-experience span {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.about-experience p {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-content ul li svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

/* Premium Cards */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card .icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 14px;
}

/* Why Choose */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.why-item .icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-weight: bold;
}

/* Premium Why Choose Us */
.why-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.why-item-premium {
    background: #ffffff;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 106, 0, 0.3);
}

.why-item-premium .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-item-premium .icon svg {
    width: 28px;
    height: 28px;
}

.why-item-premium:hover .icon {
    background: var(--accent);
    color: #fff;
}

.why-item-premium h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.why-item-premium p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-body);
    line-height: 1.6;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    color: #fff;
}

.cta-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

/* Page Banner */
.page-banner {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 35, 92, 0.85), rgba(0, 35, 92, 0.95)), url('/images/Home/image.png') center/cover no-repeat;
    opacity: 0.8;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #fff;
    margin-bottom: 5px;
}

.page-banner .breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.page-banner .breadcrumb a {
    color: var(--accent);
}

/* Footer */
.main-footer {
    background: #0f172a;
    padding: 100px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.8fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    max-height: 120px;
    margin-bottom: 25px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* Show brand colors as-is; invert filter made light/white logos a solid white block */
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-col ul li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
}

/* Mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3001;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 92, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media(max-width: 1100px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        padding: 90px 30px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 3000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        visibility: visible;
        transform: none;
    }

    .main-nav.active {
        right: 0;
    }

    .topbar {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-inner {
        height: 75px;
        justify-content: space-between;
    }

    .main-nav>ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav>ul>li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .main-nav>ul>li>a {
        padding: 20px 0;
        font-size: 1.15rem;
        justify-content: space-between;
    }

    .main-nav>ul>li>a::after {
        display: none;
    }

    .has-dropdown .chevron {
        width: 20px;
        height: 20px;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 50%;
        padding: 2px;
        transition: transform 0.3s ease;
    }

    .has-dropdown.active .chevron {
        transform: rotate(180deg);
        background: var(--primary-light);
        color: var(--primary);
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-left: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        display: block;
    }

    .has-dropdown.active .dropdown {
        padding-bottom: 20px;
        display: block;
    }

    .dropdown li a {
        padding: 12px 0;
        font-size: 1rem;
        color: var(--text-body);
    }

    .dropdown li a:hover {
        background: transparent;
        transform: translateX(5px);
        color: var(--primary);
    }
}

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

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

    .service-card-cta-pair {
        grid-template-columns: 1fr;
    }

    .service-card-cta-pair--span-2 {
        grid-column: 1 / -1;
    }

    .service-card-cta-pair--span-full {
        max-width: none;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    /* Stats Grid Fixes for Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 15px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    /* About Section Fixes for Mobile */
    .about-images:has(.about-experience) {
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .about-experience {
        padding: 15px;
        border-width: 4px;
    }

    .about-experience span {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-grid-premium {
        grid-template-columns: 1fr;
    }

    .badge-float {
        display: none !important;
    }
}

/* Utils */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

.phone-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.phone-float img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.phone-float svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 106, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

.phone-float {
    animation: floatPulse 2s infinite;
}

/* Map Section */
.map-section {
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
    border: none;
}

.p-0 {
    padding: 0 !important;
}

/* Utility Classes */
.text-justify {
    text-align: justify;
}

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

.text-start {
    text-align: left;
}

.mt-4 {
    margin-top: 30px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-4 {
    margin-bottom: 30px;
}

.mb-5 {
    margin-bottom: 50px;
}

.font-semibold {
    font-weight: 600;
}

.w-100 {
    width: 100%;
}


.bg-alt {
    background: #ededed;
}

/* Service Card Compact Button */
.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    width: fit-content;
    margin-top: 15px;
}

/* Dark CTA Variant of Service Card */
.service-card-dark {
    background: var(--primary-dark);
    color: #fff;
    border: none;
}

.service-card-dark h3 {
    color: #fff;
}

.service-card-dark p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.service-card-dark .icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-card-dark .icon svg {
    stroke: var(--accent);
}

.service-card-dark .icon svg.icon-shield-filled {
    fill: rgba(244, 171, 0, 0.35);
    stroke: var(--accent);
    stroke-width: 1.8;
}

.service-card-dark .btn-sm {
    width: 100%;
}

/* Paired CTA cards (equal width/height, e.g. Free Consultation + Request Support) */
.service-card-cta-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    min-width: 0;
}

.service-card-cta-pair > .service-card {
    height: 100%;
    min-height: 100%;
    /* Match previous single-column card footprint (was one cell in .grid-3) */
    padding: 32px 22px;
}

.service-card-cta-pair .service-card .icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
}

.service-card-cta-pair .service-card .icon svg {
    width: 26px;
    height: 26px;
}

.service-card-cta-pair .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card-cta-pair .service-card p {
    font-size: 13px;
    margin-bottom: 0;
}

.service-card-cta-pair--span-2 {
    grid-column: span 2;
}

/* Same total width as two columns in .grid-3 (not 50% of the row each) */
.service-card-cta-pair--span-full {
    grid-column: 1 / -1;
    width: 100%;
    max-width: calc((100% * 2 - 30px) / 3);
    margin-inline: 0;
    justify-self: start;
}

/* Service Card Typography for inner pages */
.service-card p {
    text-align: justify;
}

/* Contact Info Refinements */
.contact-item-premium {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
}

.contact-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.contact-item-premium .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-premium .icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.contact-item-premium h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item-premium p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.contact-item-premium .highlight {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.15rem;
    display: block;
    margin-top: 5px;
}

/* =============================================
   ATOMIC UTILITY CLASSES
============================================= */

/* Animation Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Display */
.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-grid {
    display: grid;
}

/* Flex Utilities */
.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

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

.align-start {
    align-items: flex-start;
}

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

.justify-between {
    justify-content: space-between;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-25 {
    gap: 25px;
}

/* Spacing - Margins */
.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mt-3 {
    margin-top: 15px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-auto {
    margin-top: auto;
}

/* Spacing - Padding */
.p-25 {
    padding: 25px;
}

.p-40 {
    padding: 40px;
}

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Typography */
.fs-sm {
    font-size: 0.85rem;
}

.fs-md {
    font-size: 0.9rem;
}

.fs-base {
    font-size: 0.95rem;
}

.fs-14 {
    font-size: 14px;
}

.fs-13 {
    font-size: 13px;
}

.fs-lg {
    font-size: 1.15rem;
}

.fs-xl {
    font-size: 1.25rem;
}

.fs-h3-sm {
    font-size: 1.05rem;
}

.fs-h3-md {
    font-size: 1.1rem;
}

.fs-h3-lg {
    font-size: 1.25rem;
}

.fs-h3-xl {
    font-size: 1.5rem;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.lh-16 {
    line-height: 1.6;
}

.uppercase {
    text-transform: uppercase;
}

.color-white {
    color: #fff;
}

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

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

.color-primary-dark {
    color: var(--primary-dark);
}

.color-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

/* Width */
.w-fit {
    width: fit-content;
}

/* Borders */
.border-0 {
    border: none;
}

.border-light {
    border: 1px solid var(--border);
}

.border-bottom-accent {
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

/* Border Radius */
.radius-lg {
    border-radius: var(--radius-lg);
}

.radius-md {
    border-radius: var(--radius-md);
}

.radius-sm {
    border-radius: var(--radius-sm);
}

/* Shadows */
.shadow-hover {
    box-shadow: var(--shadow-hover);
}

/* Backgrounds */
.bg-white {
    background: #fff;
}

.bg-transparent-10 {
    background: rgba(255, 255, 255, 0.1);
}

/* Images */
.img-cover {
    object-fit: cover;
}

.img-full {
    width: 100%;
    height: auto;
}

.img-ratio-4-5 {
    aspect-ratio: 4/5;
}

/* Position */
.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.z-2 {
    z-index: 2;
}

/* =============================================
   COMPONENT CLASSES
============================================= */

/* Process/Step Card - centered variant of service-card */
.service-card--step {
    text-align: center;
    padding: 40px 30px;
}

.service-card--step .icon {
    margin: 0 auto 20px;
}

.service-card--step h3 {
    margin-bottom: 15px;
}

.service-card--step p {
    margin: 0;
}

.service-card--step .icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Service Card with flex-col for stretching */
.service-card--flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card--flex .mt-auto {
    margin-top: auto;
}

/* Service listing cards: CTAs (Learn More / Read More) bottom-left, aligned across grids */
.service-card--listing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.service-card--listing > .btn {
    margin-top: auto;
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
}

/* Service Card paragraph styles for listing cards */
.service-card--listing p {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-body);
}

/* Hero ghost button */
.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Button full width */
.btn-full {
    width: 100%;
}

/* Button xs */
.btn-xs {
    padding: 8px 15px;
    font-size: 13px;
}

/* Why Choose Section Image */
.why-choose-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    width: 100%;
}

.why-choose-img--tall {
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* Badge Float Component */
.badge-float {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    border-left: 5px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.badge-float svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
}

.badge-float__number {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.badge-float__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Why-Section Lead Paragraph */
.lead-lg {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.lead-service {
    font-size: 1.15rem;
    margin-bottom: 25px;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Stats Floating Variant (no negative margin) */
.stats-floating--inner {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Footer Find Us paragraph */
.footer-col .mb-20 {
    margin-bottom: 20px;
}

/* Grid gap variant */
.grid-2--tight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Contact Form */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-subtle);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    resize: none;
    margin-bottom: 25px;
}

/* Check List (service-city pages) */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    flex-shrink: 0;
}

/* Service Detail Card (compact inner card) */
.service-card--compact {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--border);
}

.service-card--compact .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card--compact .icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.service-card--compact h4 {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.service-card--compact p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* State page card h4 variant */
.service-card--compact h4.fs-h3-sm {
    font-size: 1.05rem;
}

/* CTA card button */
.cta-card .btn {
    width: 100%;
    margin-top: 15px;
}

/* Align Items Center for grid-2 */
.align-items-center {
    align-items: center;
}

/* State card heading with border */
.heading-underline {
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
    display: inline-block;
    color: var(--primary-dark);
}

/* Service Card Dark - centered variant */
.service-card-dark--centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Image & Shadow Utilities */
.img-tall {
    object-fit: cover;
    height: 100%;
    min-height: 500px;
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: 2rem;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.shadow-premium {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Asymmetrical Grids */
.grid-2-3 {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
}

.grid-3-2 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

/* Updated Decorative Image Container */
.img-decorative {
    position: relative;
    z-index: 1;
}

.img-decorative img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.img-decorative::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--primary-light);
    opacity: 0.1;
    z-index: -1;
    border-radius: var(--radius-lg);
}

@media(max-width: 992px) {

    .grid-2-3,
    .grid-3-2 {
        grid-template-columns: 1fr;
    }

    .order-mobile-1 {
        order: -1;
    }

    .order-mobile-2 {
        order: 2;
    }

    .img-tall {
        height: auto;
        min-height: 0;
    }
}

/* Spacing & Layout Utilities */
.p-40 {
    padding: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.max-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background: #fff;
}

/* State Overview Premium Components */
.state-lead-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--lh-relaxed, 1.8);
    font-size: 1.1rem;
    color: var(--text-body);
}

.state-supporting-text {
    font-size: 1.05rem;
    opacity: 0.9;
    border-left: 4px solid var(--primary-light);
    padding-left: 25px;
    color: var(--text-body);
}

.cta-box {
    padding: var(--spacing-lg, 40px);
    border-radius: var(--radius-lg);
    background: var(--bg-subtle);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.cta-box h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Premium Checklist Variant */
.check-list--premium li {
    background: #fff;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    margin-bottom: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list--premium li:hover {
    transform: translateX(10px);
    border-color: var(--primary-light);
}

.check-list--premium svg {
    width: 20px;
    height: 20px;
    color: var(--accent) !important;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    flex-shrink: 0;
}

@media(max-width: 768px) {
    .p-40 {
        padding: 25px;
    }

    .badge-float {
        display: none !important;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .grid-2--tight {
        grid-template-columns: 1fr;
    }

    .state-lead-text {
        font-size: 1rem;
    }

    .state-supporting-text {
        padding-left: 15px;
        font-size: 1rem;
    }

    .cta-box {
        padding: 25px;
    }
}