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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 20px);
    width: 100%;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: #000000;
    color: #FFD700;
    padding: 10px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.top-bar.hide-on-scroll {
    transform: translateY(-100%);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-item:hover {
    opacity: 0.8;
    color: #FFD700;
}

.top-bar-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.btn-top-bar {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FFD700;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-top-bar:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Top Navigation */
.top-nav {
    background-color: #FFD700;
    color: #000000;
    padding: clamp(12px, 3vw, 20px) 0;
    position: fixed;
    top: 40px; /* Position below top-bar when visible */
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #000000;
    width: 100%;
    transition: top 0.3s ease-in-out;
}

.top-nav.top-bar-hidden {
    top: 0; /* Move to top when top-bar is hidden */
}

@media (max-width: 767px) {
    .top-nav {
        top: 60px; /* On mobile, top-bar is taller due to stacking */
    }
    
    body {
        padding-top: 140px; /* Top-bar (~60px) + nav (~80px) on mobile */
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 15px);
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
    font-size: clamp(1.1rem, 3vw + 0.3rem, 1.5rem);
    font-weight: 700;
    color: #000000;
    font-style: italic;
    flex-shrink: 0;
}

.logo-image {
    height: clamp(35px, 8vw, 60px);
    width: auto;
    object-fit: contain;
    max-width: 200px;
    flex-shrink: 0;
}

.logo-text {
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(10px, 3vw, 25px);
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw + 0.2rem, 1rem);
    transition: opacity 0.3s ease;
    padding: clamp(8px, 1.5vw, 12px) clamp(4px, 1vw, 8px);
    min-height: 44px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 8vw, 44px);
    height: clamp(36px, 8vw, 44px);
    min-width: 44px;
    min-height: 44px;
    color: #000000;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

.nav-icon:hover {
    color: #000000;
    opacity: 0.7;
    transform: translateY(-2px);
}

.nav-icon:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    max-height: 85vh;
    overflow: hidden;
    background-image: url('assets/outdoor-services-hero-background.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 0;
    padding-top: 0;
    margin-top: 0;
}

/* Add padding to body to account for fixed nav and top bar */
body {
    padding-top: 120px; /* Approximate: top-bar (~40px) + nav (~80px) */
}

body.top-bar-hidden {
    padding-top: 80px; /* Just nav height when top-bar is hidden */
}

header {
    position: relative;
    z-index: 999;
}

@media (max-width: 767px) {
    body {
        padding-top: 140px; /* Top-bar (~60px) + nav (~80px) on mobile */
    }
    
    body.top-bar-hidden {
        padding-top: 80px; /* Just nav height when top-bar is hidden on mobile */
    }
}

@media (max-width: 767px) {
    .hero {
        overflow: visible;
        max-height: none;
        height: auto;
    }
}

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

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(102px, 12.75vw, 136px) 20px 40px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: flex-start;
    height: 100%;
    box-sizing: border-box;
}

.hero-form-wrapper {
    order: 1;
}

.hero-cta-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-align: left;
}

.hero-form .form-group {
    margin-bottom: 15px;
}

.hero-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 20px;
    color: #666666;
    pointer-events: none;
    z-index: 1;
}

.hero-form .form-group input,
.hero-form .form-group select {
    width: 100%;
    padding: clamp(10px, 2vw, 12px) clamp(10px, 2vw, 12px) clamp(10px, 2vw, 12px) clamp(35px, 5vw, 40px);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: clamp(16px, 2vw, 1rem);
    background-color: #ffffff;
    color: #2c2c2c;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    min-height: 44px;
}

.hero-form .form-group select {
    padding-left: 40px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.hero-form .form-group input:focus + .input-icon,
.hero-form .form-group:focus-within .input-icon {
    color: #FFD700;
}

.hero-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    padding: 16px 32px;
    font-size: 1.15rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.15rem;
}

.hero-content {
    order: 2;
    color: #ffffff;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.hero-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #FFD700;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(1.75rem, 6vw + 0.5rem, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: clamp(0.5px, 0.5vw, 1px);
    line-height: 1.2;
}

.hero-headline {
    font-size: clamp(1.2rem, 4vw + 0.3rem, 1.5rem);
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
    letter-spacing: clamp(0.3px, 0.3vw, 0.5px);
}

.hero-subheadline {
    font-size: clamp(0.95rem, 2.5vw + 0.2rem, 1.1rem);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    color: #e8e8e8;
    line-height: 1.4;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(12px, 2.5vw, 14px) clamp(24px, 5vw, 32px);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: clamp(0.95rem, 2.5vw + 0.2rem, 1.1rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: clamp(200px, 40vw, 220px);
    min-height: 44px;
    width: 100%;
    max-width: 100%;
}

.btn-primary {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #000000;
}

.btn-primary:hover {
    background-color: #000000;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: clamp(40px, 8vw, 60px) 0;
    scroll-margin-top: clamp(80px, 12vw, 100px);
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(25px, 5vw, 40px);
    color: #000000;
}

/* Services Section - Hertz Style */
.services-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.services-header {
    margin-bottom: 40px;
}

.services-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.services-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
    width: 100%;
    min-width: 0;
}

.service-card-new {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    width: 100%;
    height: clamp(180px, 25vw, 200px);
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.leaf-removal-image {
    object-position: top center;
}

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

.service-card-divider {
    width: 100%;
    height: 4px;
    background-color: #FFD700;
}

.service-card-content {
    padding: 25px;
    background-color: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.service-icon-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

.service-icon {
    width: 32px;
    height: 32px;
    color: #FFD700;
    display: inline-block;
}

.service-icon-image {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1500%) hue-rotate(-5deg) brightness(1) contrast(1.05);
}

.service-card-content h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 800;
    text-align: center;
}

.service-card-content p {
    font-size: clamp(0.9rem, 2vw + 0.1rem, 1rem);
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    border-radius: 5px;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw + 0.1rem, 0.95rem);
    text-decoration: none;
    text-align: center;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
    width: 100%;
    max-width: 100%;
    min-height: 44px;
}

.service-btn:hover {
    background-color: #000000;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Carousel Buttons */
.carousel-btn {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}


.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn:hover {
    background-color: #000000;
    color: #FFD700;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0;
    visibility: hidden;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.carousel-btn:disabled:hover {
    background-color: #FFD700;
    color: #000000;
    transform: none;
}

/* Why Choose Us Section */
.why-choose {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.why-choose-subheading {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    font-weight: 500;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.why-choose-item {
    text-align: center;
    padding: 30px 25px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    color: #FFD700;
    margin: 0 auto 18px;
    display: block;
}

.why-choose-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.why-choose-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-cta {
    text-align: center;
    margin-top: 40px;
}

/* Gallery Section */
.gallery {
    background-color: #ffffff;
}

.gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-wrapper {
    overflow: hidden;
    margin-top: 40px;
}

.gallery-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 100%;
    min-width: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: transparent;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-category {
    transform: translateY(-2px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
    max-width: 100%;
}

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

.gallery-caption {
    padding: 20px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    border-top: 1px solid #000000;
}

.gallery-caption h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
    font-weight: 500;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.gallery-cta .btn {
    min-width: 200px;
}

.btn-cta-primary {
    font-size: 1.2rem;
    padding: 18px 45px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.btn-secondary-gallery {
    background-color: transparent;
    color: #666666;
    border: 2px solid #e0e0e0;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    display: inline-block;
}

.btn-secondary-gallery:hover {
    background-color: #f8f8f8;
    color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Customer Reviews Section */
.reviews {
    background-color: #fafafa;
}

.reviews-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid #FFD700;
    margin-top: auto;
}

.review-author strong {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 800;
}

.review-author span {
    font-size: 0.95rem;
    color: #666666;
}

/* Service Area Section */
.service-area {
    background-color: #ffffff;
    color: #000000;
    padding: 50px 0;
}

.service-area-header {
    text-align: center;
    margin-bottom: 35px;
}

.service-area .section-title {
    color: #000000;
    margin-bottom: 15px;
}

.service-area-accent {
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    margin: 0 auto;
    border-radius: 2px;
}

.service-area-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .service-area-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        text-align: left;
    }
}

.service-area-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-area-primary {
    margin-bottom: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .service-area-primary {
        text-align: left;
    }
}

.area-primary-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

@media (min-width: 768px) {
    .area-primary-title {
        text-align: left;
    }
}

.area-primary-tag {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.5rem;
    border: 3px solid #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.service-area-secondary {
    margin-bottom: 0;
}

.area-secondary-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

@media (min-width: 768px) {
    .area-secondary-title {
        text-align: left;
    }
}

.area-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .area-tags-list {
        justify-content: flex-start;
        max-width: 100%;
        margin: 0;
    }
}

.area-tag {
    display: inline-block;
    background-color: #ffffff;
    color: #333333;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.service-area-map-wrapper {
    order: 1;
}

.service-area-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8;
}

@media (min-width: 768px) {
    .service-area-map-wrapper {
        order: 1;
    }
    
    .service-area-info {
        order: 2;
    }
}

.service-area-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 767px) {
    .service-area-map {
        height: 300px;
    }
    
    .service-area-map-wrapper {
        margin: 25px 0;
    }
}

.service-area-cta {
    margin-top: 0;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

@media (min-width: 768px) {
    .service-area-cta {
        text-align: left;
    }
}

.service-area-cta-text {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 18px;
    font-weight: 600;
}

.service-area-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-area-phone:hover {
    transform: translateY(-2px);
    color: #000000;
}

.service-area-phone-icon {
    width: 28px;
    height: 28px;
    color: #FFD700;
    flex-shrink: 0;
}

.service-area-phone-number {
    color: #000000;
}

@media (max-width: 767px) {
    .service-area {
        padding: 40px 0;
    }
    
    .service-area-header {
        margin-bottom: 30px;
    }
    
    .service-area .section-title {
        margin-bottom: 12px;
    }
    
    .service-area-primary {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .area-primary-tag {
        padding: 16px 35px;
        font-size: 1.3rem;
        display: inline-block;
    }
    
    .service-area-secondary {
        margin-bottom: 25px;
    }
    
    .area-tags-list {
        gap: 8px;
    }
    
    .area-tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .service-area-cta {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .service-area-phone {
        font-size: 1.2rem;
    }
    
    .service-area-phone-icon {
        width: 24px;
        height: 24px;
    }
}

/* About Section */
.about {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-subheading {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 500;
}

.about-intro strong {
    color: #000000;
    font-weight: 700;
}

.about-owner {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333333;
    font-weight: 400;
    font-style: italic;
}

.about-owner strong {
    color: #000000;
    font-weight: 700;
    font-style: normal;
}

.about-divider {
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about-feature:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    color: #FFD700;
    flex-shrink: 0;
    margin-top: 5px;
}

.about-feature-content {
    flex: 1;
}

.about-feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.about-feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

/* Contact Section */
.contact {
    background-color: #f8f8f8;
    color: #000000;
    padding: 100px 0;
    scroll-margin-top: clamp(120px, 15vw, 140px);
}

.contact .section-title {
    color: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-item {
        text-align: left;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    font-size: clamp(1rem, 2.5vw + 0.2rem, 1.2rem);
    line-height: 1.8;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1.1rem, 3vw + 0.2rem, 1.3rem);
}

.contact-item a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.contact-item span {
    color: #666666;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contact-form-logo {
    text-align: center;
    margin-bottom: 25px;
}

.contact-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.form-trust-line {
    text-align: center;
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 30px;
    font-style: italic;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
}

.contact-form .input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-form .input-icon {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 20px;
    color: #666666;
    pointer-events: none;
    z-index: 1;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #000000;
    font-family: inherit;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    background-color: #ffffff;
}

.contact-form .form-group:focus-within .input-icon {
    color: #FFD700;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #000000;
}

.contact-form .btn-primary:hover {
    background-color: #000000;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #000000;
    color: #FFD700;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
}

.footer-section {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        align-items: start;
    }
    
    .footer-section {
        text-align: left;
    }
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: 700;
}

.footer-section p {
    margin: 5px 0;
    font-size: 1rem;
    color: #FFD700;
}

.footer-section a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

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

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 2px solid #FFD700;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: #FFD700;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   Breakpoints: 320px, 375px, 414px, 768px, 1024px+
   ============================================ */

/* Base Mobile Styles (320px+) */
@media (max-width: 767px) {
    /* Base mobile adjustments */
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
        scroll-margin-top: 80px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    /* Top Bar Mobile */
    .top-bar {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .top-bar-right {
        width: 100%;
    }

    .btn-top-bar {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Navigation Mobile */
    .top-nav {
        padding: 15px 0;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 40px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 5px 0;
    }

    .nav-icons {
        margin-left: auto;
        gap: 10px;
    }

    .nav-icon {
        width: 32px;
        height: 32px;
    }

    /* Hero Section Mobile */
    .hero {
        height: auto;
        min-height: auto;
        padding: 0 0 60px 0;
        margin-top: 0;
        display: flex;
        align-items: flex-start;
        overflow: visible;
    }

    .hero-container {
        padding: clamp(80px, 12vw, 120px) 15px 60px 15px;
        gap: 25px;
        height: auto;
        min-height: auto;
        align-items: flex-start;
        overflow: visible;
    }

    .hero-content {
        order: 1;
    }

    .hero-form-wrapper {
        order: 2;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-headline {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: clamp(10px, 2vw, 12px);
        margin-top: 15px;
    }

    .hero-feature {
        font-size: clamp(0.85rem, 2vw, 0.9rem);
        white-space: nowrap;
    }

    .hero-cta-form {
        padding: clamp(20px, 4vw, 25px) clamp(15px, 3vw, 20px);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-cta-form h3 {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        margin-bottom: 15px;
    }

    .hero-form .form-group {
        margin-bottom: 12px;
    }

    .hero-form .form-group label {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        margin-bottom: 6px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 50px 0;
    }

    .services-carousel-wrapper {
        gap: 8px;
        margin-top: 30px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .services-carousel {
        min-width: 0;
        flex: 1 1 0;
        width: 0; /* Force flex to calculate correctly */
        overflow: hidden;
        position: relative;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        min-width: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .services-carousel-track {
        gap: 0;
        width: 100%;
        min-width: 0;
        flex-wrap: nowrap;
    }

    .service-card-new {
        flex: 0 0 100%;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .service-card-image {
        width: 100%;
        max-width: 100%;
    }

    .service-card-content {
        padding: 16px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .service-card-content h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin-bottom: 10px;
    }

    .service-card-content p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.5;
    }

    .service-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
    }

    /* Why Choose Section Mobile */
    .why-choose {
        padding: 50px 0;
    }

    .why-choose-subheading {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .why-choose-grid {
        gap: 25px;
    }

    .why-choose-item {
        padding: 25px 20px;
    }

    .why-choose-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 15px;
    }

    .why-choose-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .why-choose-item p {
        font-size: 0.95rem;
    }

    /* Gallery/Our Work Mobile */
    .gallery {
        padding: 50px 0;
    }

    .gallery-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .gallery-wrapper {
        overflow: visible;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        transform: none !important;
    }

    .gallery-item {
        flex: none;
        width: 100%;
    }

    .gallery-caption h4 {
        font-size: 1.2rem;
    }

    .gallery-caption p {
        font-size: 0.9rem;
    }

    .gallery-cta {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .gallery-cta .btn {
        width: 100%;
        min-width: auto;
    }

    /* Reviews Mobile */
    .reviews {
        padding: 50px 0;
    }

    .reviews-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .reviews-grid {
        gap: 25px;
    }

    .review-card {
        padding: 20px;
    }

    .review-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .review-author {
        padding-top: 15px;
    }

    .review-author strong {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about {
        padding: 50px 0;
    }

    .about-subheading {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .about-intro {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

    .about-owner {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .about-features {
        gap: 20px;
    }

    .about-feature {
        padding: 20px;
    }

    .about-feature-icon {
        width: 35px;
        height: 35px;
    }

    .about-feature-content h3 {
        font-size: 1.2rem;
    }

    .about-feature-content p {
        font-size: 0.95rem;
    }

    /* Service Area Mobile */
    .service-area {
        padding: 40px 0;
    }
    
    .service-area-header {
        margin-bottom: 30px;
    }
    
    .service-area .section-title {
        margin-bottom: 12px;
    }
    
    .service-area-primary {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .area-primary-tag {
        padding: 16px 35px;
        font-size: 1.3rem;
        display: inline-block;
    }
    
    .service-area-secondary {
        margin-bottom: 25px;
    }
    
    .area-tags-list {
        gap: 8px;
    }
    
    .area-tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .service-area-cta {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .service-area-phone {
        font-size: 1.2rem;
    }
    
    .service-area-phone-icon {
        width: 24px;
        height: 24px;
    }

    .service-area-map {
        height: 300px;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 50px 0;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-trust-line {
        margin-bottom: 20px;
        padding-bottom: 15px;
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 1rem;
        text-align: center;
    }

    .contact-item strong {
        font-size: 0.9rem;
    }

    .contact-item a {
        font-size: 1.1rem;
    }

    .input-with-icon input,
    .input-with-icon select,
    .input-with-icon textarea {
        font-size: clamp(16px, 2vw, 1rem);
        padding: clamp(12px, 2vw, 14px) clamp(12px, 2vw, 14px) clamp(12px, 2vw, 14px) clamp(35px, 5vw, 40px);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-height: 44px;
    }

    .input-icon {
        width: clamp(16px, 2.5vw, 18px);
        height: clamp(16px, 2.5vw, 18px);
        left: clamp(10px, 2vw, 12px);
    }

    /* ============================================
       FOOTER MOBILE FIX (max-width: 768px)
       ============================================
       PROBLEM: Footer was using 2-column grid on mobile,
       causing misalignment, spacing issues, and scattered elements.
       
       SOLUTION: 
       - Changed to single-column vertical stack (1fr)
       - Center-aligned all content for consistency
       - Reduced excessive spacing
       - Ensured full-width sections
       - Made links tap-friendly (min 44px height)
       - Centered social icons
       - Prevented horizontal overflow
       ============================================ */
    .footer {
        padding: 35px 0 20px 0;
    }

    .footer-content {
        /* Single column stack on mobile - each section full width */
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-section {
        /* Center-align all sections on mobile for consistency */
        text-align: center;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
        font-weight: 700;
        line-height: 1.3;
    }

    .footer-section p {
        font-size: 0.9rem;
        margin: 6px 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-section a {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        min-height: 44px; /* Tap-friendly target */
        padding: 4px 0; /* Extra padding for easier tapping */
    }

    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-nav li {
        margin-bottom: 0;
        width: 100%;
        text-align: center;
    }

    .footer-nav a {
        font-size: 0.9rem;
        display: inline-block;
        line-height: 1.5;
        min-height: 44px; /* Tap-friendly target */
        padding: 8px 0; /* Extra padding for easier tapping */
        width: auto;
    }

    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 10px;
        justify-content: center; /* Center icons */
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        min-width: 40px; /* Ensure tap-friendly size */
        min-height: 40px;
        flex-shrink: 0;
    }

    .footer-social-link svg {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
        border-top: 2px solid #FFD700;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Buttons Mobile */
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: auto;
        width: 100%;
    }

    .btn-primary {
        padding: 14px 28px;
    }

    /* Touch-friendly targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

/* Small Phones (320px - 374px) */
@media (max-width: 374px) {
    .container {
        padding: 0 12px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.875rem;
        padding: 8px 4px;
    }

    .top-bar {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    .hero {
        min-height: auto;
        height: auto;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 30px;
        overflow: visible;
    }

    .hero-container {
        padding: clamp(70px, 10vw, 100px) 12px 60px 12px;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 8px;
        word-wrap: break-word;
    }

    .hero-headline {
        font-size: 1.1rem;
        margin-bottom: 6px;
        word-wrap: break-word;
    }

    .hero-subheadline {
        font-size: 0.9rem;
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .hero-cta-form {
        padding: 18px 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-cta-form h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .hero-form .form-group {
        margin-bottom: 10px;
    }

    .hero-form .form-group label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Standard Phones (375px - 413px) */
@media (min-width: 375px) and (max-width: 413px) {
    .container {
        padding: 0 16px;
    }
}

/* Large Phones (414px - 767px) */
@media (min-width: 414px) and (max-width: 767px) {
    .container {
        padding: 0 18px;
    }

    .nav-links {
        gap: 12px;
    }

    .service-card-new {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }

    section {
        padding: clamp(50px, 6vw, 70px) 0;
    }

    .nav-links {
        gap: 20px;
    }

    .service-card-new {
        flex: 0 0 calc(50% - 15px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-area-map-wrapper {
        order: 1;
    }

    .service-area-info {
        order: 2;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 60px 40px 40px 40px;
        align-items: flex-start;
    }

    .hero-form-wrapper {
        order: 1;
    }

    .hero-content {
        order: 2;
        text-align: left;
        margin: 0;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .hero-headline {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .hero-subheadline {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 25px;
        margin-top: 20px;
    }

    .hero-feature {
        font-size: 1rem;
    }

    .service-card-new {
        flex: 0 0 calc(33.333% - 20px);
    }

    .gallery-wrapper {
        overflow: visible;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        transform: none !important;
    }

    .gallery-item {
        flex: none;
    }

    .gallery-cta {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        align-items: center;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

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

    .contact-form {
        padding: 50px;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Desktop (1024px+) - Existing styles maintained */
@media (min-width: 1024px) {
    .hero-container {
        padding: 60px 60px 40px 60px;
        gap: 60px;
        align-items: flex-start;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-headline {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .hero-subheadline {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
    }

    .hero-features {
        gap: 30px;
    }

    .hero-feature {
        font-size: clamp(1rem, 1.5vw, 1.05rem);
    }

    section {
        padding: clamp(60px, 8vw, 80px) 0;
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }

    .service-card-new {
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* Large Desktop - 4-5 cards per row */
@media (min-width: 1400px) {
    .services-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

