/* ===========================================================
   DESIGN SYSTEM — Dark Navy Structured Layout
   =========================================================== */
:root {
    --navy-dark: #0a0a0a;
    --navy-mid: #171717;
    --navy-light: #262626;
    --silver: #d4d4d4;
    --silver-dark: #a3a3a3;
    --silver-gradient: linear-gradient(135deg, #f5f5f5, #d4d4d4);
    --gold: #d0a030;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --muted: #737373;
    --border-color: rgba(255,255,255,0.08);
    --radius: 8px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: var(--navy-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; }
a { color: var(--silver); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--gold); }

/* Global Image Skeleton Loader */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    color: transparent; /* Hides alt text while loading */
    background: linear-gradient(90deg, rgba(10,10,10,0.8) 25%, rgba(51,51,51,0.8) 50%, rgba(10,10,10,0.8) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* ===========================================================
   NAVIGATION — Rich Header
   =========================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--navy-mid), var(--navy-dark));
    border-bottom: none;
}
.navbar::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -30px;
    height: 30px;
    background: linear-gradient(to bottom, var(--navy-dark), transparent);
    pointer-events: none;
    z-index: -1;
}


.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    text-transform: uppercase;
    text-decoration: none;
}
.logo-text:hover { color: var(--white); }
.logo-text span { 
    color: var(--gold); 
    font-weight: 400; 
    letter-spacing: 0px;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--gold); }
.nav-links a.active {
    color: var(--gold);
}

.nav-phone-inline {
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-phone-inline:hover {
    color: var(--silver);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 220px;
    background: var(--navy-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
@media (min-width: 769px) {
    .nav-links > li:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.nav-links > li.dropdown-open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a:not(.btn) {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 400;
}
.dropdown-menu a:not(.btn):hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--gold);
}

.nav-cta-btn,
.nav-links > li > button.nav-cta-btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-cta-btn:hover,
.nav-links > li > button.nav-cta-btn:hover { 
    background: var(--silver);
    color: var(--white);
    transform: translateY(-2px); 
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none; border: none;
    flex-direction: column; gap: 5px;
    z-index: 101;
}
.hamburger span {
    display: block; width: 25px; height: 3px;
    background: var(--white); border-radius: 3px;
    transition: all 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===========================================================
   LAYOUT
   =========================================================== */
.main-content {
    padding-top: 65px;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===========================================================
   HERO — Full Width Background
   =========================================================== */
.hero {
    position: relative;
    padding: 6rem 5%;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--navy-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0) 250px),
                linear-gradient(to right, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.1) 100%);
    z-index: 1;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.hero-text p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-form {
    background: var(--navy-mid);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}
.hero-form h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.hero-form .form-sub {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.hero-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--navy-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--white);
    transition: border 0.3s;
}
.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #94a3b8;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.hero-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.65rem auto;
    padding-right: 2.5rem;
}
.hero-form button[type="submit"] {
    grid-column: 1 / -1;
    padding: 1rem;
    margin-top: 1rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.hero-form button[type="submit"]:hover {
    background: var(--silver);
    color: var(--white);
}

/* ===========================================================
   SECTIONS
   =========================================================== */
.section {
    padding: 5rem 5%;
}
.section-mid { 
    background: var(--navy-mid); 
    box-shadow: inset 0 150px 150px -50px var(--navy-dark), inset 0 -150px 150px -50px var(--navy-dark);
}
.section-dark { background: var(--navy-dark); }


.section-header {
    margin-bottom: 3rem;
}
.section-header .label {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.section-header p {
    color: var(--light-gray);
    font-size: 1.05rem;
    max-width: 600px;
}
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ===========================================================
   ABOUT INTRO — Split Layout (text left, image right)
   =========================================================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy-mid);
}
.about-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.about-text p {
    color: var(--light-gray);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.about-image {
    position: relative;
    min-height: 400px;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    text-align: center;
}

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

.btn-gold {
    background: linear-gradient(135deg, #f0c55f 0%, #d0a030 45%, #a67c00 100%);
    background-size: 200% auto;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(208, 160, 48, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    border: none;
}
.btn-gold:hover {
    background-position: right center;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 160, 48, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
}

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


.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-gold:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy-dark) !important;
}
.sleek-service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sleek-service-link:last-child {
    border-bottom: none;
}
.sleek-service-link:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}
.sleek-service-link span {
    color: var(--silver);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
.sleek-service-link:hover span {
    opacity: 1;
    transform: translateX(0);
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===========================================================
   WHY CHOOSE US — Icon Badges
   =========================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Premium Standard Cards */
.premium-card {
    background: var(--navy-mid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* Card Contrast based on Section */
.section-mid .premium-card {
    background: var(--navy-dark);
}
.premium-card:hover {
}
.premium-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.premium-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.premium-card .watermark-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    z-index: -1;
    transition: transform 0.4s ease;
}
.premium-card:hover .watermark-number {
    transform: scale(1.05) translate(-5px, 5px);
    color: rgba(212, 175, 55, 0.08);
}

@media (min-width: 992px) {
    .features-grid.staggered {
        align-items: flex-start;
    }
    .features-grid.staggered .premium-card:nth-child(even) {
        transform: translateY(3rem);
    }
}

/* ===========================================================
   SERVICE CARDS — Image Grid (3x2)
   =========================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}
.service-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    cursor: pointer;
    border-radius: var(--radius-lg);
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.5rem;
    transition: background 0.3s;
}
.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 100%);
}
.service-card-overlay h3 {
    font-size: 1.3rem;
    border-bottom: 3px solid var(--silver);
    padding-bottom: 0.5rem;
    display: inline-block;
}
.service-card-overlay p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.service-card:hover .service-card-overlay p {
    max-height: 100px;
}

/* ===========================================================
   EMERGENCY CTA — Full-width Split
   =========================================================== */
.emergency-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy-mid);
}
.emergency-text {
    padding: 4rem 3rem;
}
.emergency-text .label {
    color: var(--silver);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.emergency-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}
.emergency-text p {
    color: var(--light-gray);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.emergency-image {
    position: relative;
}
.emergency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================================
   REVIEWS — Guarantee Left + Cards Right
   =========================================================== */
.reviews-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}
.reviews-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}
.reviews-intro p {
    color: var(--light-gray);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.reviews-intro .btn-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}
.reviews-intro .btn-group .btn {
    width: 100%;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}
.reviews-intro .btn-group > .hide-on-mobile {
    grid-column: 1 / -1;
    margin-top: 0 !important;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: var(--navy-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.sleek-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--silver);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}
.review-avatar.red { background: #ef4444; }
.review-avatar.blue { background: #3b82f6; }
.review-avatar.green { background: #22c55e; }
.review-avatar.purple { background: #a855f7; }
.review-avatar.orange { background: #f97316; }
.review-avatar.pink { background: #ec4899; }
.review-avatar.teal { background: #14b8a6; }
.review-avatar.indigo { background: #6366f1; }
.review-avatar.yellow { background: #eab308; }
.review-avatar.gold { background: var(--silver); color: var(--navy-dark); }
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-stars { color: #fbbf24; font-size: 0.8rem; letter-spacing: 1px; }
.review-text {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================================================
   FAQ — Dark Accordion
   =========================================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.accordion-item {
    border: 1px solid var(--border-color);
    background: var(--navy-dark);
    overflow: hidden;
}
.accordion-item:first-child { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.accordion-item:last-child { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
.accordion-item + .accordion-item { border-top: none; }

.accordion-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    transition: background 0.3s;
}
.accordion-header:hover { background: rgba(255,255,255,0.03); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.5rem;
    color: var(--light-gray);
}
.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1rem 1.5rem 1.25rem;
}
.accordion-icon {
    transition: transform 0.4s ease;
    color: var(--silver);
}
.accordion-item.active .accordion-icon { transform: rotate(180deg); }

/* ===========================================================
   FOOTER — Rich Multi-Column
   =========================================================== */
footer {
    background: linear-gradient(to bottom, var(--navy-mid), #040405);
    border-top: none;
    padding: 4rem 5% 2rem;
}
.footer::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0; right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--navy-mid));
    pointer-events: none;
    z-index: -1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto 3rem;
}
.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}
.footer-col p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
    color: var(--muted);
    font-size: 0.9rem;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.85rem;
    max-width: 1280px;
    margin: 0 auto;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    color: var(--silver);
}
.footer-legal a:hover {
    color: var(--gold);
}

/* Social Links */
.nav-social {
    display: flex;
    gap: 0.5rem;
}
.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-gray);
    transition: background 0.3s ease, color 0.3s ease;
}
.nav-social a:hover {
    background: var(--gold);
    color: var(--white);
}

/* ===========================================================
   MODAL
   =========================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 500;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--navy-mid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.modal-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
    background: none;
    border: none;
}
.modal-close:hover { color: var(--white); }
.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.modal-content .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--navy-dark);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}
.modal-content input::placeholder,
.modal-content textarea::placeholder { color: var(--muted); }
.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus { outline: none; border-color: var(--gold); }
.modal-content input,
.modal-content select {
    height: 50px;
}
.modal-content select { 
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.8rem auto;
    padding-right: 2.5rem;
}
.modal-content select option { background: var(--navy-mid); color: var(--white); }

/* ===========================================================
   STATS BAR
   =========================================================== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--silver);
    line-height: 1;
}
.stat-item .stat-label {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ===========================================================
   UTILITIES
   =========================================================== */
.text-gold { color: var(--gold); }

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

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

/* ===========================================================
   ANIMATIONS
   =========================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.8s ease-out forwards; }

/* ===========================================================
   INFINITE MARQUEE
   =========================================================== */
.marquee-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    position: relative;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-container:active {
    cursor: grabbing;
}
.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}
.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    color: var(--light-gray);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.marquee-container.is-dragging .marquee-item {
    pointer-events: none;
}


.desktop-hidden {
    display: none;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { min-height: 300px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-split { grid-template-columns: 1fr; }
    .about-image { min-height: 300px; }
    .emergency-split { grid-template-columns: 1fr; }
    .reviews-split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-top { display: none; }
    .main-content { padding-top: 65px; }
    .desktop-only-arrow { display: none; }

    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--navy-mid);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a {
        padding: 1rem 0;
        width: 100%;
        justify-content: flex-start;
        display: block;
    }
    .nav-links > li > button.nav-cta-btn {
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        background: var(--gold);
        color: var(--white);
        border: none;
        display: block;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        display: none;
    }
    .nav-links > li.dropdown-open > .dropdown-menu { display: block; }

    .hero-form { padding: 1.5rem 1rem; margin: 0; }
    .hero-form .form-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Progressive Disclosure Utilities */
.show-more-btn {
    display: none;
}
.read-more-btn {
    display: none;
}

@media (max-width: 768px) {
    /* Global Layout Mobile Padding Optimization */
    .section { padding: 3rem 0 !important; }
    .hero { padding: 3rem 0 !important; min-height: auto; }
    .hero-inner { padding: 0 1rem; gap: 2rem; }
    .about-split, .emergency-split { gap: 2rem; }
    .about-text { padding: 2rem 1rem !important; }
    .emergency-text { padding: 2rem 0 !important; }
    .container { padding: 0 !important; }
    footer { padding: 3rem 1rem 2rem; }
    .footer-col { margin-bottom: 1rem; }
    .section-header { margin-bottom: 2rem !important; }

    /* Button Group Mobile Optimization */
    .btn-group {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem !important;
    }
    .btn-group .btn {
        width: 100% !important;
        padding: 0.85rem 0.25rem !important;
        font-size: 0.9rem;
        text-align: center;
        white-space: nowrap;
        margin: 0 !important;
    }
    .btn-group .btn[href*="maps.app.goo.gl"] {
        grid-column: 1 / -1;
        background: transparent;
        border: 2px solid var(--silver);
        color: var(--silver);
    }

    .show-more-btn {
        display: inline-block;
        margin-top: 0.5rem;
        margin-bottom: 2rem;
        background: none;
        border: none;
        color: var(--white);
        padding: 0;
        text-align: left;
        cursor: pointer;
        font-weight: 600;
        font-family: inherit;
        font-size: 1rem;
        transition: color 0.3s ease;
    }
    .show-more-btn:hover {
        background: none;
        color: var(--white);
    }
    .mobile-hidden {
        display: none !important;
    }
    .desktop-hidden {
        display: block !important;
    }
    /* Text truncate */
    .read-more-text .text-content {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .read-more-text.expanded .text-content {
        display: block;
        -webkit-line-clamp: unset;
    }
    .read-more-btn {
        display: inline-block;
        margin-top: 0.5rem;
        color: var(--silver);
        background: none;
        border: none;
        font-weight: 600;
        cursor: pointer;
        padding: 0;
        font-size: 1rem;
    }
}

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy-mid);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
    z-index: 10;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
@media (max-width: 1024px) {
    .gallery-grid { column-count: 2; }
}
@media (max-width: 640px) {
    .gallery-grid { column-count: 1; }
}

.hide-on-desktop { display: none !important; }
@media (max-width: 768px) {
    .hide-on-desktop { display: inline-flex !important; }
    button.hide-on-desktop { display: block !important; }
    .hide-on-mobile { display: none !important; }
}

/* ===========================================================
   LIGHTBOX MODAL
   =========================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2.5rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0,0,0,0.8);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ===========================================================
   SERVICE TEXT CARDS
   =========================================================== */
.service-text-card {
    position: relative;
    background: var(--navy-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-text-card:hover {
    transform: translateY(-5px);
    border-color: var(--silver);
}
.service-text-card h3 {
    font-size: 1.25rem;
    color: var(--silver);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.service-text-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.explore-link {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.explore-link::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
}
.explore-link:hover {
    color: var(--silver);
}
/* ===========================================================
   LEGAL PAGES
   =========================================================== */
.legal-card {
    background: var(--navy-mid);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 5px solid var(--silver);
    text-align: left;
}
.legal-card h2 {
    color: var(--white) !important;
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.25rem;
}
.legal-card h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
}
.legal-card h2:first-child {
    margin-top: 0;
}
.legal-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.legal-card p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .legal-card {
        padding: 2rem 1.5rem;
    }
    .legal-card h2 {
        font-size: 1.5rem;
    }
}

/* ===========================================================
   AREA DIRECTORY LIST (SERVICE AREAS)
   =========================================================== */
.area-directory {
    column-count: 3;
    column-gap: 3rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
}
.area-directory li {
    margin-bottom: 1.25rem;
    break-inside: avoid;
}
.area-directory a {
    position: relative;
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}
.area-directory a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--silver);
    transition: width 0.3s ease;
}
.area-directory a:hover {
    color: var(--white);
}
.area-directory a:hover::after {
    width: 100%;
}

@media (max-width: 900px) {
    .area-directory {
        column-count: 2;
        column-gap: 2rem;
    }
}
@media (max-width: 600px) {
    .area-directory {
        column-count: 1;
    }
}

/* ===========================================================
   IMAGE MARQUEE (GALLERY)
   =========================================================== */
.image-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.image-marquee-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
}

.image-marquee-track:hover {
}

.image-marquee-item {
    width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
}

.image-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.85);
}

.image-marquee-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.image-marquee-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.image-marquee-item:hover .image-marquee-overlay {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .image-marquee-item {
        width: 240px;
    }
}

/* ===========================================================
   AREA DIRECTORY LIST (SERVICE AREAS)
   =========================================================== */
.area-directory-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 1px solid var(--silver);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.pill-btn:hover {
    transform: translateY(-2px);
    background: var(--silver);
    color: var(--navy-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Services List Optimization */
@media (max-width: 768px) {
    .services-grid {
        gap: 1rem;
    }
    .service-text-card {
        padding: 1.25rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: var(--radius);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .service-text-card p {
        display: block !important;
        font-size: 0.95rem;
        color: var(--silver);
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    .service-text-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
        color: var(--white);
    }
    .service-text-card .explore-link {
        font-size: 0.95rem !important;
        color: var(--gold) !important;
        font-weight: 600;
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .service-text-card .explore-link::before,
    .service-text-card .explore-link::after {
        display: none !important;
    }
}

/* ===========================================================
   MOBILE COMPACT OPTIMIZATION
   =========================================================== */
@media (max-width: 768px) {
    /* Headings */
    .hero-text h1, h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    h2, .section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.75rem !important;
    }
    h3 {
        font-size: 1.3rem !important;
    }
    
    /* Text */
    .hero-text p {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
    }
    p {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn, .pill-btn {
        font-size: 1rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* Layout & Spacing */
    .section {
        padding: 3rem 5% !important;
    }
    .hero-inner {
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
        gap: 1.5rem !important;
    }
    .hero-text div[style*="margin-bottom: 2rem"] {
        margin-bottom: 1rem !important;
    }
    .hero-text div[style*="margin-bottom: 1.5rem"] {
        margin-bottom: 1rem !important;
    }
    .premium-card, .review-card, .service-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    /* Unrestrict Sides */
    .section {
        padding: 3rem 1rem !important;
    }
    .hero-inner {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .modal-content, .hero-form {
        padding: 1.25rem !important;
        width: 95% !important;
    }
}

/* Override map card padding for mobile */
@media (max-width: 768px) {
    .map-card {
        padding: 0 !important;
    }
    .map-card-text {
        padding: 1.5rem 1rem !important;
    }
}

/* Override pill button bulkiness on mobile */
@media (max-width: 768px) {
    .pill-btn {
        font-size: 0.85rem !important;
        padding: 0.45rem 0.8rem !important;
        letter-spacing: 0.5px !important;
    }
}

/* Put Quick Links and Services side-by-side on mobile footer */
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }
    .footer-col:nth-child(1),
    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
    }
}

/* Center section headers and text blocks on mobile */
@media (max-width: 768px) {
    .section-header, .emergency-text, .hero-text {
        text-align: center !important;
    }
    .emergency-text .btn-group, .hero-text .btn-group {
        justify-content: center !important;
    }
    /* Ensure all h2 titles in main content are centered on mobile */
    .main-content section h2 {
        text-align: center !important;
    }
}

/* Shrink logo and hamburger on mobile */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.3rem !important;
    }
    .hamburger {
        width: 28px !important;
        height: 20px !important;
    }
    .hamburger span {
        height: 2px !important;
        border-radius: 2px !important;
    }
}
