@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   1. VARIABLES & RESET
   ============================================= */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #4EBFFF;
    --bg-green: #59b815;
    --bg-dark-blue: #0051c0;
    --bg-light-blue: #f0f8ff;
    --input-bg: #f0f0f0;
    --text-dark-blue: #0051c0;
    --text-light-gray: #7c7c7c;
    --text-dark-gray: #4c5361;
    --text-white: #fff;
    --text-green: #59b815;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    color: #2d3748;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    cursor: pointer;
}

textarea {
    resize: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { letter-spacing: -0.03em; }

p {
    line-height: 1.75;
}

img {
    border-radius: 4px;
}

section {
    position: relative;
}

::selection {
    background: rgba(0, 81, 192, 0.15);
    color: var(--bg-dark-blue);
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    ::-webkit-scrollbar {
        width: 16px;
        height: .5rem;
    }
    ::-webkit-scrollbar-track {
        background-color: var(--bg-light-blue);
    }
    ::-webkit-scrollbar-thumb {
        background-color: var(--bg-dark-blue);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background-color: var(--bg-dark-blue);
    }
}

/* =============================================
   2. UTILITY CLASSES
   ============================================= */
.bg-color-green {
    background-color: var(--bg-green) !important;
}

.bg-color-dark-blue {
    background-color: var(--bg-dark-blue) !important;
}

.bg-color-light-blue {
    background-color: var(--bg-light-blue) !important;
}

.bg-med-blue {
    background: #dbedff;
    position: relative;
    z-index: 2;
}

.input-bg {
    background-color: var(--input-bg);
}

.text-dark-blue {
    color: var(--text-dark-blue) !important;
}

.text-green {
    color: var(--text-green) !important;
}

.text-light-gray {
    color: var(--text-light-gray) !important;
}

.text-dark-gray {
    color: var(--text-dark-gray) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.border-right {
    border-right: 1px solid #ededed !important;
}

.border-dark-blue {
    border-color: var(--bg-dark-blue) !important;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.fw-light--400 {
    font-weight: 400;
}

.fw--700 {
    font-weight: 700;
    position: relative;
}

.form--subtitle {
    font-weight: 400;
}

.form--title {
    font-weight: 700;
}

.z-1 {
    z-index: 1;
}

.check-icon {
    color: var(--bg-green);
    font-weight: bold;
}

.footer-privacy-link {
    text-decoration: none;
    color: #fff;
}

.footer-privacy-link:hover {
    color: #ddd;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   3. BUTTONS
   ============================================= */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 8px;
    padding: 10px 24px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-outline-primary {
    border-color: var(--bg-dark-blue) !important;
    border-width: 2px;
    background: transparent !important;
    color: var(--bg-dark-blue) !important;
}

.btn-outline-primary:hover {
    border-color: var(--bg-dark-blue) !important;
    background-color: var(--bg-dark-blue) !important;
    color: var(--text-white) !important;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-outline-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-success {
    background-color: var(--bg-green) !important;
    border-color: var(--bg-green) !important;
    color: #fff !important;
    box-shadow: none;
}

.btn-success:hover {
    background-color: #4da313 !important;
    border-color: #4da313 !important;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-success:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-success:focus-visible,
.btn-outline-primary:focus-visible {
    outline: 2px solid var(--bg-dark-blue);
    outline-offset: 3px;
}

.phone_btn {
    border-width: 2px !important;
}

.phone_btn:hover a {
    color: var(--text-white) !important;
}

.phone_btn:hover {
    background-color: var(--bg-dark-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 81, 192, 0.3);
}

.get-started-text {
    font-size: 13px;
}

.get_started_btn {
    border-radius: 8px !important;
    background-color: rgb(89, 184, 21) !important;
    width: 150px !important;
    height: 44px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

/* =============================================
   4. NAVBAR
   ============================================= */
.navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    padding: 12px 0;
}

#header.active {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
}

.navbar .nav-link {
    font-weight: 500;
    color: #2d3748 !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.navbar .nav-link:hover {
    color: var(--bg-dark-blue) !important;
    background: rgba(0, 81, 192, 0.06);
}

.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    animation: dropdownFade 0.25s ease;
}

.navbar .dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: rgba(0, 81, 192, 0.06);
    color: var(--bg-dark-blue);
}

.dropdown-toggle::after {
    background-image: url('../images/down-arrow.png');
    height: 7px;
    width: 9px;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0.255em;
    vertical-align: 0 !important;
    content: "";
    border-top: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
}

.brand-logo {
    width: 165px;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   5. CARDS
   ============================================= */
.card {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card.contact-card {
    border-top: 5px solid var(--bg-dark-blue) !important;
    border-radius: var(--radius-md) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 247px;
}

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

.service-glance-card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg) !important;
    padding: 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-glance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-dark-blue), var(--bg-green));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-glance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-glance-card:hover::before {
    opacity: 1;
}

.service-glance-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.service-glance-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-glance-card a {
    color: var(--bg-green);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.service-glance-card:hover a {
    gap: 8px;
}

/* =============================================
   6. FORMS
   ============================================= */
.custom-style-input {
    padding: 12px !important;
    background-color: var(--input-bg) !important;
}

.form-control {
    border-radius: var(--radius-sm) !important;
    border: 1.5px solid #e2e8f0;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.form-control:focus {
    border-color: var(--bg-dark-blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 81, 192, 0.1) !important;
    background-color: white !important;
    outline: 0;
}

.modern-form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.modern-form-header {
    background: linear-gradient(135deg, var(--bg-dark-blue) 0%, #003a8c 100%);
    color: #fff;
    padding: 24px 28px;
    text-align: center;
}

.modern-form-body {
    padding: 20px 32px 24px;
}

.modern-form-body .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.modern-form-body .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.95rem;
    background: #f8fafc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.modern-form-body .form-control:focus {
    border-color: var(--bg-green);
    box-shadow: 0 0 0 3px rgba(89, 184, 21, 0.1);
    background: #fff;
    outline: none;
}

.modern-form-body .form-control::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.modern-form-body .btn-success {
    padding: 12px;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modern-form-body .btn-success:hover {
    transform: translateY(-2px);
}

/* =============================================
   7. IMAGES & LAYOUT ELEMENTS
   ============================================= */
.img-fluid {
    border-radius: 8px;
}

section .container .row .col-lg-6 > .position-relative > img.img-fluid,
section .container .row .col-lg-6 > img.img-fluid {
    border-radius: var(--radius-md);
}

.img-fluid-custom {
    max-width: 101%;
}

.display-4, .display-5, .display-6 {
    font-weight: 800 !important;
}

.heading_box h2::after,
.heading_box h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-dark-blue), var(--bg-green));
    margin: 12px auto 0;
    border-radius: 3px;
}

/* =============================================
   8. HERO SECTION
   ============================================= */
.hero-section {
    margin-bottom: 8rem;
}

.contact-header, .contact-header1 {
    background: linear-gradient(135deg, rgba(0, 51, 120, 0.88) 0%, rgba(0, 81, 192, 0.82) 100%), url('../images/contact-header.webp');
    background-size: cover;
    background-position: center;
    height: auto !important;
    min-height: 520px;
}

.card-style {
    position: absolute;
    bottom: -6rem;
    left: 9rem;
}

.card-w {
    width: 340px;
}

.right-box-hero {
    display: flex;
    align-items: flex-start;
    column-gap: 0.5rem;
}

/* =============================================
   9. DECORATIVE VECTORS & DOTS
   ============================================= */
.doted-vector6-edge {
    left: -12px;
    width: 100px;
    top: 24px;
}

.blue-circle {
    position: absolute;
    left: 50px;
    top: 12rem;
}

.ellipse-green {
    margin-top: 2rem;
}

.green-border-circle {
    position: absolute;
    right: 1rem;
    bottom: 6rem;
}

.icons-style {
    margin-bottom: 1rem;
    width: 45px;
}

.blue-green-vector {
    position: absolute;
    right: -3rem;
    bottom: -1rem;
    width: 170px;
}

.white-dots {
    position: absolute;
    left: 20px;
    margin: auto 0;
    top: 0;
    bottom: 0;
    width: 80px;
}

.bg-line-vector {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    width: 60%;
    max-height: 100%;
    z-index: 0;
    pointer-events: none;
}

.right-cubes {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.blue-wave {
    position: absolute;
    left: -5.5rem;
    top: 2rem;
}

.blur-doted-hero-vector {
    position: absolute;
    right: 4rem;
    top: 0;
}

.right-line-vector {
    position: absolute;
    right: 0;
    bottom: 12rem;
    width: 120px;
}

.blue-dots {
    position: absolute;
    left: -6rem;
    bottom: -8rem;
    width: 150px;
}

.green-dots {
    position: absolute;
    top: 80px;
    left: 60px;
}

.green-dots img {
    width: 80px;
    height: auto;
}

.gren-dot {
    position: absolute;
    right: -3rem;
    top: 9rem;
}

.blue-bg-layer2 {
    position: absolute;
    right: -1.5rem;
    top: -9.3rem;
    width: 310px;
}

.left-bg-green {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

.r-bg-lyer {
    position: absolute;
    right: -60px;
    top: -8rem;
}

.l-bluelyer {
    position: absolute;
    left: -85px;
    bottom: 10rem;
    z-index: 1;
}

.Ellipse-blue2 {
    position: absolute;
    right: 45px;
    top: 0;
}

.square-blue-dots2 {
    width: 100px;
    position: absolute;
    left: 0;
    top: -30px;
}

.blue-half {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
}

.best-prices-img {
    position: absolute;
    left: -6rem;
    max-width: 120% !important;
}

/* =============================================
   10. TRUST ICONS SECTION
   ============================================= */
.icons-sec {
    background: linear-gradient(135deg, #e8f2ff 0%, #f0f8ff 50%, #e8f2ff 100%) !important;
    border-top: 1px solid rgba(0, 81, 192, 0.08);
    border-bottom: 1px solid rgba(0, 81, 192, 0.08);
}

.icon-img {
    transition: transform 0.3s ease;
}

.icon-img:hover {
    transform: scale(1.1);
}

.content-texts {
    font-size: 0.9rem;
    font-weight: 700;
    color: #3a4a5e;
    margin-left: 1rem;
}

/* =============================================
   11. CUSTOMER REVIEWS
   ============================================= */
.customer-reviews {
    overflow: hidden;
    position: relative;
}

.customer-reviews .container {
    position: relative;
    z-index: 2;
}

.customer-reviews .container-fluid {
    overflow: hidden;
}

/* =============================================
   12. TABLES
   ============================================= */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    background: rgba(0, 81, 192, 0.04);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bg-dark-blue);
    padding: 12px 16px;
}

.table td {
    padding: 10px 16px;
    font-size: 0.9rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.table tbody tr:hover {
    background: rgba(0, 81, 192, 0.02);
}

tbody, td, tfoot, th, thead, tr {
    border: 0 !important;
    padding: 0.2rem 0 !important;
}

td {
    color: var(--text-light-gray);
}

/* =============================================
   13. SERVICES LIST
   ============================================= */
.services-list {
    padding-left: 1rem;
    list-style: none;
}

.services-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    color: #555;
    font-size: 0.95rem;
}

.services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--bg-green), #7ad640);
    border-radius: 50%;
}

.services-list li::marker {
    color: var(--text-green);
}

/* =============================================
   14. ABOUT US PAGE
   ============================================= */
.about-section {
    height: 300px;
    background: url('../images/about-bg.webp');
    background-size: cover;
}

.about-text {
    color: var(--text-white);
}

.about-text h2 {
    font-size: 56px;
}

.about-main {
    padding: 80px 0px;
}

.about-image1 img {
    height: 275px;
    width: 100%;
    border-radius: 20px;
}

.about-image2 img {
    height: 400px;
    width: 100%;
    border-radius: 20px;
}

.about-main h5 {
    color: var(--bg-dark-blue);
}

.about_us_content {
    position: relative;
}

.about_us_content p {
    font-size: 16px;
    font-family: "Inter";
    color: rgb(91, 91, 91);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

/* =============================================
   15. CONTACT PAGE
   ============================================= */
.contact-cimage img {
    width: 28px;
    height: auto;
    margin: 11px 16px;
}

/* =============================================
   16. WINDOW CLEANING PAGE
   ============================================= */
.window-cleaning-sec {
    padding: 5rem 0 5rem 0;
}

.window-cleaning-sec2 {
    padding: 5rem 0;
}

.cleaning-wind .Ellipse-blue {
    position: absolute;
    right: -5rem;
    margin: auto 0;
    top: 0;
    bottom: 0;
}

.cleaning-wind .blue-waves {
    position: absolute;
    bottom: 5.1rem;
    left: -1rem;
}

.blue-wave-r {
    position: absolute;
    right: 0;
    bottom: 20rem;
}

.square-blue-dots {
    width: 100px;
    position: absolute;
    left: 0;
    bottom: 30px;
}

.square-boxes {
    position: absolute;
    left: 0;
    width: 100px;
}

.service-regularly-sec .man-cleaning {
    margin-top: -5rem;
    margin-left: -3rem;
}

.service-regularly--lists ul li {
    margin-bottom: 0.7rem;
    background: #fff;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-regularly--lists ul li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.decimal-with-zero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bg-dark-blue), #0066cc);
    color: #fff !important;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
}

.mrgn-left {
    margin-left: -5rem;
}

.left-mrgn {
    margin-left: -1.6rem;
}

/* Window Cleaning Modern Components */
.wc-section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--bg-dark-blue), #0066cc);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.wc-modern-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.wc-modern-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.wc-modern-list li:last-child {
    border-bottom: none;
}

.wc-modern-list.compact li {
    padding: 5px 0;
    font-size: 0.9rem;
}

.wc-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(89, 184, 21, 0.12);
    color: #59b815;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 1px;
}

.wc-link {
    color: var(--bg-dark-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 81, 192, 0.2);
    transition: border-color 0.3s ease;
}

.wc-link:hover {
    border-color: var(--bg-dark-blue);
    color: var(--bg-dark-blue);
}

.wc-img-wrapper {
    position: relative;
}

.wc-img-wrapper img {
    transition: transform 0.4s ease;
}

.wc-img-wrapper:hover img {
    transform: scale(1.02);
}

.wc-highlight-box {
    background: linear-gradient(135deg, rgba(0, 81, 192, 0.06), rgba(89, 184, 21, 0.06));
    border-left: 4px solid var(--bg-dark-blue);
    padding: 14px 20px;
    border-radius: 0 12px 12px 0;
    color: #444;
    font-size: 0.95rem;
}

/* Step cards */
.wc-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wc-step-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wc-step-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.wc-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--bg-dark-blue), #0066cc);
    color: #fff;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
}

.wc-step-card h4 {
    font-size: 1rem;
}

.wc-step-card p {
    font-size: 0.9rem;
}

.wc-process-section {
    background: #f8fafd;
}

/* Pricing card */
.wc-pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.wc-pricing-header {
    background: linear-gradient(135deg, var(--bg-dark-blue), #003a8c);
    color: #fff;
    padding: 18px 24px;
}

.wc-pricing-col-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-pricing-body {
    padding: 8px 0;
}

.wc-pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background-color 0.2s ease;
}

.wc-pricing-row:last-child {
    border-bottom: none;
}

.wc-pricing-row:hover {
    background: rgba(0, 81, 192, 0.03);
}

.wc-pricing-row .fw-bold {
    color: var(--bg-dark-blue);
}

/* Charges card */
.wc-charges-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.wc-charges-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-dark-blue);
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 81, 192, 0.15);
    margin-bottom: 8px;
}

.wc-charge-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.wc-charge-row:last-child {
    border-bottom: none;
}

.wc-charge-row .fw-bold {
    color: var(--bg-dark-blue);
    white-space: nowrap;
    margin-left: 12px;
}

/* FAQ accordion */
.wc-accordion-item {
    border: none !important;
    background: #fff;
    border-radius: 16px !important;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

.wc-accordion-btn {
    font-weight: 700;
    font-size: 1.05rem;
    color: #222 !important;
    background: #fff !important;
    padding: 20px 24px;
    border: none;
    box-shadow: none !important;
}

.wc-accordion-btn:not(.collapsed) {
    color: var(--bg-dark-blue) !important;
    background: #fff !important;
}

.wc-accordion-btn::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
}

.wc-accordion .accordion-body {
    padding: 0 24px 20px;
    font-size: 0.95rem;
}

/* Window pricing tables */
.sides_windows {
    border-radius: 0 10px 10px 0;
    padding: 0.5rem 3.4rem 0.5rem 1.8rem;
}

.no_windows {
    border-radius: 10px 0 0 10px;
    padding: 0.5rem 4rem 0.5rem 1.8rem;
}

.windows-no {
    width: 176.5px;
}

.price_list {
    padding-left: 2rem;
}

.price_list ul li {
    padding: 0.2rem 0;
}

/* =============================================
   17. POWER WASHING PAGE
   ============================================= */
.power-washing {
    padding: 10rem 0 5rem 0;
}

.power-washing p {
    font-size: 14px;
}

.power-washing .blue-circle {
    top: 22rem;
}

/* =============================================
   18. BLOG STYLES
   ============================================= */
.blog-text {
    font-size: 14px;
}

/* Blog Post Page */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-green), var(--bg-dark-blue));
    z-index: 9999;
    transition: width 0.1s linear;
    width: 0%;
}

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

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #f8fafc, transparent);
    z-index: 1;
    pointer-events: none;
}

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

.blog-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(89,184,21,0.9);
    color: #fff;
    backdrop-filter: blur(4px);
    margin-bottom: 1.25rem;
}

.blog-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.blog-hero-meta svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.blog-article-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 3rem;
    position: relative;
    margin-top: -60px;
    z-index: 3;
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-dark-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0,82,204,0.06);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.blog-back:hover {
    background: rgba(0,82,204,0.12);
    color: var(--bg-dark-blue);
    transform: translateX(-4px);
}

.blog-back svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-back:hover svg {
    transform: translateX(-3px);
}

.blog-hero-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    margin-bottom: 2.5rem;
    transition: transform 0.5s ease;
}

.blog-hero-img:hover {
    transform: scale(1.01);
}

.blog-content {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #374151;
}

.blog-content h2 {
    font-size: 1.65rem;
    font-weight: 800;
    margin: 3rem 0 1.25rem;
    color: #0f172a;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: -0.01em;
}

.blog-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-green), var(--bg-dark-blue));
    border-radius: 3px;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2.25rem 0 0.85rem;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.blog-content p {
    margin-bottom: 1.35rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-content img:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.35rem;
    padding-left: 1.25rem;
}

.blog-content li {
    margin-bottom: 0.6rem;
    padding-left: 0.25rem;
}

.blog-content ul li::marker {
    color: var(--bg-green);
}

.blog-content ol li::marker {
    color: var(--bg-dark-blue);
    font-weight: 700;
}

.blog-content a {
    color: var(--bg-dark-blue);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(0,82,204,0.25);
    transition: border-color 0.2s, color 0.2s;
}

.blog-content a:hover {
    color: var(--bg-green);
    border-bottom-color: var(--bg-green);
}

.blog-content blockquote {
    border-left: 4px solid var(--bg-green);
    padding: 1.25rem 1.75rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(89,184,21,0.04), rgba(0,82,204,0.03));
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: #475569;
}

.blog-content strong {
    color: #1e293b;
}

.blog-bottom-cta {
    background: linear-gradient(135deg, rgba(0,82,204,0.04) 0%, rgba(89,184,21,0.04) 100%);
    border: 1px solid rgba(0,82,204,0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.blog-bottom-cta h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.blog-bottom-cta p {
    color: #64748b;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.blog-bottom-cta .btn {
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 50px;
}

.blog-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,82,204,0.12), transparent);
    margin: 2.5rem 0;
}

/* Blog Listing Card Styles */
.blog-card-img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    height: 200px !important;
    object-fit: cover;
    width: 100%;
}

.blog-card-category {
    font-size: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.9rem;
}

/* Blog pagination */
#blogPagination .pagination {
    gap: 4px;
    flex-wrap: wrap;
}
#blogPagination .page-link {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    color: var(--bg-dark-blue);
    font-weight: 600;
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-size: 0.85rem;
    cursor: pointer;
}
#blogPagination .page-link.active {
    background: var(--bg-dark-blue);
    color: #fff;
    border-color: var(--bg-dark-blue);
}
#blogPagination .page-link:disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* =============================================
   19. FOOTER
   ============================================= */
footer {
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0a1628 100%);
    background-image: url('../images/footer-full-bg.webp');
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

footer h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--bg-green);
    border-radius: 2px;
}

footer p {
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.92rem;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    transition: all 0.25s ease;
    font-size: 0.92rem;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

footer .img-fluid[width="25px"] {
    opacity: 0.7;
    transition: all 0.3s ease;
}

footer .img-fluid[width="25px"]:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.mini-footer {
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

/* =============================================
   20. FLOATING CTA BUTTON & POPUP FORM
   ============================================= */
.floating-cta-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--bg-green) 0%, #4da313 100%);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(89, 184, 21, 0.45), 0 0 0 0 rgba(89, 184, 21, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatingPulse 2.5s ease-in-out infinite;
}

.floating-cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(89, 184, 21, 0.55);
    animation: none;
}

.floating-cta-btn.active {
    animation: none;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    box-shadow: 0 4px 20px rgba(229, 62, 62, 0.4);
}

.floating-cta-btn.active:hover {
    box-shadow: 0 6px 30px rgba(229, 62, 62, 0.5);
}

.floating-cta-btn .cta-icon-open,
.floating-cta-btn .cta-icon-close {
    transition: opacity 0.25s ease, transform 0.25s ease;
    position: absolute;
}

.floating-cta-btn .cta-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.floating-cta-btn.active .cta-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.floating-cta-btn.active .cta-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.floating-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.floating-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.floating-form-popup {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9999;
    width: 380px;
    max-width: calc(100vw - 32px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.floating-form-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-form-popup .modern-form-card {
    margin: 0;
    max-width: 100%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.floating-form-popup .modern-form-header {
    padding: 18px 24px;
    position: relative;
}

.floating-form-popup .modern-form-body {
    padding: 16px 24px 20px;
}

.floating-form-popup .modern-form-body .form-control {
    padding: 9px 12px;
    font-size: 0.9rem;
}

.floating-form-popup .modern-form-body .btn-success {
    padding: 10px;
    font-size: 0.95rem;
}

.floating-popup-title {
    font-size: 1.35rem;
}

.floating-popup-subtitle {
    font-size: 0.9rem;
    opacity: 0.85;
}

.floating-popup-submit {
    border-radius: 8px;
    font-size: 0.95rem;
}

/* =============================================
   21. ANIMATIONS
   ============================================= */
@keyframes floatingPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(89, 184, 21, 0.45), 0 0 0 0 rgba(89, 184, 21, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(89, 184, 21, 0.45), 0 0 0 12px rgba(89, 184, 21, 0); }
}

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

.blog-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: blogFadeIn 0.6s ease forwards;
}

/* =============================================
   22. RESPONSIVE: TABLET (768px - 1024px)
   ============================================= */
@media only screen and (max-width: 991px) {
    .contact-header .row {
        text-align: center;
    }
    .contact-header .d-flex.align-items-center.gap-3 {
        justify-content: center;
    }
    .modern-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .blue-green-vector {
        right: 0;
        bottom: 0;
        width: 100px;
    }
    .mobile-text-center {
        text-align: center;
    }
    .mobile-center-pos {
        margin: 0 auto;
        display: block !important;
    }
    .about-image1 img {
        height: auto;
    }
    .best-prices-img {
        position: relative;
        left: 0;
        max-width: 100% !important;
    }
    .mrgn-left {
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .service-regularly-sec .man-cleaning {
        margin-top: -2rem;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .square-boxes {
        left: 0;
        width: 60px;
        top: -110px;
    }
    .gren-dot {
        right: 0;
        top: 9rem;
    }
    .r-bg-lyer {
        right: -34px;
        top: -3.7rem;
        width: 80px;
    }
    .l-bluelyer {
        left: -85px;
        bottom: 4rem;
    }
    .blue-half {
        left: 0;
        top: -120px;
        width: 80px;
    }
    .why-order-pro {
        margin-bottom: 2rem;
    }
    .comercial-window-cleaning {
        margin-bottom: 2rem;
    }
    .window-cleaning-sec {
        padding: 12rem 0 0 0;
    }
    .cleaning-wind .Ellipse-blue {
        right: -2rem;
    }
}

/* =============================================
   23. RESPONSIVE: MOBILE (<767px)
   ============================================= */
@media screen and (max-width: 767px) {
    /* Prevent horizontal scroll on mobile */
    section, footer, main {
        overflow-x: hidden;
    }

    .row {
        --bs-gutter-x: 1.5rem;
    }

    /* Hide decorative vectors that extend beyond viewport */
    .blue-circle,
    .blue-dots,
    .l-bluelyer,
    .doted-vector6-edge,
    .green-border-circle,
    .right-line-vector,
    .green-dots,
    .white-dots,
    .blue-wave,
    .blur-doted-hero-vector,
    .ellipse-green,
    .blue-green-vector,
    .blue-wave-r,
    .right-cubes,
    .bg-line-vector,
    .square-blue-dots,
    .square-blue-dots2 {
        display: none !important;
    }

    .img-fluid-custom {
        max-width: 100% !important;
    }
    .px-5 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .p-5 {
        padding: 1.5rem !important;
    }
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .mobile-flex {
        flex-wrap: wrap;
        row-gap: 1rem;
    }
    .contact-card {
        margin-bottom: 2rem;
    }
    .blue-bg-layer2 {
        right: 0;
        top: -9.6rem;
        width: 170px;
    }
    .p-sm-3 {
        padding: 1.5rem;
    }
    .mobile-m {
        margin-top: 130px;
    }
    .about-image1 img {
        height: auto;
    }
    .about-image2 img {
        height: auto;
    }
    .blue-green-vector {
        right: 0;
        bottom: 0;
        width: 100px;
    }
    .card-style {
        bottom: -17rem;
        left: 0;
        margin: 0 auto;
        right: 0;
    }
    .blur-doted-hero-vector {
        right: 0;
        top: 0;
        left: 0;
        margin: 0 auto;
    }
    .right-thumbnail {
        margin-top: 2rem;
    }
    .mobile-w {
        width: 50% !important;
    }
    .img-fluid-custom {
        max-width: 86%;
    }
    .mrgn-bottom {
        margin-bottom: 1rem;
    }
    .mobile-text-center {
        text-align: center;
    }
    .mobile-center-pos {
        margin: 0 auto;
        display: block !important;
    }
    .Professional-window-services {
        margin-top: 15rem !important;
    }
    #contact-form input {
        height: 40px;
    }
    .power-washing .blue-circle {
        top: 6rem;
        left: 1rem;
    }
    .mobile_bm {
        margin-bottom: 2rem;
    }
    .gren-dot {
        right: 0;
        top: 9rem;
    }
    .blue-half {
        left: 0;
        top: -87px;
        width: 65px;
    }
    .square-boxes {
        left: 0;
        width: 60px;
        top: -110px;
    }
    .blue-wave-r {
        right: 0;
        bottom: 25.6rem;
    }
    .service-regularly-sec .man-cleaning {
        margin-top: -2rem;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .mrgn-left {
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .window-cleaning-sec {
        padding: 12rem 0 0 0;
    }
    .window-washing-after-repair {
        padding-top: 0 !important;
    }
    .about-text h2 {
        font-size: 44px;
    }
    .comercial-window-cleaning {
        margin-bottom: 2rem;
    }
    .window-washing-after-repair.py-5 {
        padding-top: 0 !important;
    }
    .best-prices-img {
        position: relative;
        left: 0;
        max-width: 100% !important;
    }
    .additional-charges.py-5 {
        padding-top: 0 !important;
    }
    .r-bg-lyer {
        right: 0;
        top: -6rem;
        width: 80px;
    }
    .l-bluelyer {
        left: -85px;
        bottom: 0;
    }
    .table_card .px-5, .table_card .py-3 {
        padding: 1rem !important;
    }
    .why-order-pro {
        margin-bottom: 2rem;
    }
    .no_windows {
        border-radius: 10px 0 0 10px;
        padding: 0.5rem 1.8rem;
    }
    .cleaning-wind .Ellipse-blue {
        right: 0;
        margin: -65px 0 0 0;
    }
    .square-blue-dots {
        width: 80px;
        left: 0;
        bottom: 0;
    }
    .nortbook .blue-wave-r {
        bottom: 26.3rem;
    }

    /* Window cleaning modern components */
    .wc-step-card {
        padding: 14px;
    }
    .wc-step-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.8rem;
    }
    .wc-pricing-row,
    .wc-charge-row {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    .wc-pricing-header {
        padding: 14px 16px;
    }
    .wc-charges-card {
        padding: 20px;
    }
    .wc-accordion-btn {
        font-size: 0.95rem;
        padding: 16px;
    }
    .wc-section-label {
        font-size: 0.7rem;
    }

    .blog-article-card {
        padding: 1.5rem;
        margin-top: -30px;
    }

    /* ---- MOBILE CONTENT ALIGNMENT ---- */

    /* Center text in main section columns when they stack */
    main section [class*="col-lg-"],
    main section [class*="col-md-"]:not([class*="col-6"]) {
        text-align: center;
    }

    /* Left-align specific components that should stay left */
    .modern-form-card,
    .wc-modern-list,
    .wc-step-card,
    .wc-highlight-box,
    .wc-accordion,
    .wc-accordion-btn,
    .accordion-body,
    .service-regularly--lists,
    .wc-pricing-card,
    .wc-charges-card,
    .custom-co-4,
    .card-body,
    .blog-content,
    .about_us_content p,
    .d-flex.align-items-start {
        text-align: left;
    }

    /* Center section label badges on mobile */
    .wc-section-label {
        margin-left: auto;
        margin-right: auto;
    }

    /* Remove inline width constraints on mobile */
    section [style*="width:85%"],
    section [style*="width:90%"],
    section [style*="width:80%"] {
        width: 100% !important;
    }

    /* Center flex button groups on mobile */
    .Professional-window-services .d-flex.mt-4,
    .power-washing .d-flex.mt-5,
    .wc-service-block .d-flex.flex-wrap,
    .contact-header .d-flex.flex-wrap,
    .contact-header1 .d-flex.flex-wrap,
    .hero-section .d-flex.align-items-center.mb-4 {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Center reviews section header on mobile */
    .customer-reviews > .container > .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

}

/* =============================================
   MOBILE STICKY CTA BAR
   ============================================= */
#mobileCTABar {
    display: none;
}

@media screen and (max-width: 767px) {
    #mobileCTABar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        z-index: 9999;
        padding: 10px 12px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        background: #fff;
        box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
        gap: 10px;
    }
    #mobileCTABar .mobile-cta-call,
    #mobileCTABar .mobile-cta-book {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 10px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: opacity 0.2s;
    }
    #mobileCTABar .mobile-cta-call {
        background: var(--bg-dark-blue);
        color: #fff;
    }
    #mobileCTABar .mobile-cta-book {
        background: var(--bg-green);
        color: #fff;
    }
    #mobileCTABar .mobile-cta-call:active,
    #mobileCTABar .mobile-cta-book:active {
        opacity: 0.85;
    }

    .floating-cta-btn,
    .floating-form-popup,
    .floating-form-overlay {
        display: none !important;
    }

    footer, .mini-footer {
        padding-bottom: 70px;
    }
}

/* =============================================
   24. RESPONSIVE: SMALL MOBILE (<480px)
   ============================================= */
@media (max-width: 480px) {
    .floating-form-popup {
        bottom: 84px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

@media (max-width: 600px) {
    .mobile-margin {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/* =============================================
   25. SERVICES CAROUSEL (MOBILE)
   ============================================= */
#servicesCarousel .carousel-item {
    padding-bottom: 8px;
}
#servicesCarousel .service-glance-card {
    min-height: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}
#servicesCarousel .carousel-inner {
    min-height: 320px;
}
#servicesCarousel .carousel-item .px-2 {
    height: 100%;
}
#servicesCarousel .btn-outline-primary {
    border-color: var(--bg-green);
    color: var(--bg-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
    padding: 0;
}
#servicesCarousel .btn-outline-primary:hover,
#servicesCarousel .btn-outline-primary:focus {
    background: var(--bg-green);
    color: #fff;
    border-color: var(--bg-green);
}

/* Why Choose Us Carousel (Mobile) */
#whyChooseCarousel .carousel-inner {
    min-height: 240px;
}
.why-choose-slide {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.why-choose-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-dark-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.why-choose-slide h5 {
    margin-bottom: 10px;
}
.why-choose-slide p {
    font-size: 0.95rem;
    margin-bottom: 0;
}
#whyChooseCarousel .btn-outline-primary {
    border-color: var(--bg-green);
    color: var(--bg-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
    padding: 0;
}
#whyChooseCarousel .btn-outline-primary:hover,
#whyChooseCarousel .btn-outline-primary:focus {
    background: var(--bg-green);
    color: #fff;
    border-color: var(--bg-green);
}
