/* CSS Variables */
:root {
    --color-primary: #0066cc;
    --color-primary-dark: #0052a3;
    --color-primary-light: #3385d6;
    --color-secondary: #00a86b;
    --color-accent: #ff6b35;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-border: #e0e0e0;
    --color-success: #00a86b;
    --font-display: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
    -webkit-tap-highlight-color: rgba(0, 102, 204, 0.1);
    touch-action: manipulation;
}

a:hover {
    color: var(--color-primary-dark);
}

a:active {
    opacity: 0.8;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

/* Prevent images from causing horizontal scroll */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.logo-img {
    height: 70px;
    width: 70px;
    max-width: 70px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    clip-path: circle(50%);
    background: transparent;
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
        width: 55px;
        max-width: 55px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-start;
    margin-left: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Call Button */
.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #0066cc;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
    text-decoration: none;
}

.call-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.call-button:active {
    transform: translateY(0);
}

.call-icon {
    font-size: 1.25rem;
}

.call-text {
    display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
    z-index: 101;
    position: relative;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: white;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
}

.mobile-nav-logo {
    height: 55px;
    width: 55px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    clip-path: circle(50%);
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-nav-close span {
    position: absolute;
    width: 24px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
}

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

.mobile-nav-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-links a {
    display: block;
    padding: 1.25rem 1.5rem;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    background: var(--color-bg-light);
    color: var(--color-primary);
}

.mobile-nav-footer {
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px) + 80px);
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-light);
    position: sticky;
    bottom: 0;
    margin-top: auto;
}

.mobile-call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--color-success);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    width: 100%;
    min-height: 48px;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.mobile-call-button:hover,
.mobile-call-button:active {
    background: #008a57;
}

.mobile-call-button span {
    font-size: 1.25rem;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

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

/* Nav Actions Container - Removed, call button is now direct child of nav-container */

@media (max-width: 768px) {
    .logo {
        order: 1;
        flex: 0 0 auto;
        margin: 0;
        margin-right: auto;
    }
    
    .call-button {
        order: 2;
        padding: 0.625rem 1rem;
        margin-left: 0.5rem;
        /* Hide the text content and show "Call" instead */
        font-size: 0;
        position: relative;
    }
    
    .call-button::after {
        content: "Call";
        font-size: 0.875rem;
        font-weight: 700;
        display: inline-block;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 3;
        margin-left: 0.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 0.875rem 1rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .call-icon {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .call-button {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero.has-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.has-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 82, 163, 0.85) 100%);
    z-index: 1;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero.has-video::before {
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.75) 0%, rgba(0, 82, 163, 0.75) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    margin: 0.5rem;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.hero-cta.secondary {
    background: transparent;
    border: 2px solid white;
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

section:first-of-type {
    padding-top: 3rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

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

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
    position: relative;
}

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

.service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: transform var(--transition);
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

.service-card h3 {
    margin-top: 0;
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-card a {
    color: var(--color-primary);
    font-weight: 600;
}

/* City Grid */
/* Cities Carousel */
.cities-carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.cities-carousel-track {
    display: flex;
    gap: 0.75rem;
    width: fit-content;
    will-change: transform;
    animation: scroll-left 40s linear infinite;
}

.cities-carousel-container:hover .cities-carousel-track {
    animation-play-state: paused;
}

.city-link {
    display: block;
    flex-shrink: 0;
    width: calc((100% - 3rem) / 5);
    max-width: 220px;
    min-width: 200px;
    padding: 1rem;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: background var(--transition), border-color var(--transition);
}

.city-link:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.city-link:hover a {
    color: white;
}

.city-link a {
    color: var(--color-text);
    text-decoration: none;
    display: block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Legacy cities-grid support (if used elsewhere) */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
    padding: 2.5rem 2rem;
}

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

.faq-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
    min-height: 48px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

.faq-question:hover {
    background: var(--color-bg-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item.open .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
}

/* Footer */
.site-footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 2rem;
    background: var(--color-bg-light);
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: var(--color-text-light);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs span {
    color: var(--color-text-lighter);
    margin: 0 0.5rem;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text);
}

/* Responsive - Mobile First Enhancements */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    /* Typography */
    h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    h4 {
        font-size: 1.125rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Hero Section */
    .hero {
        padding: 4rem 1rem 2.5rem;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    }
    
    .hero.has-background {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero.has-video {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero.has-video .hero-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Sections */
    section {
        padding: 2rem 1rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card-image {
        height: 180px;
        margin-bottom: 0.875rem;
    }
    
    /* Cities Carousel - Tablet */
    .cities-carousel-container {
        mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    }
    
    .city-link {
        width: 200px;
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
    
    /* Legacy cities-grid support */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    
    /* Content Sections */
    .content-section {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .content-section h2 {
        font-size: 1.375rem;
        margin-top: 1.5rem;
    }
    
    .content-section ul {
        margin-left: 1.5rem;
        padding-right: 0.5rem;
    }
    
    /* Buttons */
    .btn {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        min-height: 48px; /* Touch target size */
    }
    
    .btn-secondary {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        min-height: 48px;
    }
    
    /* Breadcrumbs */
    .breadcrumbs {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .breadcrumbs span {
        margin: 0 0.375rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .faq-answer p {
        padding: 0 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-nav h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-nav ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-nav a {
        font-size: 0.9375rem;
        padding: 0.25rem 0;
        display: block;
        min-height: 44px;
        line-height: 44px;
    }
    
    .footer-brand {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-copyright {
        font-size: 0.8125rem;
        padding-top: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Nav */
    
    
    
    
    /* Image Gallery Mobile */
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .process-images {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-header-image,
    .location-header-image,
    .blog-header-image {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .content-image {
        margin: 1rem 0;
    }
    
    .hero.has-background {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 3rem 1rem 2rem;
    }
    
    .hero.has-video {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero.has-video .hero-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    /* Cities Carousel - Mobile */
    .cities-carousel-container {
        mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    }
    
    .city-link {
        width: 180px;
        padding: 0.875rem 0.625rem;
        font-size: 0.875rem;
    }
    
    /* Legacy cities-grid support */
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0.875rem 1rem;
    }
    
    section {
        padding: 2rem 0.875rem;
    }
    
    .content-section {
        padding: 1.25rem 0.875rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    /* Features Section - Mobile */
    .feature-item {
        padding: 1rem 0.75rem;
    }
    
    .feature-item strong {
        font-size: 1rem;
    }
    
    .feature-desc {
        font-size: 0.875rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links a {
        padding: 0.75rem 1rem;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    
}

/* Form Elements - Mobile Friendly */
input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Tables - Mobile Responsive */
table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

@media (min-width: 769px) {
    table {
        display: table;
    }
}

/* Smooth Scrolling for Mobile */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Service Page Header Image */
.service-header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

/* Location Page Header Image */
.location-header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

/* Blog Post Header Image */
.blog-header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

/* Inline Content Images */
.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem auto;
    display: block;
}

.content-image-left {
    float: left;
    max-width: 400px;
    margin: 1rem 1.5rem 1rem 0;
}

.content-image-right {
    float: right;
    max-width: 400px;
    margin: 1rem 0 1rem 1.5rem;
}

@media (max-width: 768px) {
    .content-image-left,
    .content-image-right {
        float: none;
        max-width: 100%;
        margin: 1rem 0;
    }
}

/* Process Images */
.process-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.process-image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Features Section - What Sets Us Apart */
.features-section {
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.feature-desc {
    display: block;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Lazy load script enhancement */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Responsive images */
@media (max-width: 768px) {
    .service-header-image {
        height: 200px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .process-image img {
        height: 180px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    
    
    .content-section {
        max-width: 100%;
        padding: 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

