/* ===========================================================
   DESIGN SYSTEM — Dark Navy Structured Layout
   =========================================================== */
:root {
    --navy-dark: #0a1628;
    --navy-mid: #0f2145;
    --navy-light: #162d5a;
    --cyan: #00d4ff;
    --cyan-dark: #0284c7;
    --cyan-gradient: linear-gradient(135deg, #00d4ff, #0284c7);
    --white: #ffffff;
    --light-gray: #cbd5e1;
    --muted: #94a3b8;
    --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(--cyan); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #fff; }

/* 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,22,40,0.8) 25%, rgba(20,40,70,0.8) 50%, rgba(10,22,40,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: var(--navy-dark);
    border-bottom: 1px solid var(--border-color);
}


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

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.logo-text:hover { color: var(--white); }
.logo-text span { color: var(--cyan); }

.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(--cyan); }
.nav-links a.active {
    color: var(--cyan);
}

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

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

/* 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 {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 400;
}
.dropdown-menu a:hover {
    background: rgba(0,212,255,0.1);
    color: var(--cyan);
}

.nav-cta-btn,
.nav-links > li > button.nav-cta-btn {
    background: var(--cyan);
    color: var(--navy-dark);
    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 { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(0,212,255,0.3); 
    color: var(--navy-dark);
}

.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;
}

/* ===========================================================
   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 right, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.7) 50%, rgba(10,22,40,0.3) 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(--cyan);
}
.hero-form .full-width { grid-column: 1 / -1; }
.hero-form button[type="submit"] {
    grid-column: 1 / -1;
    padding: 1rem;
    background: var(--cyan);
    color: var(--navy-dark);
    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(--navy-mid);
}

/* ===========================================================
   SECTIONS
   =========================================================== */
.section {
    padding: 5rem 5%;
}
.section-dark { background: var(--navy-dark); }
.section-mid { background: var(--navy-mid); }


.section-header {
    margin-bottom: 3rem;
}
.section-header .label {
    color: var(--cyan);
    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-cyan {
    background: var(--cyan);
    color: var(--navy-dark);
}
.btn-cyan:hover {
    background: #fff;
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,212,255,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}
.btn-outline:hover {
    background: var(--cyan);
    color: var(--navy-dark);
}
.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(--cyan);
    padding-left: 0.5rem;
}
.sleek-service-link span {
    color: var(--cyan);
    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;
}
.feature-card {
    background: var(--navy-mid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Premium Glowing Cards */
.glow-card {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}
.glow-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 212, 255, 0.15), transparent 60%);
    z-index: -1;
    transition: all 0.4s ease;
}
.glow-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}
.glow-card:hover::before {
    background: radial-gradient(circle at top left, rgba(0, 212, 255, 0.25), transparent 70%);
}
.glow-card .watermark-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: -1;
    transition: all 0.4s ease;
}
.glow-card:hover .watermark-number {
    color: rgba(0, 212, 255, 0.08);
    transform: scale(1.1) translate(-10px, 10px);
}
.glow-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}
.glow-card p {
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

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

/* ===========================================================
   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,22,40,0.85) 0%, rgba(10,22,40,0.2) 60%);
    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,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%);
}
.service-card-overlay h3 {
    font-size: 1.3rem;
    border-bottom: 3px solid var(--cyan);
    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(--cyan);
    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-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;
}
.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.cyan { background: var(--cyan); 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-mid);
    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: 0 1.5rem 1.25rem;
}
.accordion-icon {
    transition: transform 0.4s ease;
    color: var(--cyan);
}
.accordion-item.active .accordion-icon { transform: rotate(180deg); }

/* ===========================================================
   FOOTER — Rich Multi-Column
   =========================================================== */
footer {
    background: var(--navy-mid);
    border-top: 1px solid var(--border-color);
    padding: 4rem 5% 2rem;
}
.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(--cyan); }
.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(--muted);
}
.footer-legal a:hover {
    color: var(--cyan);
}

/* ===========================================================
   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(--cyan); }
.modal-content select { color: var(--muted); }
.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(--cyan);
    line-height: 1;
}
.stat-item .stat-label {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

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

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--cyan);
    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;
}
.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;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    user-select: none;
    -webkit-user-drag: none; /* Disable native image/link dragging */
}
.marquee-container.is-dragging .marquee-item {
    pointer-events: none;
}
@media (min-width: 769px) {
    .marquee-item:hover {
        transform: scale(1.05);
        z-index: 10;
        position: relative;
    }
}

.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(--cyan);
        color: var(--navy-dark);
        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 1rem !important; }
    .container { padding: 0 1rem !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;
        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;
    }

    .show-more-btn {
        display: inline-block;
        margin-top: 0.5rem;
        margin-bottom: 2rem;
        background: none;
        border: none;
        color: var(--cyan);
        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(--cyan);
        background: none;
        border: none;
        font-weight: 600;
        cursor: pointer;
        padding: 0;
        font-size: 1rem;
    }
}
