/* Shared styles for Concrete Cutting site */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a365d;
    --secondary: #2d3748;
    --accent: #ed8936;
    --light: #f7fafc;
    --dark: #1a202c;
    --gray: #718096;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 6px 0;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* Focus Styles for Keyboard Navigation */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    padding-top: 70px;
}

/* Navigation */
/* === Navigation === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.logo {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Invisible bridge so hover doesn't break between nav link and mega-dropdown */
.has-dropdown::after {
    content: '';
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: 20px;
    z-index: 998;
}

.nav-links > li > a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.02em;
    border-radius: 6px;
}

.nav-links > li > a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav-links > li > a.active {
    color: var(--accent);
    background: rgba(255,255,255,0.1);
    border-bottom: 2px solid var(--accent);
}

/* Chevron */
.has-dropdown > a .chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
    margin-top: 2px;
    opacity: 0.7;
}

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

/* === Mega Dropdown === */
.mega-dropdown {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: white;
    min-width: 520px;
    padding: 1.75rem 2rem;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 999;
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    z-index: 1001;
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mega-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.mega-col a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.4rem 0.75rem;
    border-radius: 5px;
    transition: background 0.15s, color 0.15s;
}

.mega-col a:hover {
    background: #f0f0f0;
    color: var(--accent);
}

/* Contact link */
.nav-contact {
    color: white !important;
}

/* Phone button */
.nav-phone {
    color: white !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
    background: var(--accent) !important;
    border-radius: 6px !important;
    margin-left: 0.5rem;
    transition: background 0.2s, transform 0.15s !important;
}

.nav-phone:hover {
    background: #d44a0c !important;
    transform: scale(1.05);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(rgba(26, 54, 93, 0.75), rgba(26, 54, 93, 0.85)),
                url('images/hero.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
}

.hero-page {
    min-height: 50vh;
    background: linear-gradient(rgba(26, 54, 93, 0.75), rgba(26, 54, 93, 0.85)),
                url('images/hero.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.4);
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

/* Services Grid */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 1.5rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.service-card .card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.service-card .card-link:hover {
    text-decoration: underline;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.about-block img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-block h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.about-block p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Equipment Section */
.equipment {
    background: var(--secondary);
    color: white;
}

.equipment .section-title {
    color: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.equipment-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.equipment-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

/* Equipment icons - SVG via CSS, aria-hidden for screen readers */
.equipment-icon { font-size: 1.8rem; }
.icon-saw::before { content: "🔧"; }
.icon-wall::before { content: "🧱"; }
.icon-hand::before { content: "🪚"; }
.icon-core::before { content: "⚙️"; }
.icon-dust::before { content: "🌀"; }
.icon-demo::before { content: "🏗️"; }

.equipment-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.equipment-spec {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.equipment-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 0;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* Service Area Map */
.service-area {
    background: white;
    text-align: center;
}

.service-area-text {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Trust Section */
.trust {
    background: var(--light);
    text-align: center;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.trust-badge {
    padding: 1.5rem;
}

.trust-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.trust-badge-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent);
}

.testimonial-stars {
    color: #f6ad55;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact */
.contact {
    background: var(--primary);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent);
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 5rem 2rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Service Page Content */
.service-content {
    padding: 4rem 2rem;
}

.service-content .container {
    max-width: 900px;
}

.service-content h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-content h2:first-child {
    margin-top: 0;
}

.service-content p {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--secondary);
}

.service-content ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.service-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-banner {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.cta-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-banner a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

/* Breadcrumbs */
/* Page Breadcrumb - sits below nav, stays behind dropdown */
.page-breadcrumb {
    background: #edf2f7;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--secondary);
    border-bottom: 2px solid var(--accent);
}

.page-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 0.5rem;
    color: #cbd5e0;
}

.breadcrumb-cat {
    color: var(--gray);
}

.breadcrumb-current {
    color: var(--primary);
    font-weight: 700;
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }
    
    body {
        padding-bottom: 50px;
    }
}

/* Back to Top Button */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.3s;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.back-to-top.visible {
    display: flex;
}

@media (min-width: 769px) {
    .back-to-top {
        bottom: 20px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.25s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.3s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }
.fade-in-stagger.visible > *:nth-child(7) { transition-delay: 0.4s; }
.fade-in-stagger.visible > *:nth-child(8) { transition-delay: 0.45s; }

.fade-in-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}


/* Related Services Section */
.related-services {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.related-services h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-grid a {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--light);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.related-grid a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* Footer */
footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0f1724 100%);
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.footer-col a, .footer-col p {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-page h1 {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .nav-container {
        height: 60px;
        padding: 0 1rem;
    }

    .logo-text {
        display: none;
    }

    .logo img {
        height: 36px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 0.5rem 0;
        gap: 0;
        box-shadow: 0 12px 24px rgba(0,0,0,0.3);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
        animation: slideDown 0.25s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links > li > a {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        width: 100%;
        justify-content: space-between;
    }

    .has-dropdown > a {
        cursor: pointer;
    }

    .has-dropdown > a .chevron {
        margin-left: auto;
        transition: transform 0.25s ease;
    }

    .has-dropdown.open > a .chevron {
        transform: rotate(180deg);
    }

    /* Mobile mega dropdown */
    .mega-dropdown {
        position: static;
        transform: none;
        background: rgba(0,0,0,0.15);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        box-shadow: none;
    }

    .mega-dropdown::before {
        display: none;
    }

    .has-dropdown.open .mega-dropdown {
        display: grid;
    }

    .mega-col {
        padding: 0.5rem 1rem 0.5rem 2rem;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .mega-col h4 {
        color: var(--accent);
        border-bottom-color: var(--accent);
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .mega-col a {
        color: rgba(255,255,255,0.8);
        padding: 0.55rem 0.75rem;
        font-size: 0.92rem;
        border-radius: 4px;
    }

    .mega-col a:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }

    .nav-phone {
        margin: 0.75rem 1.5rem !important;
        text-align: center;
        justify-content: center;
    }

    /* Mobile body padding matches mobile nav height */
    body {
        padding-top: 60px;
    }
}

/* === Emergency Banner === */
.emergency-banner {
    background: #c53030;
    color: white;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.emergency-banner a {
    color: white;
    text-decoration: underline;
}

/* === Before/After Slider === */
.before-after {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
}
.before-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.before-after .after-img {
    clip-path: inset(0 50% 0 0);
}
.before-after .slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}
.before-after .slider-handle::after {
    content: '⟨ ⟩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.before-after .label {
    position: absolute;
    top: 12px;
    padding: 4px 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 5;
}
.before-after .label-before { left: 12px; }
.before-after .label-after { right: 12px; }

/* === Case Studies === */
.case-studies {
    background: var(--light);
    padding: 5rem 2rem;
}
.case-study {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.case-study-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}
.case-study-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.case-study-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.case-study-content .case-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}
.case-study-content p {
    color: var(--gray);
    margin-bottom: 0.75rem;
}
.case-study-content ul {
    margin: 0.5rem 0 0 1.5rem;
    color: var(--secondary);
}
.case-study-content ul li {
    margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
    .case-study {
        grid-template-columns: 1fr;
    }
    .case-study-img {
        min-height: 200px;
    }
}

/* === License/Insurance Badges === */
.badges-section {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
}
.badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.badge-item {
    padding: 1.5rem 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    min-width: 200px;
}
.badge-item .badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.badge-item h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.badge-item p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* === Google Business Profile Link === */
.gbp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
}
.gbp-link:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

/* === SMS/Text Link === */
.sms-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
}
.sms-link:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* === Equipment Photos === */
.equipment-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.equipment-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.equipment-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.equipment-photo:hover img {
    transform: scale(1.05);
}
.equipment-photo-caption {
    padding: 0.75rem 1rem;
    background: white;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

/* === Service Area Cities === */
.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
}
.cities-grid a {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--light);
    color: var(--primary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}
.cities-grid a:hover {
    background: var(--accent);
    color: white;
}

/* === Testimonial Improvements === */
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.testimonial-name {
    font-weight: 700;
    color: var(--secondary);
}
.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
}

/* === Contact Grid with SMS === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* === Analytics placeholder (no visual impact) === */
.analytics-placeholder {
    display: none;
}

/* === Process / How-It-Works Section === */
.process {
    background: white;
    padding: 5rem 2rem;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }
.process-step:nth-child(5) { transition-delay: 0.4s; }
.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
    border: 4px solid white;
}
.process-step h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 0.5rem;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    .process-steps::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, var(--accent), var(--primary));
    }
    .process-step {
        text-align: left;
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        padding-left: 0;
    }
    .process-step-number {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .process-step h3 {
        margin-bottom: 0.25rem;
    }
}

/* === Service Comparison Table === */
.comparison {
    background: var(--light);
    padding: 5rem 2rem;
}
.comparison-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.comparison-table thead {
    background: var(--primary);
    color: white;
}
.comparison-table th {
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    white-space: nowrap;
}
.comparison-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: var(--secondary);
    vertical-align: middle;
}
.comparison-table tbody tr:hover {
    background: #f7fafc;
}
.comparison-table .service-name {
    font-weight: 700;
    color: var(--primary);
}
.comparison-table .service-name a {
    color: inherit;
    text-decoration: none;
}
.comparison-table .service-name a:hover {
    color: var(--accent);
}
.comparison-table .check {
    color: #38a169;
    font-weight: 700;
}
.comparison-table .cross {
    color: #cbd5e0;
}

/* Comparison row animation */
.comparison-row {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.comparison-row.visible {
    opacity: 1;
    transform: translateX(0);
}

/* === Project Timeline Estimator === */
.estimator {
    background: var(--secondary);
    color: white;
    padding: 5rem 2rem;
}
.estimator .section-title {
    color: white;
}
.estimator-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.estimator-form .form-group {
    margin-bottom: 1.5rem;
}
.estimator-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
.estimator-form select,
.estimator-form input[type="number"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: border-color 0.3s;
}
.estimator-form select:focus,
.estimator-form input[type="number"]:focus {
    outline: none;
    border-color: var(--accent);
}
.estimator-form select option {
    background: var(--secondary);
    color: white;
}
.estimator-form input[type="number"]::-webkit-inner-spin-button {
    opacity: 1;
}
.est-placeholder {
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-style: italic;
    padding: 1rem;
}
.est-result-box {
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}
.est-result-box p {
    margin-bottom: 0.5rem;
    color: white;
}
.est-result-box p:last-child {
    margin-bottom: 0;
}
.est-note {
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.6) !important;
    font-style: italic;
}
.est-note a {
    color: var(--accent);
    text-decoration: underline;
}

/* === Video Section === */
.video-section {
    background: white;
    padding: 5rem 2rem;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.video-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
}
.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark);
    cursor: pointer;
    overflow: hidden;
}
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.video-thumbnail:hover img {
    transform: scale(1.05);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(237, 137, 54, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.video-play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}
.video-thumbnail:hover .video-play-btn {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}
.video-embed {
    width: 100%;
    aspect-ratio: 16/9;
}
.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-card-body {
    padding: 1.25rem;
}
.video-card-body h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.video-card-body p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* === FAQ Schema (hidden, no visual impact) === */
.faq-schema { display: none; }

/* === Before/After Slider - Enhanced === */
.before-after-section {
    background: var(--light);
    padding: 5rem 2rem;
}
.before-after-title {
    text-align: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 500px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
}