
/* ============================================
   GLOBAL TYPOGRAPHY – Poppins Font
   ============================================ */

/* Import Poppins from Google Fonts (weights: 400, 500, 600, 700) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Apply Poppins to all elements */
* {
    font-family: 'Poppins', sans-serif;
}

/* Optional: fine-tune body text */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #555555; /* your body text color */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
}

/* Navigation links */
nav a, .nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Buttons */
.btn, button, .header-phone a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Footer */
footer, .footer-col a, .footer-col p {
    font-family: 'Poppins', sans-serif;
}


/* =============================================
   HEADER STYLES – Michaels Carpet Care
   Color Scheme: Primary #0D6EBD | Accent #8DC63F
   Dark Blue #084C85 | Text #1A1A1A / #555555
   ============================================= */

header {
    background: #FFFFFF;
    border-bottom: 1px solid #E3E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.header-flex {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}



/* Navigation menu */
nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

#navMenu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
    align-items: center;
}

#navMenu li {
    position: relative;
}

#navMenu a {
    text-decoration: none;
    font-weight: 500;
    color: #1A1A1A;
    font-size: 1rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
    white-space: nowrap;
}

#navMenu a:hover {
    color: #0D6EBD;
}

#navMenu a.active {
    color: #0D6EBD;
    border-bottom: 2px solid #0D6EBD;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #E3E7EB;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
    padding: 0.5rem 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    color: #555555;
    white-space: normal;
}

.dropdown-menu a:hover {
    background: #F5F7F9;
    color: #0D6EBD;
}

/* Header phone */
.header-phone a {
    background: #0D6EBD;
    color: #FFFFFF;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.header-phone a:hover {
    background: #084C85;
    transform: translateY(-1px);
}

/* Hamburger button (hidden by default) */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0D6EBD;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
    line-height: 1;
}

.hamburger:hover {
    background: #F5F7F9;
}

/* ========== RESPONSIVE (Mobile) ========== */
@media screen and (max-width: 768px) {
    .header-flex {
        padding: 0.8rem 1.5rem;
        position: relative;
    }

    .logo-img {
        height: 35px;
    }

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

    .hamburger {
        display: block;
        order: 2;
    }

    nav {
        order: 3;
        width: 100%;
        flex: none;
        justify-content: flex-start;
    }

    #navMenu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #FFFFFF;
        padding: 1rem 0;
        border-top: 1px solid #E3E7EB;
        margin-top: 0.8rem;
        gap: 0;
    }

    #navMenu.show {
        display: flex;
    }

    #navMenu li {
        width: 100%;
        text-align: left;
    }

    #navMenu a {
        display: block;
        padding: 0.8rem 0;
        white-space: normal;
    }

    /* Dropdown on mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: #F5F7F9;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.6rem 0 0.6rem 1.5rem;
        color: #555555;
    }

    .dropdown-menu a:hover {
        background: #FFFFFF;
    }

    .header-phone {
        order: 1;
    }

    .header-phone a {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* Extra small devices (370px and below) */
@media screen and (max-width: 370px) {
    .header-flex {
        padding: 0.6rem 1rem;
    }

   

    .header-phone a {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }

    .hamburger {
        font-size: 1.5rem;
    }

    #navMenu a {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }

    .dropdown-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0 0.5rem 1.2rem;
    }
}




.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('images/orignalsimg/e.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Overlay gradient: left dark to right transparent on desktop */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem;
}

.hero-content {
    max-width: 600px;
    margin-left: 0;
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Title */
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: #0D6EBD;
    background: linear-gradient(135deg, #0D6EBD, #8DC63F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* fallback */
    text-shadow: 0 0 0 #fff;
}

/* Description */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.8rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #0D6EBD;
    color: #fff;
    border: 2px solid #0D6EBD;
}

.btn-primary:hover {
    background: #084C85;
    border-color: #084C85;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    border-color: #8DC63F;
}

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

/* Mobile: full dark overlay & center content */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    .hero-overlay {
        background: rgba(0,0,0,0.85); /* full dark on mobile */
    }
    .hero-content {
        margin: 0 auto;
        text-align: center;
        max-width: 90%;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 0.95rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-badge {
        font-size: 0.7rem;
    }
}

/* Ensure container alignment */
.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Trust Badges – 3 cols desktop, 2 cols mobile */
.trust-badges {
    padding: 4rem 0;
    background: #fff;
}

.trust-badges .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trust-badges__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.trust-badges__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8DC63F;
    background: rgba(141, 198, 63, 0.1);
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.trust-badges__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.trust-badges__desc {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid – 3 columns on desktop */
.trust-badges__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Card styling */
.trust-badges__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #F5F7F9;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid #E3E7EB;
    transition: all 0.3s ease;
}

.trust-badges__item:hover {
    transform: translateY(-3px);
    border-color: #0D6EBD;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.trust-badges__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13,110,189,0.1), rgba(141,198,63,0.1));
    border-radius: 50%;
    color: #0D6EBD;
    font-size: 1.2rem;
}

.trust-badges__text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.4;
}

/* Responsive: 2 columns on mobile (≤768px) */
@media (max-width: 768px) {
    .trust-badges {
        padding: 2.5rem 0;
    }
    .trust-badges__title {
        font-size: 1.6rem;
    }
    .trust-badges__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .trust-badges__item {
        padding: 0.8rem 1rem;
    }
    .trust-badges__icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .trust-badges__text {
        font-size: 0.85rem;
    }
}

/* Extra small (≤480px) – keeps 2 columns but smaller padding */
@media (max-width: 480px) {
    .trust-badges .container {
        padding: 0 1rem;
    }
    .trust-badges__grid {
        gap: 0.8rem;
    }
    .trust-badges__item {
        padding: 0.6rem 0.8rem;
    }
}

/* Services Section – Bottom Overlay Only (Always Visible) */

.services-section {
    padding: 80px 0;
    background: #FFFFFF;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    color: #0D6EBD;
    margin-bottom: 10px;
    font-weight: 700;
}
.section-header p {
    font-size: 1.1rem;
    color: #555;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-image {
    position: relative;
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 3;
    width: 100%;
}
/* BOTTOM OVERLAY – ALWAYS VISIBLE, NO HOVER */

.service-btn {
    background: #8DC63F;
    color: #fff;
    padding: 6px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
    transition: all 0.2s;
}
.service-btn:hover {
    background: #fff;
    color: #0D6EBD;
    transform: scale(1.02);
}
/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
   
    }
   

@media (max-width: 550px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT BRIEF SECTION – Two Columns with Image
   Icons: Font Awesome (already included in layout)
   ============================================ */

.about-brief {
    padding: 80px 0;
    background: #F8FAFE;
}

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

/* Grid layout: 2 columns on desktop */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Image styling */
.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.about-image:hover img {
    transform: scale(1.02);
}

/* Content column */
.about-content h2 {
    font-size: 2.2rem;
    color: #0D6EBD;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.about-content h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #8DC63F;
    border-radius: 2px;
}
.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}
.btn-about {
    display: inline-block;
    background: #0D6EBD;
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    margin-bottom: 30px;
}
.btn-about:hover {
    background: #084C85;
    transform: translateX(5px);
}

/* Trust features grid (5 items, responsive) */
.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}
.feature i {
    font-size: 1.3rem;
    color: #8DC63F;
    width: 28px;
    text-align: center;
}
.feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A1A1A;
}
.feature:hover {
    background: #0D6EBD;
    transform: translateY(-2px);
}
.feature:hover i,
.feature:hover span {
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-brief {
        padding: 60px 0;
    }
    .about-grid {
        gap: 35px;
    }
    .about-content h2 {
        font-size: 1.9rem;
    }
    .trust-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-brief {
        padding: 50px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image {
        max-width: 100%;
        order: 1; /* image on top */
    }
    .about-content {
        order: 2;
        text-align: center;
    }
    .about-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .trust-features {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    .feature {
        justify-content: center;
    }
    .btn-about {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .about-brief {
        padding: 40px 0;
    }
    .about-content h2 {
        font-size: 1.6rem;
    }
    .about-content p {
        font-size: 0.9rem;
    }
    .feature span {
        font-size: 0.8rem;
    }
}
/* Image right alignment (desktop) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}
.about-image {
    order: 2;
}
.about-content {
    order: 1;
}

/* Reset order on mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image,
    .about-content {
        order: unset;
    }
}
/* Fix image size in about section */
.about-image {
    max-width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.about-image img {
    width: 100%;
    height: auto;
    max-height: 380px;     /* Limit height on desktop */
    object-fit: cover;     /* Maintain aspect ratio, crop if needed */
    display: block;
    transition: transform 0.3s;
}
.about-image:hover img {
    transform: scale(1.02);
}

/* Tablet */
@media (max-width: 992px) {
    .about-image img {
        max-height: 320px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-image img {
        max-height: 280px;
    }
}

/* ============================================
   HOW IT WORKS SECTION – 3 Step Cards
   Icons: Font Awesome (Google Fonts alternative)
   ============================================ */

.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F7F9 0%, #FFFFFF 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0D6EBD;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* 3‑column grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual step card */
.step-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #E3E7EB;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(13, 110, 189, 0.1);
    border-color: #0D6EBD;
}

/* Icon circle */
.step-icon {
    width: 85px;
    height: 85px;
    background: #0D6EBD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    background: #8DC63F;
    transform: scale(1.05);
}

.step-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

/* Card headings */
.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}

/* Card paragraph */
.step-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .steps-grid {
        gap: 25px;
    }
    .step-card {
        padding: 25px 20px;
    }
    .step-icon {
        width: 70px;
        height: 70px;
    }
    .step-icon i {
        font-size: 2rem;
    }
    .step-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .step-card {
        padding: 30px 20px;
    }
    .step-icon {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 480px) {
    .step-card p {
        font-size: 0.85rem;
    }
}

/* ============================================
   DRY VS STEAM SECTION – Comparison Cards
   ============================================ */

.dry-vs-steam {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFE 100%);
}

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

.ds-header {
    text-align: center;
    margin-bottom: 50px;
}

.ds-header h2 {
    font-size: 2.5rem;
    color: #0D6EBD;
    margin-bottom: 12px;
    font-weight: 700;
}

.ds-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid: 2 columns on desktop */
.ds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual cards */
.ds-card {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 35px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E3E7EB;
}

.ds-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(13, 110, 189, 0.1);
}

.ds-dry {
    border-top: 5px solid #8DC63F;
}
.ds-steam {
    border-top: 5px solid #D9534F;
}

/* Icons */
.ds-icon {
    width: 70px;
    height: 70px;
    background: #F0F4F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.ds-dry .ds-icon i {
    font-size: 2rem;
    color: #8DC63F;
}
.ds-steam .ds-icon i {
    font-size: 2rem;
    color: #D9534F;
}

.ds-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A1A1A;
}

/* Lists */
.ds-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ds-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
}
.ds-list i {
    width: 22px;
    font-size: 1.1rem;
}
.ds-dry .ds-list i {
    color: #8DC63F;
}
.ds-steam .ds-list i {
    color: #D9534F;
}

/* CTA button */
.ds-cta {
    text-align: center;
}
.btn-ds {
    display: inline-block;
    background: #0D6EBD;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(13, 110, 189, 0.2);
}
.btn-ds:hover {
    background: #084C85;
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(13, 110, 189, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .ds-grid {
        gap: 25px;
    }
    .ds-card {
        padding: 30px 25px;
    }
    .ds-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .dry-vs-steam {
        padding: 50px 0;
    }
    .ds-header h2 {
        font-size: 2rem;
    }
    .ds-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ds-card {
        padding: 25px 20px;
    }
    .ds-icon {
        width: 60px;
        height: 60px;
    }
    .ds-icon i {
        font-size: 1.6rem;
    }
    .ds-list li {
        font-size: 0.9rem;
    }
    .btn-ds {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ds-card h3 {
        font-size: 1.2rem;
    }
    .ds-list li {
        font-size: 0.85rem;
    }
}

/* ============================================
   TIPS SECTION – 4 Column Cards with Icons
   ============================================ */

.tips-section {
    padding: 80px 0;
    background: #F5F7F9;
}

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

.tips-header {
    text-align: center;
    margin-bottom: 50px;
}

.tips-header h2 {
    font-size: 2.5rem;
    color: #0D6EBD;
    margin-bottom: 12px;
    font-weight: 700;
}

.tips-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid – 4 columns on desktop */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Tip card */
.tip-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #E3E7EB;
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(13, 110, 189, 0.08);
    border-color: #0D6EBD;
}

/* Icon circle */
.tip-icon {
    width: 70px;
    height: 70px;
    background: #0D6EBD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    transition: all 0.3s;
}

.tip-card:hover .tip-icon {
    background: #8DC63F;
    transform: scale(1.05);
}

.tip-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

/* Card content */
.tip-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* CTA button */
.tips-cta {
    text-align: center;
}

.btn-tips {
    display: inline-block;
    background: #0D6EBD;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-tips:hover {
    background: #084C85;
    transform: translateX(5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tips-section {
        padding: 50px 0;
    }
    .tips-header h2 {
        font-size: 2rem;
    }
    .tips-header p {
        font-size: 1rem;
    }
    .tip-card {
        padding: 25px 15px;
    }
    .tip-icon {
        width: 60px;
        height: 60px;
    }
    .tip-icon i {
        font-size: 1.5rem;
    }
    .tip-card h3 {
        font-size: 1.1rem;
    }
    .btn-tips {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 550px) {
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ============================================
   AREAS WE SERVE SECTION – 5 Cards with Images
   ============================================ */

.areas-preview {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0D6EBD;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid – 5 cards on desktop, responsive */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* Individual card */
.area-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E3E7EB;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(13, 110, 189, 0.1);
    border-color: #0D6EBD;
}

/* Image container (fixed aspect) */
.area-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s;
}

.area-card:hover .area-image {
    transform: scale(1.02);
}

/* Content area */
.area-content {
    padding: 20px;
    text-align: center;
}

.area-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.area-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Button */
.area-btn {
    display: inline-block;
    background: #0D6EBD;
    color: #fff;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.area-btn:hover {
    background: #8DC63F;
    transform: scale(1.02);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .areas-preview {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .area-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 550px) {
    .areas-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    .area-image {
        height: 180px;
    }
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet: 2 cards per row */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 card per row */
@media (max-width: 550px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   CTA SECTION – Curve Background + Premium Styling
   ============================================ */

.cta {
    position: relative;
    background: linear-gradient(135deg, #0D6EBD 0%, #063a5e 100%);
    padding: 70px 0 80px;
    text-align: center;
    margin-top: 60px;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

/* Optional: add a soft wave at the bottom (curved shape) */
.cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".2" fill="white"/></svg>') repeat-x;
    background-size: 1200px 40px;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    font-weight: 400;
}

/* Buttons container */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

/* Glassmorphism button style */
.btn-light {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    color: #0D6EBD;
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-light:hover {
    background: #8DC63F;
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    border-color: transparent;
}

.btn-accent {
    background: #8DC63F;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-accent:hover {
    background: #FFFFFF;
    color: #0D6EBD;
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Quick links section – modern pill design */
.cta-links {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 30px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    align-items: baseline;
}
.cta-links span {
    font-weight: 600;
    background: rgba(0,0,0,0.2);
    padding: 5px 12px;
    border-radius: 40px;
}
.cta-links a {
    color: #FFD966;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 40px;
    transition: all 0.2s;
}
.cta-links a:hover {
    background: #FFFFFF;
    color: #0D6EBD;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .cta {
        padding: 50px 0 60px;
        border-radius: 30px 30px 0 0;
    }
    .cta h2 {
        font-size: 1.8rem;
    }
    .cta p {
        font-size: 1rem;
    }
    .btn-light, .btn-accent {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    .cta-links span, .cta-links a {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 1.5rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-light, .btn-accent {
        width: 80%;
        justify-content: center;
    }
    .cta-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .cta-links span {
        background: none;
        padding: 0;
    }
}

.about-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%), 
                url('../images/Dry Carpet Cleaning/a.jpeg') center 30% / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-blend-mode: overlay;
}

/* Light blue overlay for better text contrast */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 0 0 40px 40px;
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   ABOUT INTRO SECTION – Clean & Elegant
   ============================================ */

.about-intro {
    margin-bottom: 2.5rem;
    border-left: 4px solid #8DC63F;
    padding-left: 1.8rem;
}
.about-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}
.about-intro strong {
    color: #0D6EBD;
    font-weight: 700;
}
.about-intro p:last-child {
    margin-bottom: 0;
}

/* ============================================
   WHY CHOOSE US + CLIENT IMAGE – Modern Grid
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    background: #F9FBFD;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}

/* Left column (text) */
.about-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0D6EBD;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.about-text h2:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #8DC63F;
    border-radius: 2px;
}
.about-text p {
    margin: 1rem 0;
    line-height: 1.6;
    color: #555;
}
.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem 1rem;
}
.about-text li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
    color: #333;
    transition: transform 0.2s;
}
.about-text li:hover {
    transform: translateX(4px);
}
.about-text li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #8DC63F;
    font-size: 1rem;
    width: 1.2rem;
    text-align: center;
}

/* Right column (image) */
.about-image {
    text-align: center;
}
.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.2);
}
.image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #0D6EBD;
    font-size: 0.9rem;
    background: rgba(13,110,189,0.05);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    backdrop-filter: blur(2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-grid {
        gap: 2rem;
        padding: 1.5rem;
    }
    .about-text h2 {
        font-size: 1.6rem;
    }
    .about-text ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .about-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-text ul {
        text-align: left;
        max-width: 280px;
        margin: 1rem auto;
    }
    .about-image img {
        max-width: 100%;
    }
    .about-intro {
        border-left-width: 2px;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.4rem;
    }
    .about-text li {
        font-size: 0.85rem;
    }
}

/* ============================================
   EXPERIENCE SECTION (40+ Years)
   ============================================ */

.about-experience {
    position: relative;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
    border-radius: 32px;
    padding: 2rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid #8DC63F;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}
.about-experience h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0D6EBD;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-experience h2::before {
    content: "\f073"; /* Font Awesome calendar icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 1.8rem;
    color: #8DC63F;
}
.about-experience p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION (Two Columns)
   ============================================ */

.about-services {
    margin: 3rem 0;
}
.about-services h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0D6EBD;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}
.about-services h2:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 55px;
    height: 3px;
    background: #8DC63F;
    border-radius: 2px;
}
.about-services > p {
    margin-bottom: 2rem;
    color: #555;
}

.services-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #F9FBFD;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}
.services-two-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-two-col li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    transition: transform 0.2s;
}
.services-two-col li:hover {
    transform: translateX(4px);
}
.services-two-col li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #8DC63F;
    font-weight: bold;
    font-size: 1rem;
}
/* Optional: use Font Awesome icon instead of the plain check */
.services-two-col li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #8DC63F;
    width: 1.2rem;
    font-size: 0.95rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .services-two-col {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    .about-experience {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-experience h2 {
        font-size: 1.5rem;
    }
    .about-experience h2::before {
        font-size: 1.5rem;
    }
    .about-services h2 {
        font-size: 1.5rem;
    }
    .services-two-col li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-experience {
        padding: 1rem;
    }
    .services-two-col {
        padding: 1rem;
    }
}

/* ============================================
   HIGHLIGHT CARDS (Eco & Difference)
   ============================================ */

.about-highlight-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}
.card {
    background: #FFFFFF;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #E9EDF2;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -12px rgba(13, 110, 189, 0.15);
    border-color: #0D6EBD;
}
.card i {
    font-size: 2.5rem;
    background: #F0F4F8;
    width: 70px;
    height: 70px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}
.card:hover i {
    background: #0D6EBD;
    color: #FFFFFF;
}
.eco-card i {
    color: #8DC63F;
}
.diff-card i {
    color: #0D6EBD;
}
.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}
.card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}
.diff-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1.2rem;
}
.diff-card li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: #444;
}
.diff-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8DC63F;
    font-weight: bold;
}

/* ============================================
   FAQ SECTION – Accordion Style Grid
   ============================================ */

.about-faq {
    background: #F5F7F9;
    border-radius: 2rem;
    padding: 2.5rem;
    margin: 2rem 0;
}
.about-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-faq h2:after {
    left: 50%;
    transform: translateX(-50%);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.faq-item {
    background: #FFFFFF;
    border-radius: 1.2rem;
    padding: 1.3rem 1.5rem;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    border: 1px solid #E3E7EB;
}
.faq-item:hover {
    transform: translateX(5px);
    border-left: 3px solid #0D6EBD;
    box-shadow: 0 8px 18px rgba(0,0,0,0.03);
}
.faq-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0D6EBD;
    margin-bottom: 0.5rem;
    padding-left: 1.8rem;
    position: relative;
}
.faq-item strong:before {
    content: "?";
    position: absolute;
    left: 0;
    top: -2px;
    background: #8DC63F;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}
.faq-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    padding-left: 0;
    color: #555;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-highlight-cards {
        gap: 1.5rem;
    }
    .diff-card ul {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .about-highlight-cards {
        grid-template-columns: 1fr;
    }
    .card i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .card h3 {
        font-size: 1.3rem;
    }
    .about-faq {
        padding: 1.5rem;
    }
    .faq-item {
        padding: 1rem;
    }
}
@media (max-width: 480px) {
    .card {
        padding: 1.5rem;
    }
    .faq-item strong:before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

/* ============================================
   CONTACT PAGE – Hero, Grid, Form, Icons
   ============================================ */

/* Hero Section with Background Image */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%), 
                url('../images/orignalsimg/k.jpeg') center 30% / cover no-repeat;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
    background-blend-mode: overlay;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(135, 206, 235, 0.15);
    border-radius: 0 0 50px 50px;
    display: none;
}
.contact-hero .container {
    position: relative;
    z-index: 2;
}
.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}
.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Main Container */
.page-container {
    background: #F5F7F9;
    padding: 20px 0 60px;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Column Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-card, .services-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid #E3E7EB;
}
.info-card h2, .services-card h3 {
    font-size: 1.6rem;
    color: #0D6EBD;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
    flex-wrap: wrap;
}
.info-detail i {
    width: 25px;
    color: #8DC63F;
    font-size: 1.1rem;
}
.info-detail a {
    color: #0D6EBD;
    text-decoration: none;
}
.info-detail a:hover {
    text-decoration: underline;
}
.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #444;
}
.services-list i {
    color: #8DC63F;
    font-size: 0.9rem;
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid #E3E7EB;
}
.form-card h2 {
    font-size: 1.6rem;
    color: #0D6EBD;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-card p {
    color: #777;
    margin-bottom: 25px;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #E3E7EB;
    border-radius: 16px;
    font-size: 1rem;
    transition: 0.2s;
    background: #F9FBFD;
}
.form-input:focus {
    outline: none;
    border-color: #0D6EBD;
    box-shadow: 0 0 0 3px rgba(13,110,189,0.1);
}
.submit-btn {
    background: #0D6EBD;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.submit-btn:hover {
    background: #084C85;
    transform: translateX(4px);
}
.form-response {
    margin-top: 20px;
}
.success-msg {
    background: #E6F4E8;
    color: #2E7D32;
    padding: 12px;
    border-radius: 16px;
    display: block;
}
.error-msg {
    background: #FEF6F6;
    color: #D32F2F;
    padding: 12px;
    border-radius: 16px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
    .info-card, .services-card, .form-card {
        padding: 20px;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
    .info-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ============================================
   GLOBAL CONTAINER & PAGE SIZING
   Fixes for mobile & desktop
   ============================================ */

/* Base container – used on all pages */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* For full‑width sections with background */
section {
    width: 100%;
    overflow-x: hidden;
}

/* Prevent horizontal scroll on body */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure all images and media scale */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Responsive container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Optional: fix for your page-container class */
.page-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Ensure all grid elements inside container don't overflow */
.container > *,
.page-container > * {
    max-width: 100%;
}


/* ========== CHATBOT – GLASS MORPHISM ========== */
.chatbot-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* Floating Toggle Button */
.chat-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D6EBD, #084C85);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-toggle i {
    font-size: 30px;
    color: white;
    position: absolute;
    transition: opacity 0.2s, transform 0.2s;
}
.chat-toggle .close-icon {
    opacity: 0;
    transform: rotate(-90deg);
}
.chat-toggle.active .fa-comment-dots {
    opacity: 0;
    transform: rotate(90deg);
}
.chat-toggle.active .close-icon {
    opacity: 1;
    transform: rotate(0);
}
.chat-toggle:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #084C85, #0D6EBD);
}

/* Chat Window – Glassmorphic */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.chat-header {
    background: rgba(13, 110, 189, 0.9);
    backdrop-filter: blur(8px);
    padding: 15px 20px;
    border-radius: 28px 28px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}
.header-title i {
    font-size: 1.4rem;
}
.chat-minimize {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
}
.chat-messages {
    height: 350px;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.user-message, .bot-message {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    max-width: 85%;
}
.user-message {
    margin-left: auto;
    flex-direction: row-reverse;
}
.user-message .message-text {
    background: #0D6EBD;
    color: white;
    border-radius: 20px 20px 4px 20px;
}
.bot-message .message-text {
    background: rgba(240, 244, 248, 0.9);
    backdrop-filter: blur(2px);
    color: #1A1A1A;
    border-radius: 20px 20px 20px 4px;
}
.message-text {
    padding: 10px 14px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
}
.bot-message i {
    font-size: 1.2rem;
    color: #0D6EBD;
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(240,244,248,0.9);
    border-radius: 24px;
    width: fit-content;
}
.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #0D6EBD;
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse {
    0%, 60%, 100% { transform: scale(1); opacity: 0.4; }
    30% { transform: scale(1.3); opacity: 1; }
}
.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.7);
}
.quick-btn {
    background: rgba(13,110,189,0.1);
    border: none;
    border-radius: 40px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0D6EBD;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.quick-btn i { font-size: 0.8rem; }
.quick-btn:hover {
    background: #0D6EBD;
    color: white;
}
.chat-input-area {
    display: flex;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.8);
    border-radius: 0 0 28px 28px;
}
.chat-input-area input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 0.85rem;
    background: transparent;
    outline: none;
}
.chat-input-area button {
    background: #0D6EBD;
    border: none;
    padding: 0 18px;
    border-radius: 0 0 28px 0;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}
.chat-input-area button:hover {
    background: #084C85;
}
@media (max-width: 550px) {
    .chat-window { width: calc(100vw - 30px); right: 0; bottom: 70px; }
    .chat-toggle { width: 55px; height: 55px; bottom: 15px; right: 15px; }
}

/* ========== CHATBOT – MODERN MESSAGE STYLING ========== */

/* Chat window container */
.chat-window {
    font-family: 'Poppins', sans-serif;
}

/* Messages container */
.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: #F9FBFD;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
    background: #E9EDF2;
    border-radius: 10px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: #0D6EBD;
    border-radius: 10px;
}

/* Message bubbles */
.user-message, .bot-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 85%;
    animation: fadeInUp 0.2s ease;
}
.user-message {
    margin-left: auto;
    flex-direction: row-reverse;
}
.bot-message {
    margin-right: auto;
}

/* Message text */
.message-text {
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    line-height: 1.45;
    word-wrap: break-word;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.user-message .message-text {
    background: #0D6EBD;
    color: white;
    border-bottom-right-radius: 4px;
}
.bot-message .message-text {
    background: white;
    color: #1A1A1A;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid #E3E7EB;
}

/* Bot avatar icon */
.bot-message i {
    background: #0D6EBD;
    color: white;
    border-radius: 50%;
    padding: 8px;
    font-size: 12px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 10px 16px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid #E3E7EB;
    margin: 4px 0;
}
.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #8DC63F;
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; background: #0D6EBD; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick reply buttons – improved */
.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
    background: #FFFFFF;
    border-top: 1px solid #E9EDF2;
}
.quick-btn {
    background: #F0F4F8;
    border: none;
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0D6EBD;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.quick-btn i {
    font-size: 0.8rem;
}
.quick-btn:hover {
    background: #0D6EBD;
    color: white;
    transform: translateY(-1px);
}

/* Input area */
.chat-input-area {
    display: flex;
    align-items: center;
    background: white;
    border-top: 1px solid #E9EDF2;
    border-radius: 0 0 20px 20px;
}
.chat-input-area input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 0.85rem;
    outline: none;
    background: transparent;
    font-family: inherit;
}
.chat-input-area button {
    background: #0D6EBD;
    border: none;
    padding: 0 18px;
    height: 48px;
    border-radius: 0 0 20px 0;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.1rem;
}
.chat-input-area button:hover {
    background: #084C85;
}

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

/* Responsive tweaks */
@media (max-width: 550px) {
    .user-message, .bot-message {
        max-width: 90%;
    }
    .message-text {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    .quick-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    .chat-input-area input {
        padding: 12px;
    }
    .chat-input-area button {
        height: 44px;
        padding: 0 14px;
    }
}


.services-section {
    padding: 80px 0;
    background: #FFFFFF;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    color: #0D6EBD;
    margin-bottom: 10px;
    font-weight: 700;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-image {
    position: relative;
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 3;
    width: 100%;
}

.service-btn {
    background: #8DC63F;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
    transition: 0.2s;
}
.service-btn:hover {
    background: #fff;
    color: #0D6EBD;
}
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ========== HOME PAGE STYLE SERVICES (image cards with bottom overlay) ========== */
.services-section {
    padding: 80px 0;
    background: #F8FAFE;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    color: #0D6EBD;
    margin-bottom: 10px;
}
.services-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card-home {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card-home:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-image {
    position: relative;
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 3;
    width: 100%;
}
.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(13,110,189,0.9), rgba(13,110,189,0.6));
    padding: 15px 12px;
    text-align: center;
    color: white;
    
    border-radius: 0 0 20px 20px;
}
.service-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.service-overlay p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.service-btn {
    background: #8DC63F;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
    transition: 0.2s;
}
.service-btn:hover {
    background: #fff;
    color: #0D6EBD;
}
/* ========== WHY CHOOSE SECTION (extra section) ========== */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.why-text h2 {
    font-size: 2.2rem;
    color: #0D6EBD;
    margin-bottom: 20px;
}
.why-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}
.why-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.why-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #1A1A1A;
}
.why-text li i {
    color: #8DC63F;
}
.btn-primary {
    background: #0D6EBD;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.2s;
}
.btn-primary:hover {
    background: #084C85;
    transform: translateX(5px);
}
.why-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
/* Responsive */
@media (max-width: 992px) {
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-grid-home {
        grid-template-columns: 1fr;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .why-text ul {
        text-align: left;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}
/* ============================================
   PAGE HERO SECTION – No White Overlay
   ============================================ */

.page-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%), 
                url('../images/Limestone Restoration/a.jpeg') center 30% / cover no-repeat;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
    overflow: hidden;
    background-blend-mode: overlay;
}

/* Light blue overlay for text readability */
.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(135, 206, 235, 0.15);
    border-radius: 0 0 50px 50px;
    pointer-events: none;
    display: none;
}

.page-hero .hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.page-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
        border-radius: 0 0 30px 30px;
    }
    .page-hero .hero-title {
        font-size: 2rem;
    }
    .page-hero .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 50px 0;
    }
    .page-hero .hero-title {
        font-size: 1.8rem;
    }
    .page-hero .hero-description {
        font-size: 0.9rem;
    }
}

/* ========== SERVICE AREAS PAGE – No Images ========== */

/* Hero Section – solid color, no image */
.areas-hero {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%), 
                url('../images/orignalsimg/n.jpeg') center 30% / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
    background-blend-mode: overlay;
}
.areas-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.areas-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Page container */
.page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intro text */
.areas-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1rem;
    color: #555;
    background: #F8FAFE;
    padding: 20px 25px;
    border-radius: 28px;
    border: 1px solid #E9EDF2;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* Area Card */
.area-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #E9EDF2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px rgba(13,110,189,0.08);
    border-color: #0D6EBD;
}
.area-icon {
    width: 65px;
    height: 65px;
    background: #F0F4F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: 0.2s;
}
.area-card:hover .area-icon {
    background: #0D6EBD;
}
.area-icon i {
    font-size: 1.8rem;
    color: #0D6EBD;
}
.area-card:hover .area-icon i {
    color: #fff;
}
.area-card strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}
.area-card span {
    font-size: 0.85rem;
    color: #777;
}

/* CTA Section */
.areas-cta {
    text-align: center;
    background: #F5F7F9;
    padding: 35px 25px;
    border-radius: 40px;
    margin-top: 20px;
    border: 1px solid #E9EDF2;
}
.areas-cta p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}
.btn-call {
    background: #0D6EBD;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.btn-call:hover {
    background: #084C85;
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .areas-hero {
        padding: 50px 0;
    }
    .areas-hero h1 {
        font-size: 2rem;
    }
    .areas-hero p {
        font-size: 1rem;
    }
    .areas-grid {
        gap: 18px;
    }
    .area-card {
        padding: 20px 15px;
    }
    .area-icon {
        width: 55px;
        height: 55px;
    }
    .area-icon i {
        font-size: 1.5rem;
    }
    .area-card strong {
        font-size: 1.1rem;
    }
}
@media (max-width: 550px) {
    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Tablet: 2 cards per row */
@media (max-width: 900px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 card per row */
@media (max-width: 550px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
.area-card small {
    display: block;
    font-size: 0.7rem;
    color: #8DC63F;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ============================================
   SERVICE DETAIL PAGE – UNIQUE CLASSES
   ============================================ */

/* Hero Section (unique class) */
.service-detail-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 110, 189, 0.5) 0%, rgba(6, 58, 94, 0.5) 100%), 
                linear-gradient(135deg, #87CEEB 0%, #87CEEB 100%);
    background-image: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%), 
                      url('../images/service-hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-blend-mode: overlay;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
    overflow: hidden;
}
.service-detail-hero .hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.service-detail-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
    line-height: 1.2;
}
.service-detail-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 25px;
}
.service-detail-hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.service-detail-hero .btn-primary {
    background: #fff;
    color: #0D6EBD;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-detail-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    background: #f0f0f0;
}
.service-detail-hero .btn-secondary {
    background: #8DC63F;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-detail-hero .btn-secondary:hover {
    background: #6AA32E;
    transform: translateY(-2px);
}

/* Service Detail Image */
.service-detail-image {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

/* Content container */
.service-detail-container {
    background: #F8FAFE;
    padding: 20px 0 60px;
}
.service-detail-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 45px 55px;
    border-radius: 32px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.03);
    border: 1px solid #E9EDF2;
}

/* Typography inside content */
.service-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 2rem 0 0.8rem;
    position: relative;
    padding-bottom: 10px;
}
.service-detail-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #8DC63F;
    border-radius: 2px;
}
.service-detail-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}
.service-detail-content ul, 
.service-detail-content ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}
.service-detail-content li {
    margin-bottom: 0.6rem;
    color: #555;
    font-size: 0.95rem;
}
.service-detail-content li strong {
    color: #0D6EBD;
}
.service-detail-content i.fa, 
.service-detail-content i.fas {
    color: #8DC63F;
    margin-right: 10px;
    width: 20px;
}

/* Service CTA */
.service-cta-card {
    background: #F5F7F9;
    text-align: center;
    padding: 35px 30px;
    border-radius: 28px;
    margin-top: 50px;
    border: 1px solid #E9EDF2;
}
.service-cta-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0D6EBD;
    margin-bottom: 12px;
}
.service-cta-card p {
    margin-bottom: 25px;
    font-size: 1rem;
}
.service-cta-card .btn-call {
    background: #0D6EBD;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.service-cta-card .btn-call:hover {
    background: #084C85;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .service-detail-hero {
        padding: 50px 0;
        border-radius: 0 0 30px 30px;
    }
    .service-detail-hero h1 {
        font-size: 1.8rem;
    }
    .service-detail-hero .hero-subtitle {
        font-size: 1rem;
    }
    .service-detail-content {
        padding: 30px 20px;
    }
    .service-detail-content h2 {
        font-size: 1.4rem;
    }
    .service-detail-hero .hero-buttons {
        gap: 12px;
    }
    .service-detail-hero .btn-primary,
    .service-detail-hero .btn-secondary {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .service-detail-hero h1 {
        font-size: 1.5rem;
    }
    .service-detail-content {
        padding: 20px 15px;
    }
    .service-cta-card {
        padding: 25px 20px;
    }
    .service-cta-card h3 {
        font-size: 1.3rem;
    }
}


/* ============================================
   AREA DETAIL PAGE – Universal Styles
   Works for all city pages (Allen, McKinney, etc.)
   ============================================ */

/* Hero Section */
.area-detail-hero {
    position: relative;
    background: linear-gradient(135deg, #0D6EBD 0%, #063a5e 100%);
    background-size: cover;
    background-position: center 30%;
    background-blend-mode: overlay;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}
.area-detail-hero .hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.area-detail-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.area-detail-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 25px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-buttons .btn-primary {
    background: #fff;
    color: #0D6EBD;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}
.hero-buttons .btn-secondary {
    background: #8DC63F;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-buttons .btn-secondary:hover {
    background: #6AA32E;
    transform: translateY(-2px);
}

/* Content container */
.area-detail-container {
    background: #F8FAFE;
    padding: 20px 0 60px;
}
.area-detail-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 45px 55px;
    border-radius: 32px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.03);
    border: 1px solid #E9EDF2;
}

/* Typography inside content */
.area-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 2rem 0 0.8rem;
    position: relative;
    padding-bottom: 10px;
}
.area-detail-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #8DC63F;
    border-radius: 2px;
}
.area-detail-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}
.area-detail-content ul, 
.area-detail-content ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}
.area-detail-content li {
    margin-bottom: 0.6rem;
    color: #555;
    font-size: 0.95rem;
}
.area-detail-content li strong {
    color: #0D6EBD;
}
.area-detail-content i.fa, 
.area-detail-content i.fas {
    color: #8DC63F;
    margin-right: 10px;
    width: 20px;
}

/* Service grid inside area page */
.services-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.service-item {
    background: #F8FAFE;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border-left: 3px solid #0D6EBD;
}
.service-item strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #1A1A1A;
}
.service-item span {
    font-size: 0.85rem;
    color: #555;
    margin-top: 6px;
    display: block;
}

/* CTA Card */
.area-cta-card {
    background: #F5F7F9;
    text-align: center;
    padding: 35px 30px;
    border-radius: 28px;
    margin-top: 50px;
    border: 1px solid #E9EDF2;
}
.area-cta-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0D6EBD;
    margin-bottom: 12px;
}
.area-cta-card p {
    margin-bottom: 25px;
}
.area-cta-card .btn-call {
    background: #0D6EBD;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.area-cta-card .btn-call:hover {
    background: #084C85;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .area-detail-hero {
        padding: 50px 0;
    }
    .area-detail-hero h1 {
        font-size: 1.8rem;
    }
    .area-detail-hero .hero-subtitle {
        font-size: 1rem;
    }
    .area-detail-content {
        padding: 30px 20px;
    }
    .area-detail-content h2 {
        font-size: 1.4rem;
    }
    .hero-buttons {
        gap: 12px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    .services-grid-list {
        grid-template-columns: 1fr;
    }
    .service-image {
        height: 250px;
    }
}

.area-detail-hero .hero-container,
.service-detail-hero .hero-container,
.area-hero .container,
.service-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.area-detail-hero h1,
.service-detail-hero h1,
.area-hero h1,
.service-hero h1 {
    word-break: break-word;
    max-width: 100%;
}


/* ========== GALLERY PAGE – MODERN GRID & HOVER EFFECTS ========== */

.gallery-hero {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%), 
                url('../images/orignalsimg/o.jpeg') center 30% / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
    background-blend-mode: overlay;
}
.gallery-hero h1 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
}
.gallery-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(13,110,189,0.1);
}

.gallery-link {
    position: relative;
    display: block;
    overflow: hidden;
}
.gallery-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-link:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13,110,189,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-weight: 500;
}
.gallery-link:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 2rem;
}
.gallery-overlay span {
    font-size: 0.9rem;
}

.gallery-caption {
    padding: 12px 15px;
    text-align: center;
    background: #fff;
}
.gallery-caption p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* Lightbox modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.lightbox-content img {
    width: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.2s;
}
.lightbox-close:hover {
    opacity: 0.7;
}

/* Empty state */
.gallery-empty {
    text-align: center;
    font-size: 1.2rem;
    color: #777;
    padding: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 50px 0;
    }
    .gallery-hero h1 {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    .gallery-image {
        height: 220px;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-image {
        height: 240px;
    }
}
/* ========== BLOG PAGE – MODERN CARD LAYOUT ========== */

.blog-hero {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%), 
                url('../images/Travertine Cleaning/b.jpeg') center 30% / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
    background-blend-mode: overlay;
}
.blog-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.blog-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

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

/* Blog grid – responsive cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E9EDF2;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(13, 110, 189, 0.08);
    border-color: #0D6EBD;
}

/* Blog card image */
.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: #F5F7F9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-image-placeholder i {
    font-size: 3rem;
    color: #0D6EBD;
    opacity: 0.5;
}

/* Card content */
.blog-card-content {
    padding: 20px 22px 25px;
}
.blog-card-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-card-content h2 a {
    text-decoration: none;
    color: #1A1A1A;
    transition: color 0.2s;
}
.blog-card-content h2 a:hover {
    color: #0D6EBD;
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid #E9EDF2;
    padding-top: 15px;
    margin-top: 5px;
}
.blog-card-date {
    font-size: 0.8rem;
    color: #777;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0D6EBD;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.read-more:hover {
    gap: 10px;
    color: #084C85;
}

/* Empty state */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
    background: #F8FAFE;
    border-radius: 32px;
    margin: 40px 0;
}
.blog-empty i {
    font-size: 4rem;
    color: #0D6EBD;
    opacity: 0.5;
    margin-bottom: 15px;
}
.blog-empty p {
    font-size: 1.1rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 50px 0;
    }
    .blog-hero h1 {
        font-size: 2rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-card-content {
        padding: 18px;
    }
    .blog-card-content h2 {
        font-size: 1.2rem;
    }
}

/* ========== BLOG SINGLE POST – MODERN, READABLE ========== */

.blog-single-hero {
    background: linear-gradient(135deg, #0D6EBD 0%, #063a5e 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
}
.blog-single-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    max-width: 850px;
    margin: 0 auto 20px;
    line-height: 1.3;
}
.blog-single-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}
.blog-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-single-meta i {
    font-size: 0.9rem;
}

.blog-single-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

.blog-single-featured-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.blog-single-content {
    background: #fff;
    border-radius: 28px;
    padding: 40px 45px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid #E9EDF2;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}
.blog-single-content p {
    margin-bottom: 1.2rem;
}
.blog-single-content h2,
.blog-single-content h3 {
    color: #1A1A1A;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}
.blog-single-content h2 {
    font-size: 1.6rem;
}
.blog-single-content ul,
.blog-single-content ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.8rem;
}
.blog-single-content li {
    margin-bottom: 0.5rem;
}
.blog-single-content strong {
    color: #0D6EBD;
}
.blog-single-content a {
    color: #0D6EBD;
    text-decoration: underline;
}

.blog-single-footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #E9EDF2;
    padding-top: 25px;
}
.share-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #555;
}
.share-btn {
    background: #F0F4F8;
    color: #0D6EBD;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}
.share-btn:hover {
    background: #0D6EBD;
    color: #fff;
    transform: translateY(-2px);
}
.back-to-blog {
    background: transparent;
    color: #0D6EBD;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #0D6EBD;
}
.back-to-blog:hover {
    background: #0D6EBD;
    color: #fff;
    transform: translateX(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-single-hero {
        padding: 50px 0 40px;
    }
    .blog-single-hero h1 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    .blog-single-meta {
        gap: 18px;
        font-size: 0.8rem;
    }
    .blog-single-content {
        padding: 25px 20px;
    }
    .blog-single-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .share-section {
        width: 100%;
        justify-content: center;
    }
    .back-to-blog {
        width: 100%;
        justify-content: center;
    }
}

/* Unique hero section */
.carpet-hero {
    position: relative;
    background-image: url('../images/orignalsimg/e.jpeg'); /* your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* No full overlay div – instead use pseudo-element with gradient */
.carpet-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%; /* Adjust width based on content width */
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none; /* So clicks pass through */
    z-index: 1;
}

/* Container */
.carpet-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Content box – left aligned, no extra background needed */
.carpet-hero-content {
    max-width: 600px;
    text-align: left;
    color: #fff;
}

/* Badge */
.carpet-hero-badge {
    display: inline-block;
    background: #8DC63F;
    color: #1A1A1A;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    margin-bottom: 1.5rem;
}

/* Title */
.carpet-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.carpet-hero-highlight {
    color: #8DC63F;
}

/* Description */
.carpet-hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.carpet-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.carpet-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.carpet-btn-primary {
    background: #0D6EBD;
    color: #fff;
}

.carpet-btn-primary:hover {
    background: #084C85;
    transform: translateY(-2px);
}

.carpet-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.carpet-btn-outline:hover {
    background: #fff;
    color: #0D6EBD;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .carpet-hero::before {
        width: 100%; /* On mobile, cover whole width for readability */
        background: linear-gradient(
            to right,
            rgba(0,0,0,0.7) 0%,
            rgba(0,0,0,0.6) 100%
        );
    }
    .carpet-hero-title {
        font-size: 2rem;
    }
    .carpet-hero-container {
        padding: 0 1rem;
    }
}
.carpet-hero {
    border-radius: 20px;
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: #F5F7F9;
    padding: 5rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0D6EBD;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(13, 110, 189, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.testimonials-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.testimonials-title .highlight {
    color: #8DC63F;
    position: relative;
}

.testimonials-desc {
    font-size: 1rem;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

/* Card */
.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #E3E7EB;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #0D6EBD20;
}

/* Stars */
.testimonial-stars {
    color: #F5B042;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Text */
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Author */
.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #E3E7EB;
    padding-top: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
    color: #1A1A1A;
}

.author-date {
    font-size: 0.75rem;
    color: #777;
}

.verified-badge {
    background: #8DC63F20;
    color: #5A8F2A;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 40px;
}

/* CTA */
.testimonials-cta {
    text-align: center;
}

.testimonials-cta .btn-primary {
    background: #0D6EBD;
    color: #fff;
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-cta .btn-primary:hover {
    background: #084C85;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    .testimonials-title {
        font-size: 1.8rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .testimonial-card {
        padding: 1.2rem;
    }
}

/* ============================================
   GLOBAL SECTION SPACING FIX
   Removes excessive gaps between all sections
   ============================================ */

/* Target all section-like containers on your home page */
section,
.services-preview,
.about-brief,
.how-it-works,
.dry-vs-steam,
.tips,
.areas-preview,
.testimonials-section,
.hero + section,
section + section,
div[class*="section"]:not(.container) {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Specifically reduce gaps between columns in grids */
.service-grid,
.testimonials-grid,
.footer-grid {
    gap: 1rem !important; /* Reduce from larger default */
}

/* Container margins – prevent extra space */
.container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Last section before footer */
section:last-of-type,
div[class*="section"]:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Increase spacing between CTA and footer */
.cta-section,
.call-to-action,
section:has(.hero-buttons):last-of-type {
    margin-bottom: 3rem !important;
    padding-bottom: 1.5rem !important;
}

/* Ensure footer doesn't overlap */
footer {
    margin-top: 0 !important;
    clear: both;
}
/* Add spacing between CTA section and footer */
.cta-section, 
section:has(.cta-buttons), 
section:last-of-type:not(footer) {
    margin-bottom: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Or specifically if your CTA has a class like .cta, .call-to-action */
.call-to-action,
.cta,
.cta-section {
    margin-bottom: 2.5rem !important;
}

/* Ensure footer itself doesn't pull up too high */
footer {
    margin-top: 0 !important;
    padding-top: 1rem !important;
}


.carpet-hero {
    background-image: url('../images/orignalsimg/e.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* ============================================
   HEADER & LOGO – PROPER SIZING
   ============================================ */

/* Logo image - bada size */
/* ============================================
   HEADER – STICKY, BIG LOGO, COMPACT HEIGHT
   ============================================ */

/* Sticky header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Header container – compact height */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 2rem;  /* Pehle 0.8rem tha – ab kam */
    min-height: 70px;       /* Minimum height set, but auto can expand if logo big */
}

/* Logo – aur bada */
.logo-img {
    max-height: 130px !important;   /* Bahut bada – aap 150px bhi kar sakte ho */
    width: auto;
    display: block;
}

/* Navigation center */
nav {
    flex: 2;
    display: flex;
    justify-content: center;
}
#navMenu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
#navMenu a {
    padding: 0.4rem 0;  /* Kam padding for compact look */
}

/* Phone button */
.header-phone {
    flex-shrink: 0;
}
.header-phone a {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

/* Responsive: mobile par logo thoda adjust */
@media (max-width: 768px) {
    .header-flex {
        padding: 0.3rem 1rem;
    }
    .logo-img {
        max-height: 80px !important;
    }
    #navMenu {
        display: none;
    }
    #navMenu.show {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 0.5rem 0;
    }
    nav {
        order: 3;
        width: 100%;
    }
}


/* Service Card Container */
.service-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.15);
}

/* Image wrapper */
.service-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 320px; /* Adjust as needed */
    display: flex;
    align-items: flex-end; /* Push overlay content to bottom */
}

/* Gradient Overlay – bottom to top fading */
.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, 
                rgba(13, 110, 189, 0.95) 0%,    /* solid blue at bottom */
                rgba(13, 110, 189, 0.7) 40%,
                rgba(13, 110, 189, 0.2) 70%,
                transparent 100%);
    color: #fff;
    transition: padding 0.3s ease;
}

/* Content inside overlay */
.service-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.service-overlay p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.service-btn {
    display: inline-block;
    background: #fff;
    color: #0D6EBD;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.service-btn:hover {
    background: #8DC63F;
    color: #fff;
    transform: translateX(4px);
}

/* Hover effect on overlay (optional, makes gradient a bit richer) */
.service-card:hover .service-overlay {
    padding-bottom: 1.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-image {
        height: 280px;
    }
    .service-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    .service-overlay h3 {
        font-size: 1.2rem;
    }
}



/* ============================================
   BLOG SINGLE PAGE – Michaels Carpet Care
   ============================================ */

.blog-single-hero {
    background: linear-gradient(135deg, #0D6EBD 0%, #084C85 100%);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}
.blog-single-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}
.blog-single-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.9;
}
.blog-single-meta i {
    margin-right: 0.5rem;
}
.blog-single-container {
    max-width: 850px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}
.blog-single-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
}
.blog-single-content h2 {
    color: #0D6EBD;
    margin: 2rem 0 1rem;
}
.blog-single-content h3 {
    color: #333;
    margin: 1.5rem 0 0.8rem;
}
.blog-single-content p {
    margin-bottom: 1.2rem;
}
.blog-single-content ul, .blog-single-content ol {
    margin: 1rem 0 1rem 1.8rem;
}
.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}
.blog-single-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E3E7EB;
}
.share-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.share-section span {
    font-weight: 500;
    color: #555;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #F5F7F9;
    border-radius: 50%;
    color: #0D6EBD;
    transition: all 0.2s;
    text-decoration: none;
}
.share-btn:hover {
    background: #0D6EBD;
    color: #fff;
    transform: translateY(-2px);
}
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0D6EBD;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.back-to-blog:hover {
    background: #084C85;
}
@media (max-width: 768px) {
    .blog-single-hero h1 {
        font-size: 2rem;
    }
    .blog-single-meta {
        gap: 1rem;
    }
    .blog-single-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .blog-single-hero {
        padding: 2.5rem 0;
    }
    .blog-single-hero h1 {
        font-size: 1.6rem;
    }
    .blog-single-content {
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER – PREMIUM STYLES (Michaels Carpet Care)
   ============================================ */

footer {
    background: linear-gradient(135deg, #F5F7F9 0%, #FFFFFF 100%);
    border-top: none;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
    padding: 3.5rem 0 1.8rem;
    margin-top: 5rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* Subtle top border accent */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #0D6EBD, #8DC63F, #0D6EBD);
    border-radius: 3px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Logo & brand area */
.footer-logo {
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.02);
}
.footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

/* Column headings */
.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A2C3E;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 0.8rem;
    border-left: 4px solid #8DC63F;
    letter-spacing: -0.2px;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    margin-bottom: 0.7rem;
}
.footer-col a {
    text-decoration: none;
    color: #5A6B7A;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
}
.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0D6EBD;
    transition: width 0.25s ease;
}
.footer-col a:hover {
    color: #0D6EBD;
    transform: translateX(6px);
}
.footer-col a:hover::after {
    width: 100%;
}

/* Contact paragraph */
.footer-col p {
    color: #5A6B7A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.7rem 0;
}
.footer-col p a {
    color: #0D6EBD;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-col p a:hover {
    color: #084C85;
    transform: none;
}
.footer-col p a:hover::after {
    display: none;
}

/* Divider */
.footer-bottom {
    text-align: center;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.85rem;
    color: #7A8A9A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    margin: 0;
}
.footer-bottom a {
    color: #0D6EBD;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #8DC63F;
}

/* Optional social icons placeholder – you can add them later */
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 34px;
    height: 34px;
    background: #E9F0F5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0D6EBD;
    transition: all 0.25s;
}
.footer-social a:hover {
    background: #0D6EBD;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .footer-container {
        padding: 0 1.5rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-logo-img {
        max-height: 48px;
    }
    .footer-col h4 {
        font-size: 1.05rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        gap: 1.5rem;
    }
    .footer-col a, .footer-col p {
        font-size: 0.85rem;
    }
    .footer-col h4 {
        font-size: 1rem;
    }
}
.footer-logo {
    margin-bottom: 1rem;
}
.footer-logo-img {
    max-height: 120px;  /* Pehle 60px tha – ab double size */
    width: auto;
    display: block;
}

/* Responsive - mobile par thoda kam lekin phir bhi bara */
@media (max-width: 768px) {
    .footer-logo-img {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        max-height: 70px;
    }
}


/* Mobile view (max-width: 768px) – logo bada karo */
@media (max-width: 768px) {
    .logo-img {
        max-height: 100px !important;   /* Apni marzi se size adjust karo – 80px, 100px, 120px */
        width: auto !important;
    }
}

/* Extra small devices (max-width: 480px) – aur bhi bada */
@media (max-width: 480px) {
    .logo-img {
        max-height: 90px !important;
    }
}

@media (max-width: 768px) {
    .header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    .logo-img {
        height: 80px !important;
    }
    .logo-text {
        font-size: 1.6rem !important;
    }
    .hamburger {
        display: block !important;
        font-size: 2rem;
        margin-left: auto;
        background: none;
        border: none;
    }
    .header-phone a {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
    }
    nav {
        width: 100%;
        order: 4;
    }
    #navMenu {
        display: none;
    }
    #navMenu.show {
        display: flex;
        flex-direction: column;
    }
}

/* Ensure hamburger button only shows ☰, no logo */
.hamburger {
    background: none !important;
    border: none !important;
    font-size: 2rem !important;
    font-family: monospace !important;
    color: #0D6EBD !important;
    padding: 0 10px !important;
    margin-left: auto !important;
    line-height: 1 !important;
}
/* Remove any pseudo-elements that might be adding content */
.hamburger::before,
.hamburger::after {
    content: none !important;
}
/* Make sure no logo image appears inside button */
.hamburger img,
.hamburger .logo,
.hamburger .logo-img {
    display: none !important;
}

.service-detail-hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
}
.service-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 110, 189, 0.2), rgba(13, 110, 189, 0.3));
    z-index: 1;
}
.service-detail-hero > * {
    position: relative;
    z-index: 2;
}

.footer-powered {
    text-align: center;
    font-size: 0.8rem;
    color: #777777;
    margin-top: 0.5rem;
}
.footer-powered a {
    color: #0D6EBD;
    text-decoration: none;
}
.footer-powered a:hover {
    text-decoration: underline;
}

/* ============================================
   WHY CHOOSE US – PREMIUM SECTION
   ============================================ */

.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 189, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #8DC63F 0%, #7AB830 100%);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #555555;
    font-weight: 400;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Benefit Card */
.benefit-card {
    background: #FFFFFF;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E3E7EB;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay on hover */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13, 110, 189, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #0D6EBD;
    box-shadow: 0 20px 40px rgba(13, 110, 189, 0.08);
}

/* Icon */
.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 110, 189, 0.08) 0%, rgba(141, 198, 63, 0.08) 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: #0D6EBD;
    transition: all 0.35s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #0D6EBD 0%, #084C85 100%);
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
}

/* Text */
.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.6rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* Benefit Tag */
.benefit-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    background: #F0F4F8;
    color: #0D6EBD;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-tag {
    background: #0D6EBD;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .benefit-card {
        padding: 1rem 0.8rem;
        border-radius: 14px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .benefit-card h3 {
        font-size: 0.9rem;
    }

    .benefit-card p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .benefit-tag {
        font-size: 0.55rem;
        padding: 0.1rem 0.6rem;
    }
}
/* ============================================
   WHY CHOOSE US – FULL STYLING
   ============================================ */

.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #8DC63F, #7AB830);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #555555;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Benefit Card */
.benefit-card {
    background: #FFFFFF;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E3E7EB;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #0D6EBD;
    box-shadow: 0 20px 40px rgba(13, 110, 189, 0.08);
}

/* Icon */
.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 110, 189, 0.08), rgba(141, 198, 63, 0.08));
    border-radius: 50%;
    font-size: 2rem;
    color: #0D6EBD;
    transition: all 0.35s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #0D6EBD, #084C85);
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
}

/* Text */
.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.6rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* Tag */
.benefit-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    background: #F0F4F8;
    color: #0D6EBD;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-tag {
    background: #0D6EBD;
    color: #FFFFFF;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    .benefit-card h3 {
        font-size: 1rem;
    }
    .benefit-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .benefit-card {
        padding: 1rem 0.8rem;
        border-radius: 14px;
    }
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    .benefit-card h3 {
        font-size: 0.9rem;
    }
    .benefit-card p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    .benefit-tag {
        font-size: 0.55rem;
        padding: 0.1rem 0.6rem;
    }
}


