/* ==========================================================================
   MR.CLEAN - Premium Web Stylesheet
   ========================================================================== */

:root {
    --primary: #009fe3;
    --primary-dark: #062e75;
    --primary-light: #e6f7ff;
    --teal: #009639;
    --teal-light: #e6f9ec;
    --accent: #8cc63f;
    --accent-light: #f3fbe9;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-slate: #1e293b;
    --dark-navy: #03173b;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #062e75, #00aeef);
    --gradient-teal: linear-gradient(135deg, #009639, #8cc63f);
    --gradient-accent: linear-gradient(135deg, #8cc63f, #009639);
    --gradient-dark: linear-gradient(135deg, #062e75, #03173b);

    /* Box Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 8px 30px rgba(0, 162, 232, 0.35);
}

/* Base resets */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #0A2540;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-slate);
    background: var(--light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

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

/* Background Animated Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.28;
    animation: blobFloat 25s ease-in-out infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: #8b5cf6;
    top: 40%;
    left: 45%;
    animation-delay: -14s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(60px, -50px) scale(1.08);
    }

    66% {
        transform: translate(-40px, 40px) scale(0.95);
    }

    100% {
        transform: translate(50px, -20px) scale(1.04);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Top Notification Bar */
.top-bar {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-left span {
    margin-right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.top-bar-right a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Full-width built-in Navbar styling */
.navbar {
    position: sticky;
    top: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    background: #ffffff;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 85px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 19px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-links a {
    color: var(--dark-slate);
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45) !important;
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 90px 0 75px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 50%), url('../images/slider.jpg');
    background-size: cover;
    background-position: right 20%;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--dark-navy);
}

.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-booking-badge {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.25);
}

.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.hero-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-slate);
}

.hero-check-item i {
    color: #ff9800;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Premium Lead Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 38px;
    position: relative;
    box-shadow: 0 20px 50px rgba(11, 19, 41, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-form-card::after {
    display: none;
}

.pulse-glow {
    animation: pulseGlow 1.5s ease-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0px rgba(14, 165, 233, 0.5);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(14, 165, 233, 0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 26px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 800;
}

.form-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    z-index: 1;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    color: var(--dark);
    background: #f8fafc;
    transition: 0.3s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
    background: white;
}

/* Custom lead form check-up toggle */
.form-toggle-option {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.form-toggle-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.form-toggle-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-toggle-option label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark-slate);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.form-toggle-option label span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-submit {
    grid-column: 1 / -1;
    width: 100%;
    padding: 16px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    margin-top: 6px;
}

.btn-submit:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-submit img {
    width: 22px;
    height: 22px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-trust {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-trust i {
    color: var(--teal);
}

/* Stats Counter Section */
.stats-bar {
    background: var(--dark-navy);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 38px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Header Structure */
.section {
    padding: 90px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 17px;
    color: var(--dark-slate);
    opacity: 0.85;
    max-width: 650px;
    line-height: 1.7;
}

/* Services We Offer */
.services {
    background: var(--primary-light);
    background-image: radial-gradient(circle at 10% 90%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
}

/* Services Slider Carousel (User Reference Style) */
.services-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #0056d2;
    /* Royal Blue */
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.services-main-subtitle {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.services-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.services-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 28px;
    width: 100%;
    padding: 24px 8px;
    scrollbar-width: none;
    /* Firefox */
}

.services-slider::-webkit-scrollbar {
    display: none;
    /* Safari & Chrome */
}

.service-slide-card {
    flex: 0 0 calc(33.333% - 19px);
    /* 3 cards visible on desktop */
    scroll-snap-align: start;
    background: white;
    border-radius: 28px;
    padding: 44px 24px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.service-card-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid #e0f2fe;
    /* Light Blue outline border */
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

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

.service-slide-card:hover .service-card-circle {
    transform: scale(1.05);
    border-color: #bae6fd;
}

.service-card-info-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.service-card-info-content p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.5;
    font-weight: 500;
}

/* Overlapping Navigation Arrows */
.services-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #0056d2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
}

.services-arrow:hover {
    background: #0056d2;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 86, 210, 0.25);
}

.services-arrow.arrow-prev {
    left: -24px;
}

.services-arrow.arrow-next {
    right: -24px;
}

/* Responsiveness overrides */
@media (max-width: 992px) {
    .service-slide-card {
        flex: 0 0 calc(50% - 14px);
        /* 2 items visible */
    }

    .services-arrow.arrow-prev {
        left: -12px;
    }

    .services-arrow.arrow-next {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .service-slide-card {
        flex: 0 0 100%;
        /* 1 item visible */
    }

    .services-arrow.arrow-prev {
        left: 8px;
    }

    .services-arrow.arrow-next {
        right: 8px;
    }

    .services-main-title {
        font-size: 30px;
    }
}

/* Why Choose Us */
.why-us {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.why-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-content-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-content-text p {
    font-size: 14.5px;
    color: var(--dark-slate);
    opacity: 0.85;
}

.why-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.why-main-img {
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 6px solid white;
}

.why-badge-card {
    position: absolute;
    background: white;
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.wbc-1 {
    top: 30px;
    left: -20px;
    animation: floatingCard 6s ease-in-out infinite alternate;
}

.wbc-2 {
    bottom: 40px;
    right: -10px;
    animation: floatingCard 6s ease-in-out infinite alternate-reverse;
}

@keyframes floatingCard {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}

.wbc-icon {
    font-size: 24px;
}

.wbc-text h5 {
    font-size: 18px;
    font-weight: 800;
}

.wbc-text p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Draggable Before / After Slider Carousel */
.ba-comparison-wrapper {
    margin-top: 50px;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ba-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ba-tab-btn {
    background: white;
    border: 1.5px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-slate);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.ba-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.ba-tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.ba-slider-slides-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.ba-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.ba-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.ba-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: ew-resize;
}

.ba-img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    /* JS will update this width */
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.ba-before-img {
    width: 892px;
    /* Container width minus border (900px - 8px = 892px) */
    height: 480px;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ba-label.before-lbl {
    left: 20px;
    background: var(--danger);
    color: white;
}

.ba-label.after-lbl {
    right: 20px;
    background: var(--teal);
    color: white;
}

/* Side Navigation Arrows */
.ba-arrow {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--dark);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.ba-arrow:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.ba-arrow-prev {
    left: -23px;
}

.ba-arrow-next {
    right: -23px;
}

/* Dots Indicators */
.ba-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.ba-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ba-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Interactive Water Quality & Pricing Calculator */
.calculator-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
}

.calculator-wrapper {
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 50px;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.calc-inputs h4 {
    font-size: 22px;
    margin-bottom: 24px;
}

.calc-group {
    margin-bottom: 28px;
}

.calc-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 15px;
}

.calc-range-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.calc-range-wrapper input[type="range"] {
    flex: 1;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    accent-color: var(--primary);
    cursor: pointer;
}

.calc-bubble {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
}

.calc-select {
    width: 100%;
    padding: 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    font-size: 14.5px;
    background: #f8fafc;
}

.calc-select:focus {
    border-color: var(--primary);
}

.calc-results {
    background: var(--dark-navy);
    border-radius: 24px;
    padding: 40px 36px;
    color: white;
    position: relative;
    overflow: hidden;
}

.calc-results::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
}

.calc-results h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 28px;
}

.calc-val-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-val-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.calc-val-lbl {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 14px;
}

.calc-val-num {
    font-weight: 700;
    font-size: 16px;
}

#calcResultPrice {
    font-size: 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    color: var(--accent);
}

.score-display-card {
    padding: 12px 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.score-display-card.status-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.score-display-card.status-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.score-display-card.status-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.calc-book-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
    cursor: pointer;
}

.calc-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Our Process Timeline styling */
.process-section {
    background: var(--dark-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
}

.process-section .section-label {
    color: var(--accent);
}

.process-section .section-title {
    color: white;
}

.process-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent), var(--teal));
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .ps-content {
    text-align: right;
}

.ps-content {
    flex: 1;
}

.ps-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ps-content h4 {
    color: white;
    font-size: 22px;
    margin-bottom: 10px;
}

.ps-content p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.ps-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    border: 5px solid var(--dark-navy);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.2);
}

.process-step:nth-child(2) .ps-dot {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2);
}

.process-step:nth-child(3) .ps-dot {
    background: var(--primary-dark);
}

.process-step:nth-child(4) .ps-dot {
    background: var(--teal);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.2);
}

.ps-visual {
    flex: 1;
    text-align: center;
}

.ps-icon-big {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:nth-child(2) .ps-icon-big {
    color: var(--accent);
}

.process-step:nth-child(4) .ps-icon-big {
    color: var(--teal);
}

/* Subscription Plans - Redesigned */
.pricing-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    align-items: stretch;
}

.accent-text-gold {
    color: #c59218;
}

/* 3-Layer Card Styling for Clipped Borders + Drop Shadow */
.amc-card-container {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.amc-card-container:hover {
    transform: translateY(-8px);
}

.amc-card-border-wrapper {
    height: 100%;
    padding: 1.5px;
    /* Border thickness */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0 10px 25px rgba(15, 23, 42, 0.08));
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.amc-card-container:hover .amc-card-border-wrapper {
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
}

/* Individual border gradient colors */
.amc-silver-border {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.amc-gold-border {
    background: linear-gradient(135deg, #f5d061, #ca8e1d);
}

.amc-platinum-border {
    background: linear-gradient(135deg, #94a3b8, #4b779a);
}

.amc-diamond-border {
    background: linear-gradient(135deg, #67dbf0, #26a7be);
}

.amc-card {
    background: white;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

/* Card Header */
.amc-card-header {
    padding: 24px 15px 44px;
    text-align: center;
    color: white;
}

.silver-header {
    background: linear-gradient(135deg, #7f8d9f 0%, #abb7c5 100%);
}

.gold-header {
    background: linear-gradient(135deg, #ca8e1d 0%, #f3ce69 100%);
}

.platinum-header {
    background: linear-gradient(135deg, #4b779a 0%, #7da8cc 100%);
}

.diamond-header {
    background: linear-gradient(135deg, #26a7be 0%, #67dbf0 100%);
}

.amc-card-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

/* Shield Badge Overlap */
.amc-shield-container {
    position: relative;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.amc-shield {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    width: 76px;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amc-shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    font-size: 24px;
    z-index: 2;
}

/* Icons */
.silver-icon {
    color: #334155;
}

.gold-icon {
    color: #b45309;
}

.platinum-icon {
    color: #1e293b;
}

.diamond-icon {
    color: #0284c7;
}

/* Card Body */
.amc-card-body {
    padding: 56px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.silver-body {
    background: linear-gradient(180deg, #eaeef2 0%, #f8fafc 100%);
}

.gold-body {
    background: linear-gradient(180deg, #fcf4d9 0%, #fdf8e9 100%);
}

.platinum-body {
    background: linear-gradient(180deg, #e6eff5 0%, #f4f8fb 100%);
}

.diamond-body {
    background: linear-gradient(180deg, #def2f6 0%, #edf6f8 100%);
}

.amc-visits {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.amc-save-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.amc-save-percent {
    font-size: 52px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.silver-text {
    color: #475569;
}

.gold-text {
    color: #ca8a04;
}

.platinum-text {
    color: #334155;
}

.diamond-text {
    color: #0891b2;
}

.amc-divider {
    width: 70%;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
}

.amc-description {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
}

/* Extra media query for mid-range desktops */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Our Team Grid styling */
.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.team-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-avatar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
    position: relative;
    border-bottom: 2px solid rgba(0, 159, 227, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 159, 227, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 159, 227, 0.3);
    transition: 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 25px rgba(0, 159, 227, 0.6);
    background: rgba(0, 159, 227, 0.3);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-info p {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Carousel Section */
.testimonials {
    background: #f8fafc;
    overflow: hidden;
}

.testi-wrapper {
    position: relative;
    max-width: 850px;
    margin: 50px auto 0;
}

.testi-card {
    display: none;
    background: white;
    border-radius: 28px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testi-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-slate);
    font-style: italic;
    margin-bottom: 30px;
}

.testi-author {
    font-weight: 800;
    color: var(--dark);
    font-size: 17px;
}

.testi-role {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

.testi-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.testi-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.testi-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testi-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: var(--dark);
    font-size: 14px;
}

.testi-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
}

/* Interactive FAQ Accordion styling */
.faq-section {
    background: white;
}

.faq-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    background: #f8fafc;
}

.faq-header {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h4 {
    font-size: 16.5px;
    font-weight: 700;
}

.faq-icon {
    font-size: 14px;
    color: var(--primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 24px 24px;
    font-size: 14.5px;
    color: var(--dark-slate);
    line-height: 1.6;
}

/* Call To Action Banner Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--dark);
    padding: 15px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-wa {
    background: #25d366;
    color: white;
    padding: 15px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    transform: translateY(-3px);
    background: #20bd5a;
}

/* Footer structure */
.footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
    font-size: 14.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    font-size: 15px;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Floating Bubble */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: 0.3s;
    animation: waPulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.08);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0.12);
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-visual-wrapper {
        margin-top: 20px;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .price-card.popular {
        transform: none;
    }

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

    .process-line {
        left: 24px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 56px;
    }

    .process-step:nth-child(even) .ps-content {
        text-align: left;
    }

    .ps-dot {
        position: absolute;
        left: 15px;
    }

    .ps-visual {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 20px 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }




    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }

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

    .stat-item {
        padding: 24px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-num {
        font-size: 32px;
    }

    .ba-slider-slides-container {
        height: 320px;
    }

    .ba-before-img {
        width: calc(100vw - 56px);
        height: 320px;
    }

    .ba-arrow-prev {
        left: 10px;
    }

    .ba-arrow-next {
        right: 10px;
    }

    .ba-tabs {
        gap: 10px;
    }

    .ba-tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .testi-card {
        padding: 30px 20px;
    }

    .testi-text {
        font-size: 15px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom UI DESIGN.pdf Styling Overrides */
.top-bar {
    background: #0A2540 !important;
    padding: 12px 0 !important;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-phone-link {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.top-phone-link i {
    color: #ffffff !important;
    font-size: 18px;
    display: inline-block;
    transform: scaleX(-1); /* Flips icon horizontally */
}

/* Global phone icon flip to keep them all pointing in the same direction */
.fa-phone,
.fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block;
}
.call-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    margin-left: 6px;
    letter-spacing: 0.5px;
}
.top-bar-wa-btn {
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
}
.top-bar-wa-btn:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: #ffffff !important;
}
.nav-links a {
    text-transform: uppercase;
    font-size: 12.5px !important;
    letter-spacing: 0.5px;
}
.nav-links a.active {
    color: #009639 !important;
}
.nav-links a.active::after {
    width: 100% !important;
    background: #009639 !important;
}

/* Hero Section Styles */
.hero-main-title {
    font-size: 56px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    color: #0A2540 !important;
    margin-bottom: 20px !important;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}
.highlight-orange {
    color: #FF9900 !important;
}
.hero-subtext {
    font-size: 16px;
    color: #334155;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 500px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    max-width: 550px;
}
.hero-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.hero-icon-col .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #0A2540;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009639; /* green */
    font-size: 18px;
    transition: all 0.3s ease;
    background: #ffffff;
}
.hero-icon-col:hover .icon-circle {
    background: #009639;
    color: #ffffff;
    border-color: #009639;
    transform: translateY(-2px);
}
.hero-icon-col .icon-label {
    font-size: 8px;
    font-weight: 800;
    color: #0A2540;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-book-inspection {
    background: #0A2540;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.2);
}
.btn-book-inspection:hover {
    background: #14355a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.35);
    color: #ffffff !important;
}
.hero-image-wrapper {
    position: relative;
    display: inline-block;
}
.hero-tech-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}
.hero-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border: 3px double #0A2540;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.badge-content {
    font-family: 'Outfit', sans-serif;
    color: #0A2540;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.1;
}
.badge-percent {
    display: block;
    font-size: 20px;
    font-weight: 900;
}

/* Horizontal process timeline */
.process-row-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    flex-wrap: wrap;
}
.process-step-card {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.process-circle-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
}
.process-step-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 2.5px solid #009639;
    overflow: hidden;
    padding: 0;
}
.process-step-circle i {
    font-size: 32px;
    color: #0A2540;
}
.process-step-circle img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
}
.process-step-circle img.full-circle {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}
.process-step-circle img.step-icon-small {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}
.process-step-circle img.step-icon-large {
    width: 65px !important;
    height: 65px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}
.process-step-num {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #009639;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border: 2px solid #0A2540;
}
.process-step-card h4 {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.process-step-card p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    max-width: 140px;
}
/* Connecting arrows */
.process-step-card:not(:last-child)::after {
    content: '➔';
    position: absolute;
    top: 38px;
    right: -20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
}

/* Video Section Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.video-thumb {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 8px;
    background: #0A2540;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}
.video-thumb:hover {
    border-color: #009639;
    transform: scale(1.02);
}
.video-card span {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

/* Service Grid New */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card-new {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}
.service-card-new:hover {
    border-color: #009639;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}
.service-card-img-wrap {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.service-card-new h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}
.service-card-new p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
}

/* Contact Section & Grid */
.contact-section {
    background: #f8fafc;
    padding: 100px 0;
    border-top: 1px solid #e2e8f0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact-info-block {
    display: flex;
    flex-direction: column;
}
.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}
.cid-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cid-item i {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.cid-item h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
    color: #0A2540;
    text-transform: uppercase;
    font-family: 'Outfit';
    letter-spacing: 0.5px;
}
.cid-item p {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
    margin: 0;
    font-family: 'Plus Jakarta Sans';
}

/* Trust Grid Desktop Styling */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero {
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0.25) 100%), url('../images/slider.jpg') !important;
        background-position: 70% top !important;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-main-title {
        font-size: 42px !important;
    }
    .hero-icons-row {
        margin: 0 auto 30px;
    }
    .hero-subtext {
        margin: 0 auto 30px;
    }
    .hero-image-spacer {
        display: none !important;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .process-row-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-step-card:not(:last-child)::after {
        content: '⬇';
        top: auto;
        bottom: -30px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .services-grid-new {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        row-gap: 25px;
    }
}
@media (max-width: 480px) {
    .hero-icons-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Hero Icons Row New Styles */
.hero-icons-row-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 550px;
    margin-bottom: 30px;
    align-items: stretch;
}
.hero-icon-col-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    position: relative;
}
.hero-icon-col-new:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 1.5px;
    background-color: #0A2540;
    opacity: 0.8;
}
.hero-icon-col-new .icon-wrapper {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.icon-navy {
    color: #0A2540 !important;
}
.icon-green {
    color: #39b54a !important; /* Green leaf matching the logo leaf */
}
.hero-icon-col-new .icon-label-new {
    font-size: 8.5px;
    font-weight: 800;
    color: #0A2540;
    line-height: 1.25;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 95px;
}

/* Responsive Overrides for Icons */
@media (max-width: 576px) {
    .hero-icons-row-new {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
        margin: 0 auto 30px;
    }
    .hero-icon-col-new:nth-child(2n)::after {
        display: none; /* Hide vertical lines on even columns in 2-column layout */
    }
    .hero-icon-col-new:not(:nth-child(2n))::after {
        right: -1px; /* Reposition vertical lines for odd columns */
    }
}

/* Hero Floating Badge Styles */
.hero-badge-floating {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 100;
}
.badge-percent-new {
    display: block;
    color: #39b54a;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}
.badge-label-new {
    display: block;
    color: #0A2540;
    font-size: 7.5px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.2px;
}

@media (max-width: 992px) {
    .hero-badge-floating {
        position: relative;
        top: -15px;
        right: 0;
        margin: 5px auto 12px;
        width: fit-content;
    }
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .top-bar-inner {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        padding: 0 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .top-bar-left {
        display: flex;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
    }
    .call-tagline {
        display: inline-block !important;
        font-size: 8px !important;
        margin-left: 6px !important;
        white-space: nowrap !important;
    }
    .top-phone-link {
        font-size: 11px !important;
        gap: 3px !important;
    }
    .top-phone-link i {
        font-size: 10px !important;
    }
    .top-bar-wa-btn {
        font-size: 9px !important;
        padding: 3px 6px !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
        width: auto !important;
        height: auto !important;
    }
}

/* Hero Background Slider Styles */

/* Cleaning Process Video Premium Improvements */
.video-play-btn {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-play-btn i {
    color: #0A2540;
    font-size: 16px;
    margin-left: 3px; /* visual center fix for triangle */
    transition: color 0.3s ease;
}
.video-thumb:hover .video-play-btn {
    background: #009639;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 25px rgba(0, 150, 57, 0.6);
}
.video-thumb:hover .video-play-btn i {
    color: #ffffff;
}
.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(10, 37, 64, 0.85);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 30, 56, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-modal.active {
    display: flex;
    opacity: 1;
}
.video-modal-content {
    width: 90%;
    max-width: 400px;
    position: relative;
    padding: 15px;
    background: #0A2540;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
    transition: all 0.25s ease;
}
.video-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    transform: rotate(90deg);
}
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000000;
    border-radius: 10px;
    overflow: hidden;
}

/* ==========================================================================
   About Us Page Responsive Styles
   ========================================================================== */
.about-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.about-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.about-services-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px !important;
    }
    .about-hero p {
        font-size: 15px !important;
    }
    .about-hero {
        padding: 150px 0 60px !important;
    }
    .about-detail-section {
        padding: 60px 0 !important;
    }
    .about-detail-grid h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    .about-approach {
        padding: 60px 0 !important;
    }
    .about-approach h2 {
        font-size: 26px !important;
    }
    .about-approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-approach-grid > div {
        padding: 25px !important;
    }
    .about-services-overview {
        padding: 60px 0 !important;
    }
    .about-services-grid h2 {
        font-size: 28px !important;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Custom Play Overlay for 16:9 Video */
#mainVideoOverlay:hover .main-play-btn {
    transform: scale(1.12);
    background: #8cc63f !important;
    box-shadow: 0 10px 30px rgba(140, 198, 63, 0.6) !important;
}