/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile optimizations */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(239, 94, 37, 0.2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-orange: #ef5e25;
    --primary-orange-dark: #d64e1f;
    --charcoal: #2c2c2c;
    --light-grey: #f5f5f5;
    --medium-grey: #e0e0e0;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --navbar-height: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Touch-friendly interactive elements */
button, a, input, select, textarea {
    touch-action: manipulation;
}

/* Improve button and link accessibility on mobile */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    button, .btn, .cta-button, .service-link, .submit-button, .nav-cta, .phone-number {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link, .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--charcoal);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-cta {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--primary-orange-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    padding-top: var(--navbar-height); /* Account for fixed navbar */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ef5e25 0%, #ff8c5a 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 94, 37, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.cta-button:hover::before {
    transform: scale(1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 94, 37, 0.4);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.trust-item:nth-child(1) { animation-delay: 0.2s; }
.trust-item:nth-child(2) { animation-delay: 0.3s; }
.trust-item:nth-child(3) { animation-delay: 0.4s; }

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    width: 28px;
    height: 28px;
    fill: #ef5e25;
    flex-shrink: 0;
}

.trust-text {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(239, 94, 37, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 35px;
    border-radius: 50px;
    border: 2px solid #ef5e25;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.phone-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(239, 94, 37, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.phone-number:hover::after {
    transform: translate(-50%, -50%) scale(2);
}

.phone-number:hover {
    background: rgba(239, 94, 37, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(239, 94, 37, 0.5);
}

.phone-icon {
    width: 32px;
    height: 32px;
    fill: white;
    animation: ring 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

.decorative-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 94, 37, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 10s ease-in-out infinite;
}

.decorative-element.left {
    top: 20%;
    left: -150px;
}

.decorative-element.right {
    bottom: 20%;
    right: -150px;
    animation-delay: -5s;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--charcoal);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--white);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    color: var(--white);
}

/* Value icon styling moved to Modern Icon Styling section */

/* Modern Services Section */
.services-section {
    padding: 100px 20px;
    position: relative;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

.background-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(239, 94, 37, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 20px;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Desktop layout optimization for 7 cards */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto 60px auto;
    }
    
    /* Center the 7th card (Outdoor Shower Installation) */
    .service-card:nth-child(7) {
        grid-column: 2 / 3;
        margin: 0 auto;
        max-width: 380px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Center the 7th card on medium desktop screens */
    .service-card:nth-child(7) {
        grid-column: 2 / 3;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(239, 94, 37, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 94, 37, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    z-index: 1;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::after {
    transform: rotate(45deg) translateX(100%);
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #d0d0d0;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    transform: translateX(5px);
}

.service-link svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

.promise-section {
    background: linear-gradient(135deg, rgba(239, 94, 37, 0.1) 0%, rgba(239, 94, 37, 0.05) 100%);
    border: 1px solid rgba(239, 94, 37, 0.2);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.promise-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--white);
}

.promise-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--white);
}

.promise-item svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-orange);
}

/* Project Showcase */
.projects {
    padding: 80px 0;
    background-color: var(--charcoal);
}

.gallery-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(239, 94, 37, 0.1);
    border: 1px solid rgba(239, 94, 37, 0.3);
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 15px auto;
    animation: pulseGlow 2s ease-in-out infinite;
}

.scroll-hint-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-orange);
    animation: slideArrow 2s ease-in-out infinite;
}

.scroll-hint-text {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-wrapper {
    position: relative;
    margin-top: 40px;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(239, 94, 37, 0.1);
    border: 1px solid rgba(239, 94, 37, 0.3);
    border-radius: 50px;
    color: #ef5e25;
    font-size: 14px;
    font-weight: 500;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(239, 94, 37, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(239, 94, 37, 0.4);
        transform: scale(1.02);
    }
}

.scroll-icon {
    width: 16px;
    height: 16px;
    fill: #ef5e25;
    animation: slideArrow 1.5s ease-in-out infinite;
}

.scroll-icon:first-child {
    animation-delay: 0s;
}

.scroll-icon:last-child {
    animation-delay: 0.3s;
}

@keyframes slideArrow {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(4px); opacity: 1; }
}

.gallery-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    position: relative;
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    /* Mobile optimizations */
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    /* Performance optimizations */
    will-change: scroll-position;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background: #ef5e25;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.gallery-container::-webkit-scrollbar-thumb:hover {
    background: #d54e1f;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    padding: 20px;
    width: max-content;
    min-width: 100%;
}

.gallery-scroll img {
    height: 320px;
    width: 280px;
    object-fit: contain;
    object-position: center;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 2px solid #666666;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    /* Mobile scroll snap */
    scroll-snap-align: start;
    /* Performance optimizations */
    transform: translateZ(0);
    will-change: transform;
}

.gallery-scroll img:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 16px 48px rgba(239, 94, 37, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}



/* Hide scroll indicator after user starts scrolling */
.gallery-container.scrolled ~ .scroll-indicator {
    opacity: 0;
    pointer-events: none;
}

/* Why Choose Us */
.why-choose-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(239, 94, 37, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(239, 94, 37, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-intro .section-description {
    font-size: 20px;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.advantages-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.advantages-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advantage-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.advantage-row:nth-child(1) { animation-delay: 0.1s; }
.advantage-row:nth-child(2) { animation-delay: 0.2s; }
.advantage-row:nth-child(3) { animation-delay: 0.3s; }
.advantage-row:nth-child(4) { animation-delay: 0.4s; }
.advantage-row:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.advantage-number {
    font-size: 48px;
    font-weight: 800;
    color: #ef5e25;
    line-height: 1;
    min-width: 80px;
    position: relative;
}

.advantage-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ef5e25, transparent);
}

.advantage-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-details p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

.stats-showcase {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stats-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}



.stat-highlight {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-highlight:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-highlight .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ef5e25;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(239, 94, 37, 0.3);
}

.stat-highlight .stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-highlight .stat-description {
    font-size: 14px;
    color: #999;
    line-height: 1.4;
}

.commitment-badge {
    background: linear-gradient(135deg, rgba(239, 94, 37, 0.1) 0%, rgba(239, 94, 37, 0.05) 100%);
    border: 1px solid rgba(239, 94, 37, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: #ef5e25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.badge-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.badge-content p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

/* Thank You Page */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal), #1a1a1a);
    padding: 2rem 0;
    margin-top: var(--navbar-height);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.8s ease-out;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: checkmarkPulse 2s infinite;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.thank-you-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.thank-you-message {
    margin-bottom: 2.5rem;
}

.thank-you-message p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.phone-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-orange-dark);
    text-decoration: underline;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.contact-info {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for thank you page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .cta-button,
    .thank-you-actions .secondary-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Testimonials Carousel */
.testimonials {
    padding: 80px 0 0 0;
    background-color: var(--charcoal);
    overflow: hidden;
    position: relative;
}

.carousel-container {
    margin-top: 1.5rem;
    width: 100vw;
    overflow: hidden;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0 0 60px 0;
    background-color: var(--charcoal);
}

.row {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.row-content {
    display: flex;
    gap: 20px;
    animation: scrollLeft 480s linear infinite;
    width: max-content;
    padding: 0 20px;
}

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

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

.comment-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    min-width: 300px;
    max-width: 380px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.comment-card:hover {
    background-color: #222;
    border-color: rgba(239, 94, 37, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    background-color: var(--primary-orange);
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.username {
    font-weight: 600;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
}

.timestamp {
    font-size: 13px;
    color: #999;
}

.comment-text {
    color: #d0d0d0;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 8px;
}

.stars {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-orange);
}



/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(239, 94, 37, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(239, 94, 37, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    font-size: 20px;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-section, .info-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    transition: all 0.3s ease;
}

.form-section:hover, .info-section:hover {
    border-color: rgba(239, 94, 37, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title, .info-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.title-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ef5e25 0%, #ff8c5a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #ef5e25;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(239, 94, 37, 0.1);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #666;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-button {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ef5e25 0%, #ff8c5a 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 94, 37, 0.3);
}

.submit-button:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.submit-button span {
    position: relative;
    z-index: 1;
}

.info-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-label svg {
    width: 18px;
    height: 18px;
    fill: #ef5e25;
}

.info-value {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.info-value a {
    color: #ef5e25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: #ff8c5a;
}

.hours-grid {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 16px;
}

.hours-day {
    color: #ccc;
}

.hours-time {
    color: #fff;
    font-weight: 500;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 94, 37, 0.1);
    border: 1px solid rgba(239, 94, 37, 0.3);
    padding: 12px 20px;
    border-radius: 30px;
    margin-top: 10px;
}

.emergency-badge svg {
    width: 20px;
    height: 20px;
    fill: #ef5e25;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #ccc;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    fill: #4CAF50;
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

/* Social links styling moved to Modern Icon Styling section */

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Modern Icon Styling */
.phone-icon {
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 24px;
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 2rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 40px;
    box-shadow: 0 4px 12px rgba(239, 94, 37, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(239, 94, 37, 0.4);
}

.value-icon {
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 20px;
    flex-shrink: 0;
}

.social-links a {
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-links a:hover {
    background: var(--primary-orange-dark);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide floating call button on desktop */
.floating-call-button {
    display: none;
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Enhanced container padding for mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Improved navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--charcoal);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.nav-open {
        overflow: hidden;
    }
    
    .nav-toggle {
        display: flex;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        z-index: 1001;
    }
    
    .nav-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
        margin-bottom: 2rem;
    }
    
    .nav-cta {
        margin-top: 1rem;
        padding: 15px 30px;
        font-size: 1.1rem;
        border-radius: 8px;
        width: 80%;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero optimizations */
    .hero {
        padding-top: calc(var(--navbar-height) + 20px);
        padding-left: 20px;
        padding-right: 20px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 35px;
        line-height: 1.4;
        text-align: center;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 17px;
        margin-bottom: 45px;
        width: auto;
        min-width: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Trust indicators mobile optimization */
    .trust-indicators {
        gap: 12px;
        margin-bottom: 35px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-item {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px; /* Touch target size */
        flex: 1 1 auto;
        min-width: 150px;
        max-width: 200px;
    }
    
    .trust-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-text {
        font-size: 13px;
    }
    
    /* Phone number mobile optimization */
    .phone-number {
        font-size: 20px;
        padding: 16px 28px;
        min-height: 52px; /* Touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 12px;
        font-weight: 600;
    }
    
    .phone-icon {
        width: 26px;
        height: 26px;
    }
    
    /* Section spacing */
    .about, .services-section, .projects, .why-choose-section, .contact-section {
        padding: 70px 0;
    }
    
    .testimonials {
        padding: 70px 0 0 0; /* Explicit override to remove horizontal padding inheritance */
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 17px;
        line-height: 1.5;
        text-align: center;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Layout optimizations */
    .about-content,
    .area-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .about-image img {
        border-radius: 12px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .about-text p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: center;
    }
    
    /* Services mobile optimization */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
        margin-bottom: 20px;
        border-radius: 12px;
        min-height: auto;
        height: auto;
    }
    
    .service-icon {
        margin-bottom: 20px;
        align-self: center;
    }
    
    .service-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .service-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
        text-align: center;
        padding: 0 10px;
    }
    
    .service-features {
        margin-bottom: 25px;
        flex-grow: 0;
        padding: 0 10px;
    }
    
    .service-features li {
        position: relative;
        font-size: 14px;
        padding: 8px 0 8px 20px;
        text-align: left;
        margin-bottom: 8px;
    }
    
    .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 8px;
        color: var(--primary-orange);
        font-weight: bold;
        font-size: 14px;
        line-height: 1;
    }
    
    .service-link {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 8px;
        width: 100%;
        max-width: 200px;
        margin: 20px auto 0;
        margin-top: auto;
    }
    
    /* Promise section mobile */
    .promise-section {
        padding: 40px 15px;
    }
    
    .promise-items {
        flex-direction: column;
        gap: 15px;
    }
    
    .promise-item {
        padding: 15px;
        text-align: center;
        font-size: 14px;
    }
    
    /* Testimonials mobile */
    .testimonials {
        padding: 60px 0 0 0;
        position: relative;
    }
    
    .testimonials .container {
        padding: 0; /* Remove all container padding for testimonials */
    }
    
    .carousel-container {
        margin-top: 1.5rem;
        width: 100vw;
        position: relative;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 0 0 60px 0;
        background-color: var(--charcoal);
        overflow: hidden; /* Ensure no scrollbars appear */
    }
    
    .row {
        width: 100%;
    }
    
    .row-content {
        gap: 15px;
        animation: scrollLeftMobile 15s linear infinite !important;
        transform: translateZ(0);
        padding: 0 0 0 15px; /* Only left padding to start carousel off-screen properly */
    }
    
    .comment-card {
        min-width: 280px;
        max-width: 320px;
        padding: 20px 15px;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    /* Why choose us mobile */
    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-showcase {
        position: static;
        margin-top: 30px;
    }
    
    .advantage-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;
    }
    
    .advantage-number {
        font-size: 32px;
        align-self: center;
    }
    
    .advantage-details h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .advantage-details p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .commitment-badge {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 15px;
    }
    
    /* Contact form mobile optimization */
    .form-section, .info-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .submit-button {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        min-height: 48px;
    }
    
    .info-item {
        margin-bottom: 20px;
        padding: 15px 0;
    }
    
    .info-label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .info-value {
        font-size: 15px;
    }
    
    .info-value a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .hours-grid {
        gap: 10px;
    }
    
    .hours-item {
        padding: 8px 0;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        height: 40px;
        margin-bottom: 15px;
    }
    
    .footer h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        display: block;
        padding: 8px 0;
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        font-size: 13px;
    }
    
    /* Gallery mobile optimizations */
    .gallery-container {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* Enhanced momentum scrolling */
        overscroll-behavior-x: contain;
        /* Smooth deceleration */
        scroll-behavior: auto; /* Let native handle smoothness */
        /* Remove expensive box-shadow on mobile */
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .gallery-scroll {
        gap: 15px;
        padding: 15px;
    }
    
    .gallery-scroll img {
        height: 250px;
        width: 220px;
        scroll-snap-align: center;
        /* Reduce transitions on mobile for better performance */
        transition: transform 0.2s ease;
    }
    
    /* Disable hover effects on touch devices for better performance */
    @media (hover: none) and (pointer: coarse) {
        .gallery-scroll img:hover {
            transform: none;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            filter: none;
        }
    }
    
    /* Maintain hover effects on devices with precise pointers */
    @media (hover: hover) and (pointer: fine) {
        .gallery-scroll img:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(239, 94, 37, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3);
        }
    }

    /* Floating Call Button - Mobile Only */
    .floating-call-button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #ef5e25 0%, #ff8c5a 100%);
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(239, 94, 37, 0.4);
        z-index: 999;
        text-decoration: none;
        color: white;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
        border: 3px solid rgba(255, 255, 255, 0.2);
    }
    
    .floating-call-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(239, 94, 37, 0.6);
    }
    
    .floating-call-button svg {
        width: 24px;
        height: 24px;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 4px 20px rgba(239, 94, 37, 0.4), 0 0 0 0 rgba(239, 94, 37, 0.4);
        }
        70% {
            box-shadow: 0 4px 20px rgba(239, 94, 37, 0.4), 0 0 0 15px rgba(239, 94, 37, 0);
        }
        100% {
            box-shadow: 0 4px 20px rgba(239, 94, 37, 0.4), 0 0 0 0 rgba(239, 94, 37, 0);
        }
    }
}

@media (max-width: 360px) {
    /* Very small mobile devices only */
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .comment-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    /* Contact form ultra-mobile */
    .form-section, .info-section {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 12px 14px;
        font-size: 16px;
        min-height: 46px;
    }
    
    .submit-button {
        padding: 14px 25px;
        font-size: 15px;
        min-height: 46px;
    }
    
    .info-item {
        margin-bottom: 15px;
        padding: 12px 0;
    }
    
    .info-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .info-value {
        font-size: 14px;
    }
    
    .hours-item {
        padding: 6px 0;
        font-size: 13px;
    }
    
    .trust-badge {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Footer ultra-mobile */
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo {
        height: 35px;
        margin-bottom: 12px;
    }
    
    .footer h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        padding: 6px 0;
        font-size: 13px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding: 15px 12px;
        font-size: 12px;
        line-height: 1.4;
    }
    
    .carousel-container {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

/* Add slide down animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance, but keep carousel animation */
    *:not(.row-content):not(#commentsRow), *:not(.row-content):not(#commentsRow)::before, *:not(.row-content):not(#commentsRow)::after {
        animation-duration: 0.3s !important;
        animation-delay: 0s !important;
    }
    
    /* Keep carousel animation working with specific targeting */
    .row-content, #commentsRow {
        animation: scrollLeftMobile 15s linear infinite !important;
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Optimize transforms for mobile */
    .service-card, .comment-card, .trust-item, .advantage-row {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        *:not(.row-content), *:not(.row-content)::before, *:not(.row-content)::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        .row-content {
            animation: scrollLeft 60s linear infinite !important;
        }
        
        .carousel-container {
            overflow-x: auto !important;
        }
    }
    
    /* Optimize video for mobile */
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -2;
        transform: translateX(-50%) translateY(-50%) translateZ(0);
        object-fit: cover;
    }
    
    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
} 