:root {
    --navy: #0F172A;
    --slate: #334155;
    --cyan: #38BDF8;
    --blue: #0369A1;
    --bg: #F8FAFC;
    --line: #E2E8F0;
    --text: #020617;
    --muted: #64748B;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.hidden {
    display: none !important;
}


/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-nav {
    max-width: 1180px;
    height: 76px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.site-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 18px;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    font-weight: 700;
    color: var(--slate);
    padding: 26px 0;
}

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


/* Buttons */
.phone-button,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cyan);
    color: #001827 !important;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
    background: #0ea5e9; /* slightly deeper cyan */
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(56, 189, 248, 0.35);
}

.phone-button svg,
.btn-primary svg {
    width: 18px;
    height: 18px;
}

.phone-button:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff !important;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
}

.btn-light:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.btn-primary,
.btn-secondary,
.btn-light,
.phone-button {
    transition: all 0.25s ease;
}

.btn-primary:active,
.btn-secondary:active,
.btn-light:active {
    transform: translateY(0);
    box-shadow: none;
}


/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    left: -28px;
    top: 64px;
    display: none;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
    border-radius: 22px;
    padding: 24px;
    min-width: 560px;
}

.nav-dropdown:hover .dropdown-panel {
    display: grid;
}

.dropdown-panel strong {
    display: block;
    color: var(--navy);
    font-family: 'Aldrich', sans-serif;
    margin-bottom: 12px;
}

.dropdown-panel a {
    display: block;
    color: var(--slate);
    padding: 7px 0;
}

.dropdown-panel a:hover {
    color: var(--blue);
}


/* Mobile Navigation */
.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
}

.mobile-menu {
    padding: 12px 24px 24px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    color: var(--slate);
    font-weight: 700;
}

.mobile-call {
    color: var(--blue) !important;
}


/* Hero */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(15, 23, 42, 0.92),
        rgba(15, 23, 42, 0.72),
        rgba(3, 105, 161, 0.55)
    );
    z-index: 1;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: auto;
    padding: 150px 24px 90px;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--cyan);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 74px);
    line-height: 0.98;
    margin: 0 0 22px;
    max-width: 880px;
}

.hero p {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    color: #dbeafe;
    max-width: 760px;
}

.hero-actions,
.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 14px;
}


/* Sections */
.section {
    padding: 84px 24px;
}

.section.alt {
    background: #fff;
}

.wrap {
    max-width: 1180px;
    margin: auto;
}

.section-header {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section h2 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    margin: 0 0 16px;
    color: var(--navy);
}

.section h3 {
    font-size: 24px;
    margin: 0 0 12px;
    color: var(--navy);
}

.section p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 18px;
}

.service-area-content .btn-light {
    margin-top: 16px;
}


/* Grid */
.grid {
    display: grid;
    gap: 24px;
}

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

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


/* Cards */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}

.card-body {
    padding: 26px;
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    background: #dbeafe;
}

.card p {
    font-size: 16px;
}

.learn {
    color: var(--blue);
    font-weight: 900;
}


/* Trust Band */
.trust-band {
    background: var(--navy);
    color: #fff;
}

.trust-band h2,
.trust-band h3 {
    color: #fff;
}

.trust-band p {
    color: #cbd5e1;
}


/* Feature */
.feature{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.feature-img {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
}

.feature-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}


/* Content Pages */
.content {
/*    max-width: 900px;*/
}

.content h1 {
    font-size: clamp(40px, 6vw, 54px);
    line-height: 1;
    margin: 0 0 18px;
    color: var(--navy);
}

.content h2 {
    font-size: 34px;
    margin: 46px 0 14px;
}

.content h3 {
    font-size: 24px;
    margin: 28px 0 8px;
}

.content p,
.content li {
    font-size: 18px;
    line-height: 1.75;
    color: var(--slate);
}

.content ul {
    padding-left: 22px;
    list-style-type: disc;
}

.content hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 42px 0;
}


/* Page Hero */
.page-hero {
    padding: 150px 24px 70px;
    background: linear-gradient(135deg, var(--navy), #075985);
    color: #fff;
}

.page-hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 60px);
    line-height: 1;
    margin: 0 0 18px;
}

.page-hero p {
    font-size: 20px;
    line-height: 1.65;
    color: #dbeafe;
}

.page-hero img {
    border-radius: 28px;
    height: 420px;
    width: 100%;
    object-fit: cover;
    background: #0f172a;
}


/* CTA */
.cta {
    background: linear-gradient(135deg, var(--navy), #075985);
    color: #fff;
    border-radius: 34px;
    padding: 44px;
}

.cta h2 {
    color: #fff;
}

.cta p {
    color: #dbeafe;
}


/* Map Placeholder */
.map-placeholder {
    min-height: 360px;
    border-radius: 28px;
    background: linear-gradient(135deg, #dbeafe, #f8fafc);
    background-image: url(/assets/img/socal-service-area-map.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--slate);
    padding: 30px;
}


/* Reviews */
.reviews-note {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 24px;
    padding: 28px;
}

.reviews-note p{
	color: var(--text);
}


/* Footer */
.site-footer {
    background: var(--navy);
    color: #fff;
    padding: 64px 24px 0;
}

.footer-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-top: 0;
}

.site-footer p,
.site-footer a {
    display: block;
    color: #cbd5e1;
    line-height: 1.7;
}

.site-footer a:hover {
    color: #fff;
}

.social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.footer-bottom {
    max-width: 1180px;
    margin: 46px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0;
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}


/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 15px;
    font: inherit;
}

.form-field label {
    font-weight: 800;
    color: var(--navy);
}


/* Responsive */
@media (max-width: 900px) {
    .desktop-nav,
    .phone-button {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .site-nav {
        height: 68px;
    }

    .logo-text {
        display: none;
    }

    .grid-3,
    .grid-2,
    .feature,
    .custom-grid,
    .page-hero .wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 120px;
    }

    .page-hero {
        padding-top: 110px;
    }

    .page-hero img {
        height: 280px;
    }

    .section {
        padding: 58px 20px;
    }

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


/* Animation helpers */
.js-animate-up,
.js-animate-left,
.js-animate-right,
.js-animate-fade,
.js-animate-item {
    opacity: 0;
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.js-animate-up,
.js-animate-item {
    transform: translateY(28px);
}

.js-animate-left {
    transform: translateX(-34px);
}

.js-animate-right {
    transform: translateX(34px);
}

.js-animate-fade {
    transform: scale(1.03);
}

.js-animate-up.is-visible,
.js-animate-left.is-visible,
.js-animate-right.is-visible,
.js-animate-fade.is-visible,
.js-animate-item.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .js-animate-up,
    .js-animate-left,
    .js-animate-right,
    .js-animate-fade,
    .js-animate-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}