/* ===== BASE STYLES & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
     --primary-color: #213c3e; /* Deep Green */
    --secondary-color: #256247; /* Lighter Green */
    --accent-color: #3c8a6d; /* Light Green */
    --dark-color: #022310; /* Dark Green */
    --light-color: #f8fafa;
    --text-color: #333;
    --white: #ffffff;
    --gray: #757e79;
    --light-gray: #e9ecef;
    --dark-gray: #495057;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
    width: 100%;
}



h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ===== HIDDEN SEO CONTENT ===== */
.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== FIXED CONTAINER WIDTH (CRITICAL FOR ALL PAGES) ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.logo-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.clean-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg); opacity: 1; }
    50% { transform: rotate(15deg); opacity: 0.8; }
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content p {
    font-size: 1.1rem;
    margin-top: 20px;
    opacity: 0.9;
    font-weight: 300;
}

/* ===== FIXED NAVIGATION STYLES - CONSISTENT ACROSS ALL PAGES ===== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    position: relative;
    width: 100%;
}

.logo img {
    height: 85px;
    width: auto;
    padding-top: 7px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

#customer_support {
    color: var(--light-color);
} 

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
}

.hamburger-line {
    display: block;
    height: 4px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu-container {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Primary Button in Nav */
.btn-primary-nav-main {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.25);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}

.btn-primary-nav-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 139, 34, 0.35);
}

/* ===== WHATSAPP CHAT BUTTON - CONSISTENT ACROSS ALL PAGES ===== */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 35px;
    right: 35px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 3px solid white;
    animation: pulse-whatsapp 2s infinite;
    will-change: transform, opacity;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(12deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    margin-top: 3px;
    font-size: 30px !important;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 28px;
    width: 20px;
    height: 20px;
    background: var(--dark-color);
    transform: rotate(45deg);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== FORM SUCCESS MODAL - CONSISTENT ACROSS ALL PAGES ===== */
.form-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.form-success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    border-radius: 28px;
    padding: 60px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: relative;
}

.form-success-modal.show .success-content {
    transform: translateY(0);
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    color: white;
    font-size: 4rem;
    animation: pop-in 0.5s ease-out;
}

@keyframes pop-in {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.success-message {
    color: var(--gray);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.success-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 16px 55px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.4);
    font-family: 'Poppins', sans-serif;
}

.success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--dark-color);
    background: var(--light-color);
}

/* ===== SERVICES HEADER SECTION ===== */
.services-header {
    position: relative;
    height: 500px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 40px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.7);
    transition: transform 0.7s ease;
    will-change: transform;
}

.hero-bg:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.85) 0%, rgba(26, 102, 26, 0.92) 100%);
    z-index: -1;
}

.hero-blur {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

.services-header-content {
    text-align: center;
    max-width: 80%;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.services-header-content h1 {
    font-size: 3.8rem;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(to right, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.services-header-content h1 span {
    background: linear-gradient(to right, var(--secondary-color), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: block;
    margin-top: 12px;
}

.services-header-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(168, 230, 163, 0.3);
    z-index: -1;
    border-radius: 8px;
}

.services-header-content p {
    font-size: 1.45rem;
    color: var(--gray);
    margin-bottom: 45px;
    max-width:100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== INDIVIDUAL SERVICE SECTIONS ===== */
.service-detail {
    padding: 45px 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.Services_detailing {
    max-width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.what_we_do_4 {
    max-width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}


.list-4 {
    padding-left: 30px;
}


.Services_detailing_2 {
    max-width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.service-detail:nth-child(even) {
    background: linear-gradient(to bottom, white 0%, #f8fafc 100%);
}

.service-detail-grid {
    align-items: center;
    margin-top: 50px;
}

.service-detail-image {
    position: relative;
    width: 100%;
    margin-top: 5px;
    height: 45rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-title {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding-left: 7px;
}

.service-detail-content h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.service-detail-content h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

#end_tenancy{
    display: flex;
}


.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-list {
    width: 90%;
    list-style: none;
    margin-top: 5px;
    padding-right: 25px;
}


.service_list_2 {
    max-width: 100%;
    list-style: none;
    margin-top: 5px;
    padding-right: 25px;
}

.service-item li{
    padding: 10px;
}

.service-list li {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.service-list_2 i {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin: 5px;
    padding: 5px;
}

.service-list_2 {
    padding-left: 25px;
    list-style: none;
    list-style-type: none;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.option-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.option-card h4 {
    font-size: 1.55rem;
    margin-bottom: 22px;
    color: var(--dark-color);
}

.option-card p {
    color: var(--gray);
    line-height: 1.7;
}

.service-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.service-cta .btn {
    padding: 16px 45px;
    font-size: 1.15rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: green;
    gap: 10px;
    border: 2px solid green;
}

.service-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.45);
}

.service-cta .btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.service-cta .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== SERVICE BENEFITS SECTION ===== */
.service-benefits {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

#benefits-title{
    font-size: 2.8rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

#benefits-description {
    font-size: 1.2rem;
    color: var(--gray);
    text-align: center;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}


#comparison-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

#comparison-description {
    font-size: 1.75rem;
    color: var(--gray);
    text-align: center;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

#contact-faq-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

#contact-faq-description {
    font-size: 1.25rem;
    color: var(--gray);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 55px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    text-align: center;
    padding: 45px 35px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.benefit-card i {
    font-size: 3.8rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.85rem;
    margin-bottom: 22px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

.service-detail-image {
    display: flex;
}

/* ===== SERVICE COMPARISON SECTION ===== */
.service-comparison {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.comparison-table {
    margin-top: 55px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 600px;
}

.comparison-table thead {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 22px 25px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    color: var(--text-color);
    font-size: 1.05rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--light-color);
}

/* ===== RESPONSIVE TABLE FOR MOBILE ===== */
@media (max-width: 768px) {
    .comparison-table {
        margin-top: 40px;
        overflow-x: visible;
    }

    .comparison-table table {
        min-width: auto;
        border-collapse: visible;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody,
    .comparison-table tr {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 25px;
        border: 1px solid var(--light-gray);
        border-radius: var(--border-radius-sm);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }

    .comparison-table td {
        display: block;
        text-align: right;
        padding: 15px 20px;
        border-bottom: 1px solid var(--light-gray);
        position: relative;
        padding-left: 50%;
        min-height: 45px;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        font-weight: 600;
        color: var(--primary-color);
        text-align: left;
        width: 45%;
    }

    .comparison-table tr:hover {
        background: var(--white);
    }
}

@media (max-width: 480px) {
    .service-comparison {
        padding: 80px 0;
    }

    .comparison-table td {
        padding: 12px 15px;
        padding-left: 45%;
        font-size: 0.95rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
    }

    .comparison-table tr {
        margin-bottom: 20px;
    }

    .comparison-table td:before {
        font-size: 0.9rem;
        width: 40%;
        left: 15px;
    }
}

/* ===== FAQ SECTION FOR SERVICES ===== */
.contact-faq {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--light-color);
}

.faq-answer[hidden] {
    display: block;
}

.faq-answer[hidden] ~ .faq-answer {
    max-height: 0;
    padding: 0 25px;
}

.faq-answer:not([hidden]) {
    max-height: 500px;
    padding: 25px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===== FOOTER (CONSISTENT ACROSS ALL PAGES) ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0d4d0d 100%);
    color: var(--white);
    padding: 110px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    position: relative;
    z-index: 2;
    margin-bottom: 65px;
}

.footer-section h3 {
    font-size: 1.85rem;
    margin-bottom: 28px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 14px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 18px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
    display: block;
    padding: 5px 0;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

#newsletterForm {
    display: flex;
    margin-top: 25px;
}

#newsletterForm input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

#newsletterForm button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 28px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

#newsletterForm button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

/* ===== BACK TO TOP BUTTON (CONSISTENT ACROSS ALL PAGES) ===== */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 42px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    will-change: transform, opacity;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ===== FORM VALIDATION STYLES (CONSISTENT ACROSS ALL PAGES) ===== */
.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    min-height: 1.5em;
    padding-left: 5px;
}

input.error,
select.error,
textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

/* Form button loading state */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Notification styles for form feedback */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.notification.success {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.notification.error {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

@keyframes slideIn {
    from { transform: translateX(150px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== ACCESSIBILITY IMPROVEMENTS (CONSISTENT ACROSS ALL PAGES) ===== */
/* Focus states already handled with modern styling */

/* Skip to content link (hidden until focused) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== RESPONSIVE DESIGN - COMPLETELY FIXED ===== */
@media (max-width: 1200px) {
    .container,
    .nav-container {
        padding: 0 40px;
    }
    
    .services-header-content h1 {
        font-size: 3.3rem;
    }
    
    .service-detail-content h2 {
        font-size: 2.5rem;
    }
    
    .service-options {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .option-card {
        padding: 35px 25px;
    }
    
    .service-cta {
        gap: 15px;
    }
    
    .service-cta .btn {
        padding: 14px 40px;
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-card {
        padding: 40px 30px;
    }
    
    .benefit-card i {
        font-size: 3.3rem;
    }
    
    .benefit-card h3 {
        font-size: 1.65rem;
    }
    
    .comparison-table table {
        font-size: 0.95rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 18px 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .footer-grid {
        gap: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.7rem;
    }
    
    .footer-section ul li a {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    #newsletterForm input {
        padding: 13px 15px;
        font-size: 0.95rem;
    }
    
    #newsletterForm button {
        padding: 0 22px;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 1rem;
        padding-top: 30px;
    }
    
    .back-to-top {
        bottom: 100px;
        right: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
    }
    
    .whatsapp-icon {
        font-size: 26px !important;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .success-content {
        padding: 50px 30px;
    }
    
    .success-title {
        font-size: 2.1rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
    
    .success-btn {
        padding: 14px 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .container,
    .nav-container {
        padding: 0 35px;
    }
    
    .nav-menu {
        gap: 28px;
    }
    
    .btn-primary-nav-main {
        padding: 9px 22px;
        font-size: 1rem;
        height: 40px;
    }
    
    .services-header {
        height: 700px;
        padding-top: 75px;
    }
    
    .services-header-content h1 {
        font-size: 3.8rem;
    }
    
    .services-header-content h1 span {
        font-size: 3.6rem;
    }
    
    .services-header-content p {
        font-size: 1.35rem;
        padding: 0 15px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-detail-image {
        max-width: 100%;
    }
    
    .service-detail-content {
        text-align: center;
    }
    
    .service-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding-right: 0px;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    .what_we_do_4 {
    max-width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}


.Services_detailing {
    max-width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.services-header-content {
    text-align: center;
    max-width: 100%;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
}


.Services_detailing_2 {
    max-width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
    .option-card {
        padding: 40px 30px;
    }
    
    .service-cta {
        justify-content: center;
        margin-top: 35px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 45px 35px;
    }
    
    .benefit-card i {
        font-size: 2.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.85rem;
    }
    
    .contact-faq {
        padding: 110px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.7rem;
    }
    
    .footer-section ul li a {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    #newsletterForm input {
        padding: 13px 15px;
        font-size: 0.95rem;
    }
    
    #newsletterForm button {
        padding: 0 22px;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 1rem;
        padding-top: 30px;
    }
    
    .back-to-top {
        bottom: 100px;
        right: 28px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
    }
    
    .whatsapp-icon {
        font-size: 26px !important;
    }
    
    .success-content {
        padding: 45px 25px;
    }
    
    .success-title {
        font-size: 1.9rem;
    }
    
    .success-message {
        font-size: 1.05rem;
    }
    
    .success-btn {
        padding: 12px 40px;
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    /* CRITICAL: FIXED NAVBAR CONTAINER WIDTH */
    .nav-container {
        padding: 0 25px;
        height: 70px;
    }
    
    .logo img {
        height: 75px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hide desktop menu */
    .nav-menu-container {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, box-shadow 0.3s ease;
        z-index: 9998;
    }
    
    .nav-menu-container.active {
        max-height: 500px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Mobile menu styling */
    .nav-menu {
        flex-direction: column;
        padding: 25px 0;
        gap: 15px;
        align-items: center;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 12px 0;
        display: block;
        width: 100%;
    }
    
    /* Mobile button styling */
    .btn-primary-nav-main {
        display: block;
        width: calc(100% - 40px);
        margin: 15px auto 0;
        padding: 14px 20px;
        font-size: 1.15rem;
        height: auto;
    }
    
    /* Hamburger animation when active */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .container {
        padding: 0 25px;
    }
    
    .services-header {
        height: 500px;
        padding-top: 25px;
    }

    .service-detail {
    padding: 15px 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-header-content {
    text-align: center;
    max-width: 100%;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
}

.Services_detailing_2 {
    max-width: 100%;
    height: 60%;
    display: flex;
    padding-right: 0px;
    justify-content: space-between;
    flex-direction: column;
}
    
    .services-header-content h1 {
        font-size: 2.5rem;
    }
    
    .services-header-content h1 span {
        font-size: 3.4rem;
    }
    
    .hero-badge {
        padding: 8px 25px;
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .services-header-content p {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    #benefits-title{
    font-size: 2.3rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .service-detail-grid {
        gap: 50px;
    }
    
    .service-detail-content h2 {
        font-size: 2.2rem;
        text-align: left;
    }
    
    .service-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .option-card {
        padding: 35px 25px;
    }
    
    .option-card h4 {
        font-size: 1.5rem;
    }
    
    .service-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta .btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .contact-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .info-item {
        gap: 20px;
    }
    
    .info-item i {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .info-item h4 {
        font-size: 1.4rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .support-form input,
    .support-form select,
    .support-form textarea {
        padding: 14px;
        font-size: 1rem;
    }
    
    .btn-block {
        padding: 18px;
        font-size: 1.15rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-card {
        padding: 40px 30px;
    }
    
    .area-card i {
        font-size: 3.3rem;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }
    
    .stat-number {
        font-size: 1.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .feature-card i {
        font-size: 3.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.65rem;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 18px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.65rem;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    #newsletterForm input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    #newsletterForm button {
        padding: 0 20px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 1rem;
        padding-top: 25px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 24px !important;
    }
    
    .success-content {
        padding: 40px 20px;
    }
    
    .success-title {
        font-size: 1.7rem;
    }
    
    .success-message {
        font-size: 1.05rem;
    }
    
    .success-btn {
        padding: 12px 35px;
        font-size: 1.05rem;
    }

}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
        height: 55px;
    }
    
    .logo img {
        height: 65px;
    }
    
    .hamburger {
        width: 28px;
        height: 22px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .btn-primary-nav-main {
        padding: 12px;
        font-size: 1.1rem;
        width: calc(100% - 30px);
    }
    
    .navbar.scrolled {
        padding: 0px 0px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .services-header {
        height: 430px;
        padding-top: 5px;
    }
    
    .services-header-content h1 {
        font-size: 1.8rem;
        margin-top: 5px;
    }
    
    .services-header-content h1 span {
        font-size: 2.9rem;
    }
    
    .hero-badge {
        padding: 8px 20px;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .service-detail-image {
        max-width: 100%;
        display: none;
    }

    

.service-benefits {
    padding: 15px 0;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}


.services-header-content p {
    font-size: 0.9rem;
    padding: 0px;
}

.services-header-content {
    text-align: center;
    max-width: 100%;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.Services_detailing_2 {
    max-width: 100%;
    height: 40%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.Services_detailing {
    max-width: 100%;
    height: 40%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.service_list_2 {
    max-width: 100%;
    list-style: none;
    margin-top: 5px;
    padding-right: 0px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 0.75rem;
}

.service-detail-content h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}
    #benefits-description {
    font-size: 0.95rem;
    color: var(--gray);
    text-align: center;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.section-title {
    font-size: 2.1rem;
}

#benefits-title {
    font-size: 1.45rem;
}

#contact-faq-title {
    font-size: 1.45rem;
}

#contact-faq-description {
    font-size: 0.95rem;
    text-align: center;
    font-weight: 300;
}
    
.section-description {
    font-size: 1.05rem;
}

.service-detail {
    padding: 0px 0;
}

.service-detail-grid {
    margin-top: 0px;
    gap: 45px;
}

.service-detail-content h2 {
    padding-top: 35px;
    font-size: 1.2rem;
}

.service-list {
    gap: 12px;
}

.service-list li {
    font-size: 0.45rem;
}

.service-list i {
    font-size: 0.8rem;
}

.service-options {
    margin: 0px;
    gap: 18px;
}

.service-title {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1.7px;
    padding-left: 7px;
}


.service-list_2 i {
    color: var(--primary-color);
    font-size: 0.95rem;
    padding: 0px 0px;
    margin: 0px 0px;
}

.option-card {
    padding: 30px 20px;
}

.option-card h4 {
    font-size: 1rem;
}

.option-card p {
    font-size: 0.95rem;
}

.service-cta {
    margin-top: 35px;
    margin-left: 20px;
    gap: 10px;
}

.service-cta .btn {
    padding: 12px 35px;
    font-size: 0.7rem;
}

.benefits-grid {
    grid-template-columns: 1fr;
}

.benefit-card {
    padding: 35px 25px;
}

.benefit-card i {
    font-size: 2.2rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
}

.benefit-card p {
    font-size: 0.8rem;
}

.comparison-table {
    margin-top: 45px;
}

.comparison-table table {
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 15px;
}

.contact-faq {
    padding: 3px;
}

.faq-question {
    padding: 14px 16px;
    font-size: 1rem;
}

.faq-answer {
    padding: 16px;
}

.testimonials-grid {
    grid-template-columns: 1fr;
}

.testimonial-card {
    padding: 30px 20px;
}

.testimonial-text {
    font-size: 0.95rem;
}

.about-grid,
.contact-grid,
.support-grid {
    gap: 40px;
}

.stats {
    grid-template-columns: 1fr;
    padding: 20px;
}

.stat-number {
    font-size: 1.8rem;
}

.areas-grid {
    grid-template-columns: 1fr;
}

.area-card {
    padding: 35px 25px;
}

.service-detail-content p {
color: var(--gray);
margin-bottom: 25px;
line-height: 1.8;
font-size: 0.85rem;
}


.service-list {
    max-width: 100%;
    width: 100%;
    list-style: none;
    margin-top: 5px;
    padding: 0px 0px;
}

.service-list_2 {
    padding-left: 0px;
    list-style: none;
    list-style-type: none;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    
    .area-card i {
        font-size: 3rem;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .info-item {
        gap: 18px;
    }
    
    .info-item i {
        font-size: 1.8rem;
        min-width: 45px;
    }
    
    .info-item h4 {
        font-size: 1.35rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .support-form input,
    .support-form select,
    .support-form textarea {
        padding: 13px;
        font-size: 0.95rem;
    }
    
    .btn-block {
        padding: 16px;
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-card i {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .faq-answer {
        padding: 16px;
        font-size: 0.75rem;
    }
    
    .footer-grid {
        gap: 25px;
        grid-template-columns: repeat(1, 2fr);
    }
    
    .footer-section h3 {
        font-size: 1.35rem;
    }
    
    .footer-section ul li a {
        font-size: 0.75rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    #newsletterForm input {
        padding: 11px 12px;
        font-size: 0.65rem;
    }
    
    #newsletterForm button {
        padding: 0 10px;
        font-size: 0.65rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 20px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-detail-image img {
    width: 100%;
    height: 100%;
    display: none;
    transition: transform 0.5s ease;
    will-change: transform;
}
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        font-size: 22px !important;
    }
    
    .success-content {
        padding: 35px 15px;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 0.95rem;
    }
    
    .success-btn {
        padding: 10px 30px;
        font-size: 1.05rem;
    }
}


.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0d4d0d 100%);
    color: var(--white);
    padding: 20px 0 50px;
    position: relative;
    overflow: hidden;
}

/* ===== CRITICAL OVERFLOW PREVENTION (CONSISTENT ACROSS ALL PAGES) ===== */
body {
    overflow-x: hidden;
    width: 100%;
}

.container,
.nav-container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    body {
        width: 100%;
        overflow-x: hidden;
    }
}

/* Prevent navbar items from wrapping on desktop */
@media (min-width: 769px) {
    .nav-menu {
        white-space: nowrap;
    }
}

/* ===== FORM VALIDATION STYLES (CONSISTENT ACROSS ALL PAGES) ===== */
.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    min-height: 1.5em;
    padding-left: 5px;
}

input.error,
select.error,
textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

/* Form button loading state */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== ACCESSIBILITY IMPROVEMENTS (CONSISTENT ACROSS ALL PAGES) ===== */
/* Focus states already handled with modern styling */

/* Skip to content link (hidden until focused) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* Hide image only on small screens for residential */
@media (max-width: 768px) {
    #residential .service-detail-image {
        display: flex;
        flex-direction: column;
        justify-items: center;
    }

.Services_detailing {
    max-width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-between;
    flex-direction: column
}

    
    #residential .service-detail-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    #residential .service-detail-image {
        display: none;
        flex-direction: column;
    }
}

/* Other sections keep their images on all screens */


/*
#commercial .service-detail-image,
#deep .service-detail-image,
#emergency .service-detail-image,
#end-tenancy .service-detail-image,
#specialized .service-detail-image {
    display: block;
}

*/

/* ===== FORM ERROR MODAL ===== */
.form-error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.form-error-modal.show {
    opacity: 1;
    visibility: visible;
}

.error-content {
    background: white;
    border-radius: 28px;
    padding: 45px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(30px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: relative;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    color: white;
    font-size: 4rem;
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

.error-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.error-message {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 35px;
}

.error-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 16px 55px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    font-family: 'Poppins', sans-serif;
}

.error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}