/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #f5f2ed;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100vw; /* Ensure body doesn't exceed viewport width */
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #3d2c1e;
}

h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #3d2c1e 0%, #6b5b47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 5px;
    background: linear-gradient(90deg, #d4c4a8, #8b7355, #d4c4a8);
    border-radius: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 3px;
    background: linear-gradient(90deg, #8b7355, #6b5b47, #8b7355);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(139, 115, 85, 0.3);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Top Banner */
.top-banner {
    background: #3d2c1e;
    color: #d4c4a8;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 196, 168, 0.2);
    width: 100%;
    overflow: hidden;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.location-info i {
    color: #d4c4a8;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Header */
header {
    background: #f5f2ed;
    color: #3d2c1e;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
    overflow: hidden;
}

.header-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 1rem;
    font-weight: 500;
    color: #6b5b47;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-item:first-child {
    color: #3d2c1e;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.badge-item:last-child {
    color: #3d2c1e;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.main-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #3d2c1e;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.nav-link:hover {
    border-color: #8b7355;
    background-color: rgba(139, 115, 85, 0.1);
    transform: translateY(-2px);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    color: #d4c4a8;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-link.whatsapp i {
    color: #8b7355;
}

.social-link.phone i {
    color: #8b7355;
}

.social-link.sms i {
    color: #8b7355;
}

.social-link.email i {
    color: #8b7355;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #3d2c1e;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 400;
}

nav a:hover {
    border-color: #8b7355;
    background-color: rgba(139, 115, 85, 0.1);
}



/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    height: 100%;
    gap: 0;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Adjust specific image positions to show more content */
.hero-image:nth-child(3) img {
    object-position: center 30%;
}

.hero-image:nth-child(4) img {
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.4) 0%, rgba(107, 91, 71, 0.5) 100%);
    z-index: 2;
}

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

.hero h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.hero-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

.hero-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-name {
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: none;
    text-align: center;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.free-estimates-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #8b7355;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.free-estimates-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
    background: #6b5b47;
    color: white;
}

.free-estimates-banner i {
    font-size: 1.2rem;
    color: #f4d03f;
}

.free-estimates-banner span {
    color: #000000;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 115, 85, 0.9);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-badge i {
    color: #f4d03f;
}

.cta-button {
    display: inline-block;
    background: #8b7355;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.cta-button:hover {
    background: #6b5b47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

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

section:nth-child(even) {
    background-color: #faf8f5;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-text p {
    font-size: 1.3rem;
    color: #3d2c1e;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.7;
}

.services-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.services-list li {
    color: #3d2c1e;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-weight: 700;
}

.trust-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #8b7355;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.trust-item i {
    color: #8b7355;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.trust-content h4 {
    color: #3d2c1e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.trust-content p {
    color: #6b5b47;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-placeholder {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.image-placeholder:hover img {
    transform: none;
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
}

.about-estimate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #8b7355, #6b5b47);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.5s ease;
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-estimate-btn:hover {
    transform: translateY(-3px); /*this hover effect moves it up by 3px*/ 
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
    background: linear-gradient(135deg, #6b5b47, #5a4a3a);
}

.about-estimate-btn i {
    font-size: 1.2rem;
    color: #f4d03f;
}

/* Services Section */
.service-section {
    margin-bottom: 4rem;
}

.service-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content h3 {
    color: #3d2c1e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.service-content p {
    color: #6b5b47;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sub-list li {
    color: #6b5b47;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.service-sub-list li::before {
    content: '•';
    color: #8b7355;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.service-cta {
    margin-top: 2rem;
}

.service-estimate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #8b7355, #6b5b47);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-estimate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
    background: linear-gradient(135deg, #6b5b47, #5a4a3a);
}

.service-estimate-btn i {
    font-size: 1.1rem;
    color: #f4d03f;
}

/* Gallery Section */
.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b5b47;
    margin-bottom: 3rem;
}

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

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4c4a8 0%, #b8a99a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d2c1e;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    padding: 1rem;
    border: 2px solid #e8e0d5;
}

/* Contact Section */
.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #6b5b47;
    margin-bottom: 3rem;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e0d5;
}

.contact-item h3 {
    color: #3d2c1e;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #6b5b47;
    margin: 0;
}

.contact-item a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #6b5b47;
}

/* Footer */
footer {
    background: #3d2c1e;
    color: #d4c4a8;
    padding: 2rem 0 1rem 0;
    width: 100%;
    overflow: hidden;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.footer-title {
    color: #f4f1eb;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

footer .contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

footer .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #d4c4a8;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

footer .contact-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

footer .contact-link i {
    color: #d4c4a8;
    font-size: 1rem;
}

footer .contact-link span {
    color: #d4c4a8;
}

footer .location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #d4c4a8;
    white-space: nowrap;
    flex-shrink: 0;
}

footer .location-info i {
    color: #d4c4a8;
    font-size: 1rem;
}

footer .location-info span {
    color: #d4c4a8;
}

.footer-bottom {
    border-top: 1px solid #5a4a3a;
    padding-top: 1.5rem;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .banner-content {
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header-content {
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Top Banner Mobile */
    .top-banner {
        padding: 1rem 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .location-info {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Header Mobile */
    header {
        padding: 1rem 0;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .header-badges {
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .badge-item {
        font-size: 0.9rem;
    }
    
    .main-navigation {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border: 1px solid transparent;
    }
    
    /* Typography Mobile */
    h1 {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    h1::after {
        width: 200px;
        height: 3px;
        bottom: -3px;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    h2::after {
        width: 320px;
        height: 3px;
        bottom: -3px;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 3rem 1rem;
        min-height: 80vh;
    }
    
    .hero h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-services-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hero-service-item {
        padding: 0.8rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .free-estimates-banner {
        padding: 1.2rem 1.5rem;
    }
    
    .estimates-text {
        font-size: 1.3rem;
    }
    
    .hero-phone {
        font-size: 1.5rem;
    }
    
    .experience-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Sections Mobile */
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .services-list {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }
    
    .services-list li {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .trust-highlights {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
    
    .trust-item i {
        font-size: 1.3rem;
        margin-top: 0.1rem;
    }
    
    .trust-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .trust-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-images {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .image-placeholder {
        flex: 1;
        width: 100%;
    }
    
    .image-placeholder img {
        height: auto;
    }
    
    .image-placeholder:hover img {
        transform: none;
    }
    
    .about-cta {
        margin-top: 2rem;
    }
    
    .about-estimate-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Services Section Mobile */
    .service-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-sub-list li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .service-cta {
        margin-top: 1.5rem;
    }
    
    .service-estimate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Gallery Section Mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    footer .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    footer .contact-link {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    footer .location-info {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Prevent horizontal overflow on extra small mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .banner-content {
        padding: 0 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header-content {
        padding: 0 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Extra Small Mobile */
    .top-banner {
        padding: 0.8rem 0;
    }
    
    .banner-content {
        gap: 1rem;
    }
    
    .location-info {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h1::after {
        width: 150px;
        height: 2px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h2::after {
        width: 320px;
        height: 2px;
    }
    
    .header-badges {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .badge-item {
        font-size: 0.85rem;
    }
    
    /* Footer Extra Small Mobile */
    footer {
        padding: 1.5rem 0 1rem 0;
        width: 100%;
        overflow: hidden;
    }
    
    footer .contact-info {
        gap: 0.8rem;
        width: 100%;
        max-width: 100%;
        padding: 0 0.3rem;
        box-sizing: border-box;
    }
    
    footer .contact-link {
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    footer .location-info {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .main-navigation {
        gap: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero {
        padding: 2rem 0.8rem;
        min-height: 70vh;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-services-list {
        gap: 0.8rem;
    }
    
    .hero-service-item {
        padding: 0.6rem;
    }
    
    .service-name {
        font-size: 0.85rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .about-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .services-list {
        margin: 0.8rem 0;
        padding-left: 1.2rem;
    }
    
    .services-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .trust-highlights {
        margin-top: 1rem;
        gap: 0.8rem;
    }
    
    .trust-item {
        padding: 0.8rem;
    }
    
    .trust-item i {
        font-size: 1.2rem;
        margin-top: 0.1rem;
    }
    
    .trust-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .trust-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .about-images {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .image-placeholder {
        width: 100%;
    }
    
    .image-placeholder img {
        height: auto;
    }
    
    .image-placeholder:hover img {
        transform: none;
    }
    
    .about-cta {
        margin-top: 1.5rem;
    }
    
    .about-estimate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
