/*
Theme Name: Softwash Services
Theme URI: 
Author: Rishabh
Author URI: https://webmaniacs.co.nz
Description: Professional cleaning services theme for Auckland Softwash Services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: softwash-services
Tags: one-page, cleaning, services, bootstrap
*/

/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --color-primary: #05284b;
    --color-secondary: #456a87;
    --color-accent: #34a8df;
    --color-light-blue: #d6f1ff;
    --color-text: #606060;
    --color-white: #ffffff;
    --color-light-gray: #ededed;

    --font-quando: 'Quando', serif;
    --font-inter: 'Inter', sans-serif;
    --font-lato: 'Lato', sans-serif;
    --font-public-sans: 'Public Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    background-color: var(--color-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ===========================
   Banner Wrapper & Background
   =========================== */
.banner-wrapper {
    position: relative;
    z-index: 0;
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/banner-bg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
    transform: scaleX(-1);
}

.banner-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #D7F2FF 0.65%, rgba(255, 255, 255, 0) 99.35%);
    pointer-events: none;
    z-index: -1;
}

/* ===========================
   Animations
   =========================== */
/* ===========================
   Animations (Scroll Reveal & Typewriter)
   =========================== */

/* ── Reveal on Scroll (Desktop only) ── */
@media (min-width: 992px) {
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal-left {
        transform: translateX(-30px);
    }

    .reveal-right {
        transform: translateX(30px);
    }

    .reveal-on-scroll.reveal-visible {
        opacity: 1;
        transform: translate(0);
    }
}

/* ── Typewriter effect for Headings (All screens) ── */
@keyframes typewriter-reveal {
    from {
        clip-path: inset(-50% 100% -50% -50%);
        /* Allow vertical/left overflow */
    }

    to {
        clip-path: inset(-50% -50% -50% -50%);
        /* Fully revealed, overflow allowed */
    }
}

h2.typewriter.typewriter-visible,
.feature-title.typewriter.typewriter-visible,
.inner-banner-content h1.typewriter.typewriter-visible,
.banner-title.typewriter.typewriter-visible {
    animation: typewriter-reveal 1.4s ease-out forwards;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

    .reveal-on-scroll,
    h2.typewriter,
    .feature-title.typewriter,
    .inner-banner-content h1.typewriter {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        clip-path: none !important;
    }
}

/* ===========================
   Site Header Layout
   =========================== */
.site-header {
    position: relative;
    z-index: 1000;
    background: linear-gradient(180.75deg, #D7F2FF 0.65%, rgba(255, 255, 255, 0) 99.35%);
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Inner flex row: logo | menu | cta */
.sw-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sw-logo {
    flex-shrink: 0;
    text-decoration: none;
}

.logo {
    width: 130px;
    height: 130px;
    display: block;
}

.sw-nav-cta {
    flex-shrink: 0;
}

/* ===========================
   Custom Navbar
   =========================== */

/* Desktop: horizontal flex row */
.sw-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Nav links wrapper */
.sw-nav-collapse {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Horizontal UL */
.sw-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sw-nav-menu li {
    position: relative;
}

.sw-nav-menu li a {
    font-family: var(--font-quando);
    font-size: 16px;
    color: var(--color-primary);
    text-decoration: none;
    padding: 6px 14px;
    display: block;
    border-radius: 4px;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sw-nav-menu li a:hover,
.sw-nav-menu li.current-menu-item>a,
.sw-nav-menu li.current-page-ancestor>a {
    color: var(--color-accent);
}

.sw-nav-menu li a:hover {
    transform: translateY(-2px);
}

/* ── Caret for parent items with children ── */
.sw-nav-menu li.menu-item-has-children>a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.sw-nav-menu li.menu-item-has-children:hover>a::after {
    transform: rotate(-180deg);
}

/* ── Desktop Dropdown Panel ── */
.sw-nav-menu .sub-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 200px;
    background: rgba(5, 40, 75, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(5, 40, 75, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1000;
}
/* Invisible hover bridge (prevents closing gap) */
.sw-nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

/* Small arrow pointing up */
.sw-nav-menu .sub-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 7px 7px 7px;
    border-style: solid;
    border-color: transparent transparent rgba(5, 40, 75, 0.97) transparent;
}

.sw-nav-menu li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sw-nav-menu .sub-menu li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 20px;
    border-radius: 0;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    transform: none !important;
}

.sw-nav-menu .sub-menu li a:hover,
.sw-nav-menu .sub-menu li.current-menu-item>a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    padding-left: 26px;
}

.sw-nav-menu .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sw-nav-menu .sub-menu li:last-child {
    border-bottom: none;
}

/* Desktop CTA */
.sw-nav-cta {
    flex-shrink: 0;
}

/* Mobile Book Now — only shows in hamburger panel */
.sw-mobile-book {
    display: none;
}

/* Hamburger button — hidden on desktop */
.sw-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    z-index: 1001;
}

.sw-hamburger:focus {
    outline: none;
}

.sw-ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, background 0.3s ease;
    transform-origin: center;
}

/* Animated × when open */
.sw-hamburger.is-open .sw-ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sw-hamburger.is-open .sw-ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.sw-hamburger.is-open .sw-ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sw-hamburger.is-open {
    border-color: var(--color-accent);
}

.sw-hamburger.is-open .sw-ham-bar {
    background: var(--color-accent);
}

/* ── Mobile (< 992px) ── */
@media (max-width: 991.98px) {

    .sw-nav-inner {
        flex-wrap: wrap;
        position: relative;
    }

    /* Show hamburger — push it to the far right */
    .sw-hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Hide desktop CTA */
    .sw-nav-cta {
        display: none;
    }

    /* Collapse panel — hidden by default, full-width row below logo */
    .sw-nav-collapse {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
        opacity: 0;
        width: 100%;
        flex: 0 0 100%;
        order: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: rgba(5, 40, 75, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 14px;
        box-shadow: 0 12px 40px rgba(5, 40, 75, 0.35);
        margin-top: 10px;
    }

    .sw-nav-collapse.is-open {
        max-height: 600px;
        opacity: 1;
    }

    /* Stack links vertically */
    .sw-nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
    }

    .sw-nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .sw-nav-menu li:last-child {
        border-bottom: none;
    }

    .sw-nav-menu li a {
        color: rgba(255, 255, 255, 0.88);
        font-size: 15px;
        padding: 14px 24px;
        border-radius: 0;
        letter-spacing: 0.3px;
    }

    .sw-nav-menu li a:hover,
    .sw-nav-menu li.current-menu-item>a {
        color: var(--color-light-blue);
        background: rgba(255, 255, 255, 0.06);
        transform: none;
    }

    /* Book Now inside panel */
    .sw-mobile-book {
        display: block;
        padding: 14px 20px 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sw-mobile-book-btn {
        width: 100%;
        text-align: center;
        border-radius: 8px !important;
    }
}

/* ── Desktop ── */
@media (min-width: 992px) {
    .sw-hamburger {
        display: none !important;
    }

    .sw-nav-collapse {
        max-height: none !important;
        opacity: 1 !important;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
    }

    .sw-mobile-book {
        display: none !important;
    }
}



/* ===========================
   Buttons
   =========================== */
.btn-gradient {
    padding: 12px 30px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(5, 40, 75, 1) 0%, rgba(69, 106, 135, 1) 100%);
    font-family: var(--font-quando);
    color: var(--color-white);
    border: none;
    font-size: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: scale(1.05);
    color: var(--color-white);
}

/* ===========================
   Banner Section
   =========================== */
.banner-section {
    position: relative;
    z-index: 1;
    padding: 64px 0 80px;
}

@media (min-width: 992px) {
    .banner-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 0;
    }
}

.banner-title {
    font-family: var(--font-quando);
    color: #052b51;
    font-size: 52px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.banner-cleaning-word {
    position: relative;
    display: inline-block;
}

.banner-cleaning-circle {
    position: absolute;
    left: -23px;
    top: -135px;
    width: 130%;
    height: auto;
    pointer-events: none;
    z-index: -1;
    rotate: 180deg;
}

.banner-description {
    font-family: var(--font-inter);
    color: var(--color-text);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
}

/* ===========================
   About Us Section
   =========================== */
.about-us-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}
@media (max-width: 767px) {
    .about-us-section {
        padding: 0;
    }
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.section-title {
    font-family: var(--font-quando);
    color: var(--color-primary);
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.section-description {
    font-family: var(--font-inter);
    color: var(--color-text);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 32px;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-family: var(--font-inter);
    color: var(--color-text);
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(6px);
    color: var(--color-primary);
}

.bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 5px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefits-list li:hover .bullet {
    transform: scale(1.4);
    background-color: var(--color-accent);
}

.contact-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-white);
    border-radius: 5px 0px 0px 0px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 14px 20px;
    width: fit-content;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    background: #05284B;
    width: 40px;
    height: 40px;
    margin-right: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--color-accent);
}

.contact-icon img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

.contact-card:hover .contact-icon img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(2304%) hue-rotate(193deg) brightness(96%) contrast(97%);
    /* Turns it to primary navy color */
}

.contact-label {
    font-family: var(--font-inter);
    font-weight: 600;
    color: var(--color-accent);
    font-size: 14px;
}

.contact-number {
    font-family: var(--font-inter);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 24px;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    position: relative;
    z-index: 10;
    padding: 0px 0 80px;
}

@keyframes pulseGlowServices {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.7;
    }
}

.service-section-left-bg {
    position: absolute;
    left: 26px;
    bottom: 0;
    width: 167.31px;
    height: 167.31px;
    background-image: url(assets/images/our-services-end-image.webp);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    opacity: 43%;
    rotate: -225deg;
    animation: pulseGlowServices 4s ease-in-out infinite;
}

.service-section-right-bg {
    position: absolute;
    top: 21px;
    right: 26px;
    width: 167.31px;
    height: 167.31px;
    background-image: url(assets/images/our-services-end-image.png);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    opacity: 43%;
    rotate: -45deg;
    animation: pulseGlowServices 4s ease-in-out infinite;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.line-decoration {
    width: 52px;
    height: 2px;
}

.section-title-center {
    font-family: var(--font-quando);
    color: var(--color-primary);
    font-size: 48px;
    margin: 0;
}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 225px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.service-card-light {
    background-color: var(--color-light-blue);
}

.service-card-image {
    height: 335px;
    justify-content: flex-end;
}

.service-card--offset {
    margin-top: -86px;
}

.service-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5, 40, 75, 1) 0%, rgba(69, 106, 135, 1) 37%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.service-card .stretched-link::after {
    z-index: 3;
}

@keyframes floatArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.services-card-arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(5, 40, 75, 0.15);
    rotate: -400deg;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatArrow 3s ease-in-out infinite;
}

.service-card:hover .services-card-arrow {
    rotate: 0deg;
    background: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(193, 157, 96, 0.4);
    animation-play-state: paused;
}

/* ── Hover: Image Card ── */
.service-card-image {
    transition: box-shadow 0.4s ease;
}

.service-card-image .service-bg-img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-image .service-overlay {
    transition: opacity 0.5s ease;
}

.service-card-image .service-content {
    transition: transform 0.4s ease;
}

.service-card-image:hover {
    box-shadow: 0 16px 32px rgba(5, 40, 75, 0.3);
}

.service-card-image:hover .service-bg-img {
    transform: scale(1.08);
}

.service-card-image:hover .service-overlay {
    opacity: 0.85;
    /* Darken overlay slightly to make text pop more */
}

.service-card-image:hover .service-content {
    transform: translateY(-4px);
}


.service-content {
    position: relative;
    z-index: 2;
    padding: 0 4px;
}

.service-title {
    font-family: var(--font-quando);
    color: var(--color-primary);
    font-size: 22.4px;
    margin-bottom: 8px;
}

.service-description {
    font-family: var(--font-inter);
    color: var(--color-text);
    font-size: 14px;
    line-height: 24px;
}

/* ===========================
   Trust & Quote Section
   =========================== */
.trust-quote-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    background-image: url('assets/images/trust-section-bg.webp');
    background-size: cover;
    background-position: center;
}

.line-decoration-small {
    width: 40px;
    height: 2px;
    margin-top: 8px;
    flex-shrink: 0;
}

.trust-card {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0px 4px 13.1px rgba(9, 58, 88, 0.2);
    padding: 14px;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(9, 58, 88, 0.25);
}

.trust-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-card:hover .trust-icon {
    transform: scale(1.25) rotate(15deg);
}

.trust-title {
    font-family: var(--font-quando);
    color: #093a58;
    font-size: 16px;
    margin-bottom: 8px;
}

.trust-description {
    font-family: var(--font-inter);
    color: #737373;
    font-size: 14px;
    line-height: 22px;
}

/* ===========================
   Quote Form
   =========================== */
.quote-form-wrapper {
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(128, 213, 255, 1) 0%, rgba(9, 69, 129, 1) 100%);
    padding: 44px 40px;
}

.quote-form-title {
    font-family: var(--font-quando);
    color: var(--color-white);
    font-size: 30px;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 28px;
}

.form-control-underline {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-white);
    border-radius: 0;
    padding: 24px 0 4.8px 0;
    color: var(--color-white);
    font-size: 14px;
}

.form-control-underline:focus {
    background-color: transparent;
    border-color: var(--color-white);
    box-shadow: none;
    color: var(--color-white);
}

.form-control-underline::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select-underline {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-white);
    border-radius: 0;
    padding: 24px 24px 4.8px 0;
    color: var(--color-white);
    font-size: 14px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select-underline:focus {
    background-color: transparent;
    border-color: var(--color-white);
    box-shadow: none;
    color: var(--color-white);
}

.form-select-underline option {
    color: var(--color-primary);
}

.form-control-bordered {
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 5px;
    color: var(--color-white);
    font-size: 14px;
}

.form-control-bordered:focus {
    background-color: transparent;
    border-color: var(--color-white);
    box-shadow: none;
    color: var(--color-white);
}

.form-control-bordered::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-quote {
    height: 48px;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(159, 223, 255, 1) 0%, rgba(159, 223, 255, 1) 100%);
    font-family: var(--font-quando);
    color: var(--color-primary);
    font-size: 18px;
    border: none;
    transition: background 0.3s ease;
}

.btn-quote:hover {
    background: linear-gradient(90deg, rgba(130, 200, 240, 1) 0%, rgba(130, 200, 240, 1) 100%);
    color: var(--color-primary);
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.7;
    }
}

.testimonials-bg {
    position: absolute;
    top: 48%;
    left: 32%;
    width: 166px;
    height: 166px;
    background-image: url('assets/images/testimonials-bg.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

.testimonials-bg-right {
    position: absolute;
    top: 0%;
    right: 3%;
    width: 166px;
    height: 166px;
    background-image: url('assets/images/testimonials-bg.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite 2s;
    /* 2s delay so they blink alternately */
}

.customers-icon {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.customers-text {
    font-family: var(--font-inter);
    font-weight: 700;
    color: #646464;
    font-size: 24px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0px 0px 10.8px rgba(0, 0, 0, 0.25);
    padding: 24px;
}

.testimonial-quote {
    font-family: var(--font-inter);
    color: var(--color-text);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.google-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    object-fit: cover;
}

.testimonial-author {
    font-family: var(--font-quando);
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.stars-img {
    width: 76px;
    height: 15px;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery-section {
    position: relative;
    z-index: 10;
    padding: 64px 0 80px;
    background-image: url('assets/images/gallery.png');
    background-size: cover;
    background-position: center;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gallery-title {
    font-family: var(--font-quando);
    color: var(--color-primary);
    font-size: 48px;
    margin: 0;
    white-space: nowrap;
}

.gallery-title-line {
    flex: 0 0 60px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.gallery-row {
    display: flex;
    gap: 12px;
}

.gallery-pair {
    flex: 1;
    min-width: 0;
}

.gallery-pair .gallery-item {
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: 482px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-badge-left {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(5, 40, 75, 1) 0%, rgba(69, 106, 135, 1) 100%);
    font-family: var(--font-quando);
    color: var(--color-white);
    font-size: 12px;
}

.gallery-badge-right {
    position: absolute;
    bottom: 10px;
    right: 146px;
    padding: 4px 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(5, 40, 75, 1) 0%, rgba(69, 106, 135, 1) 100%);
    font-family: var(--font-quando);
    color: var(--color-white);
    font-size: 12px;
}

/* ===========================
   Cleaning Guides / Blog Section
   =========================== */
.cleaning-guides-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.blog-card {
    position: relative;
    height: auto;
}

.blog-card-inner {
    position: relative;
    height: 100%;
}

.blog-img {
    display: block;
    width: 356px;
    margin: 0 auto;
    height: 360px;
    object-fit: cover;
    border-radius: 15px;
}

.blog-content {
    position: relative;
    width: calc(100% - 32px);
    margin: -56px auto 0;
    background-color: var(--color-light-blue);
    border-radius: 5px;
    backdrop-filter: blur(2.5px);
    padding: 20px;
}

.blog-title {
    font-family: var(--font-quando);
    color: var(--color-primary);
    font-size: 18px;
    line-height: 26px;
    margin-top: 4px;
    margin-bottom: 6px;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    color: var(--color-accent);
}

.blog-meta {
    font-family: var(--font-inter);
    font-weight: 500;
    color: var(--color-accent);
    font-size: 13px;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    position: relative;
    width: 100%;
}

.footer-main {
    background-image: url('assets/images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 56px 0 48px;
}

.footer-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-description {
    max-width: 320px;
    color: var(--color-light-gray);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--font-inter);
}

.footer-heading {
    font-family: var(--font-quando);
    color: var(--color-light-gray);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-inter);
    font-weight: 500;
    color: var(--color-light-gray);
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(6px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-white);
    font-family: var(--font-inter);
    font-weight: 500;
/*     font-style: normal; */
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--color-accent);
}

.contact-item i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.contact-item:hover i {
    transform: translateY(-4px);
    color: var(--color-primary);
}

.footer-bottom {
    width: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
}

.footer-bottom p {
    color: var(--color-white);
    font-size: 14px;
    text-align: center;
    font-family: var(--font-public-sans);
    margin: 0;
    letter-spacing: 0.12px;
}

/* ============================================
   Desktop container scaling (1400px Figma design)
   ============================================ */
@media (min-width: 992px) {

    body>.banner-wrapper .container,
    body>header .container,
    body>nav .container,
    body>section .container,
    body>footer .container {
        max-width: 1400px !important;
        width: 100% !important;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {

    body>.banner-wrapper,
    body>header,
    body>section,
    body>footer {
        zoom: 0.88;
        transform-origin: top center;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {

    body>.banner-wrapper,
    body>header,
    body>section,
    body>footer {
        zoom: 0.82;
    }
}


/* ============================================
   Inner Page Banner
   ============================================ */
.inner-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background-image: url('assets/images/about-house-cleaning.webp');
    background-size: cover;
    background-position: center;
    padding-bottom: 64px;
    z-index: 1;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(5, 40, 75, 0.45) 0%,
            rgba(5, 40, 75, 0.82) 100%);
    z-index: 0;
}

.inner-banner-content {
    position: relative;
    z-index: 1;
    padding-top: 140px;
}

.inner-banner-tag {
    font-family: var(--font-quando);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.inner-banner-title {
    font-family: var(--font-quando);
    font-size: 52px;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-inter);
    font-size: 14px;
}

.inner-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.inner-breadcrumb a:hover {
    color: var(--color-white);
}

.inner-breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-sep {
    color: var(--color-accent);
    font-size: 10px;
}

@media (max-width: 768px) {
    .inner-banner {
        min-height: 320px;
        padding-bottom: 48px;
    }

    .inner-banner-title {
        font-size: 34px;
    }

    .inner-banner-content {
        padding-top: 120px;
    }
}


/* ============================================
   Process Section
   ============================================ */
.process-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    background-color: #f8fbff;
}

.process-steps-row {
    position: relative;
    align-items: stretch !important;
}

/* ── Base card ── */
.process-step {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 44px 28px 36px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ── Shared pseudo for shimmer/sweep ── */
.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

/* ── All content above pseudo ── */
.process-step>* {
    position: relative;
    z-index: 1;
}

/* ─── Card 1 — Navy gradient, lift hover ─── */
.process-step--1 {
    background: linear-gradient(160deg, var(--color-primary) 0%, #2271a3 50%, var(--color-accent) 100%);
    border: none;
    box-shadow: 0 8px 32px rgba(5, 40, 75, 0.25);
}

.process-step--1 .process-number,
.process-step--1 .process-title,
.process-step--1 .process-description {
    color: var(--color-white) !important;
}

.process-step--1 .process-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.process-step--1::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.process-step--1:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(5, 40, 75, 0.38);
}

.process-step--1:hover::before {
    opacity: 1;
}

.process-step--1:hover .process-icon-wrap {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ─── Card 2 — Full gradient, glow pulse hover ─── */
.process-step--2 {
    background: linear-gradient(160deg, var(--color-primary) 0%, #2271a3 50%, var(--color-accent) 100%);
    border: none;
    box-shadow: 0 8px 32px rgba(5, 40, 75, 0.25);
}

.process-step--2 .process-number,
.process-step--2 .process-title,
.process-step--2 .process-description {
    color: var(--color-white) !important;
}

.process-step--2 .process-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.process-step--2::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
}

.process-step--2:hover {
    transform: scale(1.04);
    box-shadow: 0 0 0 6px rgba(52, 168, 223, 0.3), 0 16px 48px rgba(5, 40, 75, 0.35);
}

.process-step--2:hover::before {
    opacity: 1;
}

.process-step--2:hover .process-icon-wrap {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

/* ─── Card 3 — Navy gradient, icon spin hover ─── */
.process-step--3 {
    background: linear-gradient(160deg, var(--color-primary) 0%, #2271a3 50%, var(--color-accent) 100%);
    border: none;
    box-shadow: 0 8px 32px rgba(5, 40, 75, 0.25);
}

.process-step--3 .process-number,
.process-step--3 .process-title,
.process-step--3 .process-description {
    color: var(--color-white) !important;
}

.process-step--3 .process-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transition: background 0.3s ease, transform 0.5s ease;
}

.process-step--3::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.process-step--3:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 56px rgba(5, 40, 75, 0.38);
}

.process-step--3:hover::before {
    opacity: 1;
}

.process-step--3:hover .process-icon-wrap {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: rotate(360deg);
}

/* ─── Card 4 — Navy gradient, scale + glow ring hover ─── */
.process-step--4 {
    background: linear-gradient(160deg, var(--color-primary) 0%, #2271a3 50%, var(--color-accent) 100%);
    border: none;
    box-shadow: 0 8px 32px rgba(5, 40, 75, 0.25);
}

.process-step--4 .process-number,
.process-step--4 .process-title,
.process-step--4 .process-description {
    color: var(--color-white) !important;
}

.process-step--4 .process-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.process-step--4::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.process-step--4:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 0 0 5px rgba(52, 168, 223, 0.35), 0 20px 56px rgba(5, 40, 75, 0.38);
}

.process-step--4:hover::before {
    opacity: 1;
}

.process-step--4:hover .process-icon-wrap {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: scale(1.15);
}

/* ── Shared number / text ── */
.process-number {
    font-family: var(--font-quando);
    font-size: 52px;
    font-weight: 700;
    color: rgba(5, 40, 75, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.process-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.process-title {
    font-family: var(--font-quando);
    color: var(--color-primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.process-description {
    font-family: var(--font-inter);
    color: var(--color-text);
    font-size: 14px;
    line-height: 24px;
}




/* ============================================
   Stats Strip
   ============================================ */
.stats-section {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/testimonials-bg.png');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.04;
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
    position: relative;
}

.stat-item--border {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-number {
    font-family: var(--font-quando);
    font-size: 56px;
    color: var(--color-white);
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-family: var(--font-quando);
    font-size: 36px;
    color: var(--color-accent);
    display: inline-block;
    vertical-align: top;
    margin-top: 6px;
}

.stat-label {
    font-family: var(--font-inter);
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

@media (max-width: 575px) {
    .stat-item--border {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ============================================
   Services Archive Page
   ============================================ */

/* ── Intro Strip ── */
.services-intro-strip {
    padding: 64px 0 48px;
    background-color: var(--color-white);
    position: relative;
    z-index: 10;
}

.services-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .services-trust-pills {
        justify-content: flex-start;
    }
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--color-light-blue);
    color: var(--color-primary);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.trust-pill:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ── Services Archive Section ── */
.services-archive-section {
    padding: 16px 0 80px;
    position: relative;
    z-index: 10;
    background-color: var(--color-white);
}

/* ── Auto-fill Grid ── */
.services-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

@media (min-width: 1200px) {
    .services-archive-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Service Card ── */
.svc-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px;
    cursor: pointer;
    background-image: var(--svc-bg, none);
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary);
    display: flex;
    align-items: flex-end;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 40, 75, 0.1) 0%, rgba(5, 40, 75, 0.75) 60%, rgba(5, 40, 75, 0.95) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.svc-card:hover::before {
    background: linear-gradient(180deg, rgba(5, 40, 75, 0.3) 0%, rgba(5, 40, 75, 0.9) 40%, rgba(5, 40, 75, 0.98) 100%);
}

.svc-card:hover {
    box-shadow: 0 24px 64px rgba(5, 40, 75, 0.4);
    transform: translateY(-8px);
}

/* Badge */
.svc-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-quando);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.svc-full-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}

/* Resting state */
.svc-resting {
    position: relative;
    z-index: 2;
    padding: 28px;
    width: 100%;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.svc-card:hover .svc-resting {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

/* Hover reveal */
.svc-hover-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.svc-card:hover .svc-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Circle */
.svc-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.svc-card:hover .svc-icon-circle {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.08);
}

.svc-icon-circle--sm {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 8px;
}

.svc-title {
    font-family: var(--font-quando);
    color: var(--color-white);
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
}

.svc-desc {
    font-family: var(--font-inter);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13.5px;
    line-height: 22px;
    margin: 0;
}

.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    font-family: var(--font-quando);
    font-size: 13px;
    text-decoration: none;
    width: fit-content;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
    z-index: 5;
    position: relative;
}

.svc-cta-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateX(4px);
}

/* ── CTA Banner ── */
.services-cta-banner {
    position: relative;
    z-index: 10;
    margin: 0 32px 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a6a9e 50%, var(--color-accent) 100%);
    overflow: hidden;
}

.services-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/testimonials-bg.png');
    background-size: 180px;
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
}

.services-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px 56px;
    flex-wrap: wrap;
}

.services-cta-title {
    font-family: var(--font-quando);
    color: var(--color-white);
    font-size: 32px;
    margin-bottom: 8px;
}

.services-cta-sub {
    font-family: var(--font-inter);
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    margin: 0;
}

.services-cta-btn-main {
    background: var(--color-white) !important;
    color: var(--color-primary) !important;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 15px;
    padding: 14px 32px;
}

.services-cta-btn-main:hover {
    background: var(--color-light-blue) !important;
    color: var(--color-primary) !important;
    transform: translateY(-3px);
    opacity: 1 !important;
}

@media (max-width: 767px) {
    .services-cta-inner {
        padding: 36px 28px;
        flex-direction: column;
        text-align: center;
    }

    .services-cta-title {
        font-size: 24px;
    }

    .services-cta-banner {
        margin: 0 16px 60px;
    }

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

    .svc-card {
        min-height: 280px;
    }
}

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


/* ============================================
   sw-svc-card — Corner-border card design
   ============================================ */

.sw-svc-card {
    position: relative;
    background: var(--color-primary);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ── Animated corner borders ── */
.sw-card-border {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    z-index: 2;
    pointer-events: none;
}

.sw-card-border::before,
.sw-card-border::after {
    content: '';
    position: absolute;
    transition: all 0.5s ease;
}

/* Top-left corner accent */
.sw-card-border::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    border-radius: 14px 0 0 0;
}

/* Bottom-right corner accent */
.sw-card-border::after {
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
    border-radius: 0 0 14px 0;
}

/* Hover: expand top-left to full border, hide bottom-right */
.sw-svc-card:hover .sw-card-border::before {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    border: 1.5px solid rgba(52, 168, 223, 0.45);
}

.sw-svc-card:hover .sw-card-border::after {
    width: 0;
    height: 0;
}

.sw-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(5, 40, 75, 0.3);
}

/* ── Image ── */
.sw-svc-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(160deg, #0d3257 0%, #1a6299 100%);
}

.sw-svc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.sw-svc-card:hover .sw-svc-image img {
    transform: scale(1.06);
}

/* Placeholder when no image */
.sw-svc-image--placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--color-primary) 0%, #1d6aa3 100%);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
}

/* ── Content ── */
.sw-svc-content {
    padding: 28px 24px 32px;
    background: rgba(5, 40, 75, 0.92);
    position: relative;
    z-index: 1;
}

.sw-svc-title {
    font-family: var(--font-quando);
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sw-svc-desc {
    font-family: var(--font-inter);
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

/* ── CTA link ── */
.sw-svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-family: var(--font-quando);
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.sw-svc-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sw-svc-btn:hover {
    color: #fff;
}

.sw-svc-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .sw-svc-image {
        height: 180px;
    }
}

/* ============================================
   Blog List Page
   ============================================ */

.blog-list-section {
    padding: 72px 0 80px;
    background-color: #f8fbff;
    position: relative;
    z-index: 10;
}

/* ── Blog Card Grid ── */
.bl-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bl-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 4px 24px rgba(5, 40, 75, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(5, 40, 75, 0.06);
}

.bl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(5, 40, 75, 0.14);
}

/* Card thumbnail */
.bl-card-thumb {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.bl-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.bl-card:hover .bl-card-thumb img {
    transform: scale(1.06);
}

.bl-thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(160deg, var(--color-primary) 0%, #1d6aa3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
}

/* Category badge */
.bl-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-quando);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 1;
}

/* Card body */
.bl-card-body {
    padding: 28px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* Meta */
.bl-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bl-meta span {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Title */
.bl-title {
    font-family: var(--font-quando);
    font-size: 20px;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.35;
}

.bl-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.bl-title a:hover {
    color: var(--color-accent);
}

/* Excerpt */
.bl-excerpt {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Read more */
.bl-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-quando);
    font-size: 14px;
    color: var(--color-accent);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
    align-self: flex-start;
    margin-top: 4px;
}

.bl-read-more i {
    transition: transform 0.25s ease;
    font-size: 12px;
}

.bl-read-more:hover {
    color: var(--color-primary);
    gap: 14px;
}

.bl-read-more:hover i {
    transform: translateX(4px);
}

/* No posts */
.bl-no-posts {
    text-align: center;
    padding: 64px 24px;
    font-family: var(--font-inter);
    color: var(--color-text);
}

.bl-no-posts i {
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: block;
}

/* ── Pagination ── */
.bl-pagination {
    display: flex;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.bl-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--color-white);
    border: 1.5px solid rgba(5, 40, 75, 0.12);
    font-family: var(--font-quando);
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.bl-pagination .page-numbers.current,
.bl-pagination .page-numbers:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ── Sidebar ── */
.bl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 24px;
}

.bl-widget {
    background: var(--color-white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(5, 40, 75, 0.07);
    border: 1px solid rgba(5, 40, 75, 0.06);
}

.bl-widget-title {
    font-family: var(--font-quando);
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-light-blue);
}

/* Search */
.bl-search-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid rgba(5, 40, 75, 0.12);
}

.bl-search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-primary);
    background: transparent;
}

.bl-search-form button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.bl-search-form button:hover {
    background: var(--color-accent);
}

/* Recent posts */
.bl-recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(5, 40, 75, 0.07);
}

.bl-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bl-recent-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.bl-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl-recent-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bl-recent-title {
    font-family: var(--font-quando);
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl-recent-title:hover {
    color: var(--color-accent);
}

.bl-recent-date {
    font-family: var(--font-inter);
    font-size: 12px;
    color: var(--color-accent);
}

/* CTA widget */
.bl-cta-widget {
    background: linear-gradient(160deg, var(--color-primary) 0%, #1d6aa3 100%) !important;
    border-color: transparent !important;
    text-align: center;
}

.bl-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 16px;
}

.bl-cta-heading {
    font-family: var(--font-quando);
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: 8px;
}

.bl-cta-sub {
    font-family: var(--font-inter);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-quando);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.bl-cta-btn:hover {
    background: var(--color-light-blue);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
    .bl-card {
        flex-direction: column;
    }

    .bl-card-thumb {
        width: 100%;
        height: 200px;
    }

    .bl-thumb-placeholder {
        min-height: 200px;
    }
}


/* ============================================
   Contact Page
   ============================================ */

/* ── Info Cards ── */
.contact-info-section {
    padding: 64px 0 0;
    position: relative;
    z-index: 10;
    background: #f8fbff;
}

.ct-info-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1.5px solid rgba(5, 40, 75, 0.07);
    box-shadow: 0 4px 20px rgba(5, 40, 75, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.ct-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(5, 40, 75, 0.13);
}

/* Featured (middle) card — navy gradient */
.ct-info-card--featured {
    background: linear-gradient(160deg, var(--color-primary) 0%, #1d6aa3 100%);
    border-color: transparent;
}

.ct-info-card--featured .ct-info-icon,
.ct-info-card--featured .ct-info-title,
.ct-info-card--featured .ct-info-sub {
    color: var(--color-white) !important;
}

.ct-info-card--featured .ct-info-detail a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.ct-info-card--featured .ct-info-icon {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.ct-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-light-blue);
    border: 1.5px solid rgba(52, 168, 223, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-accent);
    margin: 0 auto 18px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ct-info-card:hover .ct-info-icon {
    transform: scale(1.1);
}

.ct-info-title {
    font-family: var(--font-quando);
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.ct-info-detail {
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.ct-info-detail a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.25s ease;
}

.ct-info-detail a:hover {
    color: var(--color-primary);
}

.ct-info-sub {
    font-family: var(--font-inter);
    font-size: 13px;
    color: rgba(5, 40, 75, 0.5);
    margin: 0;
}

/* ── Form + Side ── */
.contact-main-section {
    padding: 64px 0 80px;
    background: #f8fbff;
    position: relative;
    z-index: 10;
}

.ct-form-wrap {
    background: var(--color-white);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 4px 32px rgba(5, 40, 75, 0.08);
    border: 1px solid rgba(5, 40, 75, 0.06);
}

/* Native form */
.ct-native-form label {
    display: block;
    font-family: var(--font-quando);
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.ct-native-form input,
.ct-native-form select,
.ct-native-form textarea {
    width: 100%;
    border: 1.5px solid rgba(5, 40, 75, 0.14);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-primary);
    background: #f8fbff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.ct-native-form input:focus,
.ct-native-form select:focus,
.ct-native-form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(52, 168, 223, 0.12);
    background: #fff;
}

.ct-native-form textarea {
    resize: vertical;
}

.ct-native-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2305284B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ── Side blocks ── */
.ct-side-block {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(5, 40, 75, 0.07);
    border: 1px solid rgba(5, 40, 75, 0.06);
    margin-bottom: 24px;
}

.ct-side-title {
    font-family: var(--font-quando);
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.ct-side-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-side-list li {
    font-family: var(--font-inter);
    font-size: 14.5px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-side-list li i {
    color: var(--color-accent);
    font-size: 15px;
    flex-shrink: 0;
}

/* Hours */
.ct-hours-block {
    background: linear-gradient(160deg, var(--color-primary) 0%, #1d6aa3 100%);
    border-radius: 16px;
    padding: 28px;
}

.ct-hours-title {
    font-family: var(--font-quando);
    font-size: 17px;
    color: var(--color-white);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-hours-list li {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ct-hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .ct-form-wrap {
        padding: 28px 20px;
    }
}


/* ============================================
   Testimonials Page
   ============================================ */

/* ── Trust Strip ── */
.tm-trust-strip {
    padding: 48px 0;
    background: var(--color-white);
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(5, 40, 75, 0.07);
}

.tm-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.tm-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
    gap: 4px;
}

.tm-trust-num {
    font-family: var(--font-quando);
    font-size: 42px;
    color: var(--color-primary);
    line-height: 1;
}

.tm-trust-num sup {
    font-size: 22px;
    vertical-align: super;
    color: var(--color-accent);
}

.tm-trust-label {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.tm-trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(5, 40, 75, 0.12);
}

/* ── Grid Section ── */
.tm-grid-section {
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-light-blue);
}

/* ── Testimonial Card ── */
.tm-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 36px 30px 30px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 24px rgba(5, 40, 75, 0.07);
    border: 1px solid rgba(5, 40, 75, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.tm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(5, 40, 75, 0.13);
}

/* Featured (first) card — navy gradient */
.tm-card--featured {
    background: linear-gradient(160deg, var(--color-primary) 0%, #1a6299 100%);
    border-color: transparent;
}

.tm-card--featured .tm-quote-mark,
.tm-card--featured .tm-text,
.tm-card--featured .tm-author-name {
    color: var(--color-white) !important;
}

.tm-card--featured .tm-stars i {
    color: #ffd166;
}

.tm-card--featured .tm-author-role {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Opening quote mark */
.tm-quote-mark {
    font-family: Georgia, serif;
    font-size: 72px;
    color: var(--color-accent);
    line-height: 0.6;
    height: 40px;
    display: block;
    opacity: 0.4;
}

/* Stars */
.tm-stars {
    display: flex;
    gap: 4px;
}

.tm-stars i {
    color: #f5a623;
    font-size: 14px;
}

/* Review text */
.tm-text {
    font-family: var(--font-inter);
    font-size: 14.5px;
    color: var(--color-text);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

/* Author row */
.tm-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(5, 40, 75, 0.07);
    margin-top: auto;
}

.tm-card--featured .tm-author-row {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.tm-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.tm-author-name {
    font-family: var(--font-quando);
    font-size: 15px;
    color: var(--color-primary);
    line-height: 1.2;
}

.tm-author-role {
    font-family: var(--font-inter);
    font-size: 12px;
    color: rgba(5, 40, 75, 0.5);
}

.tm-google-badge {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .tm-trust-stat {
        padding: 16px 24px;
    }

    .tm-trust-divider {
        display: none;
    }

    .tm-trust-inner {
        gap: 0;
    }
}



/* ============================================
   Single Service Page
   ============================================ */

.ss-section {
    padding: 72px 0 80px;
    background: #f8fbff;
    position: relative;
    z-index: 10;
}

/* ── Featured image ── */
.ss-featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 8px 32px rgba(5, 40, 75, 0.1);
}

.ss-featured-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ── WordPress content body ── */
.ss-body {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text);
}

.ss-body h2,
.ss-body h3,
.ss-body h4 {
    font-family: var(--font-quando);
    color: var(--color-primary);
/*     margin: 32px 0 14px; */
    line-height: 1.3;
}

.ss-body h2 {
    font-size: 28px;
}

.ss-body h3 {
    font-size: 22px;
}

.ss-body h4 {
    font-size: 18px;
}

.ss-body p {
    margin-bottom: 18px;
}

.ss-body ul,
.ss-body ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.ss-body li {
    margin-bottom: 8px;
}

.ss-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(5, 40, 75, 0.1);
}

.ss-body a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.25s ease;
}

.ss-body a:hover {
    color: var(--color-primary);
}

.ss-body blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--color-light-blue);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--color-primary);
}

@media (max-width: 767px) {
    .ss-body h2 {
        font-size: 22px;
    }

    .ss-body h3 {
        font-size: 18px;
    }

    .ss-body h4 {
        font-size: 16px;
    }

    .ss-featured-img img {
        height: 220px;
    }
}

/* ── Sidebar ── */
.ss-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px;
}

/* Widget base */
.ss-widget {
    background: var(--color-white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(5, 40, 75, 0.07);
    border: 1px solid rgba(5, 40, 75, 0.06);
}

.ss-widget-title {
    font-family: var(--font-quando);
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-light-blue);
}

/* ── Services list ── */
.ss-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ss-services-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.ss-services-list li a i {
    font-size: 10px;
    color: var(--color-accent);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.ss-services-list li a:hover {
    background: var(--color-light-blue);
    color: var(--color-primary);
    padding-left: 18px;
}

.ss-services-list li a:hover i {
    transform: translateX(3px);
}

.ss-services-list li.active a {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-quando);
    padding-left: 16px;
}

.ss-services-list li.active a i {
    color: var(--color-accent);
}

/* ── CTA widget ── */
.ss-cta-widget {
    background: linear-gradient(160deg, var(--color-primary) 0%, #1d6aa3 100%) !important;
    border-color: transparent !important;
    text-align: center;
}

.ss-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 16px;
}

.ss-cta-heading {
    font-family: var(--font-quando);
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: 10px;
}

.ss-cta-sub {
    font-family: var(--font-inter);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ss-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-quando);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.ss-cta-btn:hover {
    background: var(--color-light-blue);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.ss-cta-btn i {
    transition: transform 0.25s ease;
}

.ss-cta-btn:hover i {
    transform: translateX(4px);
}

/* ── Why Choose Us list ── */
.ss-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ss-why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-text);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(5, 40, 75, 0.06);
}

.ss-why-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ss-why-list li i {
    color: var(--color-accent);
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .ss-sidebar {
        position: static;
    }
}


/* ============================================
   Single Post Page
   ============================================ */

.sp-section {
    padding: 72px 0 80px;
    background: #f8fbff;
    position: relative;
    z-index: 10;
}

/* ── Meta bar ── */
.sp-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 14px 20px;
    background: var(--color-white);
    border-radius: 10px;
    border: 1px solid rgba(5, 40, 75, 0.07);
    box-shadow: 0 2px 12px rgba(5, 40, 75, 0.05);
}

.sp-meta span {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-meta span i {
    color: var(--color-accent);
    font-size: 13px;
}

/* ── Post Prev/Next nav ── */
.sp-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid rgba(5, 40, 75, 0.08);
}

.sp-nav-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1.5px solid rgba(5, 40, 75, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    max-width: 48%;
}

.sp-nav-card--right {
    text-align: right;
    align-items: flex-end;
}

.sp-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(5, 40, 75, 0.12);
    border-color: var(--color-accent);
}

.sp-nav-label {
    font-family: var(--font-quando);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-nav-card--right .sp-nav-label {
    justify-content: flex-end;
}

.sp-nav-title {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.sp-nav-card:hover .sp-nav-title {
    color: var(--color-accent);
}

@media (max-width: 576px) {
    .sp-post-nav {
        flex-direction: column;
    }

    .sp-nav-card {
        max-width: 100%;
    }

    .sp-nav-card--right {
        text-align: left;
        align-items: flex-start;
    }

    .sp-nav-card--right .sp-nav-label {
        justify-content: flex-start;
    }
}


/* ── Blog Grid card (2-col, image-on-top) ── */
.bl-grid-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(5, 40, 75, 0.07);
    border: 1px solid rgba(5, 40, 75, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bl-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(5, 40, 75, 0.14);
}

.bl-grid-thumb {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
}

.bl-grid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.bl-grid-card:hover .bl-grid-thumb img {
    transform: scale(1.06);
}

.bl-grid-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* ============================================
   FRONT-PAGE RESPONSIVENESS (PERFECT LEFT-ALIGNED)
   ============================================ */

@media (max-width: 991.98px) {

    /* Baseline Section Spacing */
    .banner-section {
        padding: 60px 0 50px;
        min-height: auto;
    }

    .about-section,
    .services-section,
    .trust-quote-section,
    .gallery-section,
    .blog-section {
        padding: 50px 0;
    }

    /* Universal Left Alignment & Sizing */
    .banner-section,
    .about-section,
    .services-section,
    .trust-quote-section,
    .gallery-section,
    .blog-section,
    .footer-section,
    .contact-cta-wrapper {
        text-align: left !important;
    }

    .section-title,
    .section-title-center,
    .banner-title,
    .section-description,
    .banner-description {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Cancel Desktop Padding */
    .px-5 {
        padding-left: var(--bs-gutter-x, 15px) !important;
        padding-right: var(--bs-gutter-x, 15px) !important;
    }

    /* Font Scaling */
    .banner-title {
        font-size: 38px;
        line-height: 1.3;
    }

    .banner-cleaning-circle {
        top: -100px;
        left: -15px;
        width: 125%;
    }

    .banner-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .section-title,
    .section-title-center {
        font-size: 32px;
    }

    /* Uniform Cards */
    .service-card,
    .trust-card,
    .testimonial-card,
    .bl-grid-card {
        height: 100% !important;
        text-align: left !important;
        margin-bottom: 24px;
    }

    .service-card-light,
    .service-card-image {
        height: 300px !important;
        min-height: 300px !important;
    }

    .service-card--offset {
        margin-top: 0 !important;
    }

    .benefits-list {
        margin-bottom: 0 !important;
        /* Remove gap when lists stack */
    }

    /* Grids to Single Column */
    .row {
/*         --bs-gutter-y: 24px; */
    }

    /* Specific Elements */
    .about-img-wrapper {
        min-height: 380px;
        margin-bottom: 20px;
    }

    .contact-card {
        position: relative;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: -20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .stats-main-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .gallery-row {
        flex-direction: column;
        gap: 20px;
    }

    .tq-quote-box {
        margin-top: 30px;
        padding: 30px;
    }

    .contact-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-widget-title::after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .banner-title {
        font-size: 32px;
    }

    .banner-cleaning-circle {
        top: -73px;
        left: -12px;
        width: 120%;
    }

    .section-title,
    .section-title-center {
        font-size: 28px;
    }

    .stats-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-cleaning-circle {
        top: -75px;
        width: 115%;
    }

    .section-title,
    .section-title-center {
        font-size: 24px;
    }

    .btn-gradient {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* slick slider services card for mobile */
/* ===========================
   Services Mobile Slick Slider
   =========================== */
@media (max-width: 991.98px) {

    /* Create gaps between slides */
    .sw-services-slider.slick-initialized .slick-slide {
        margin: 0 12px;
        height: auto;
    }

    /* Ensure track displays as flex so all cards are equal height */
    .sw-services-slider.slick-initialized .slick-track {
        display: flex !important;
        align-items: stretch;
    }

    .sw-services-slider.slick-initialized .slick-slide>div {
        height: 100%;
        display: flex;
    }

    .sw-services-slider .col-12 {
        /* Reset column width when wrapped in slick */
        width: 100% !important;
        flex: 1;
    }

    /* Style slick dots */
    .sw-services-slider .slick-dots {
        position: relative;
        bottom: auto;
        margin-top: 20px;
        display: flex !important;
        justify-content: center;
        gap: 8px;
        padding: 0;
        list-style: none;
    }

    .sw-services-slider .slick-dots li {
        margin: 0;
        width: auto;
        height: auto;
    }

    .sw-services-slider .slick-dots li button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(5, 40, 75, 0.2);
        padding: 0;
        font-size: 0;
        line-height: 0;
        border: none;
        transition: all 0.3s ease;
    }

    .sw-services-slider .slick-dots li button:before {
        display: none;
        /* Hide default dot */
    }

    .sw-services-slider .slick-dots li.slick-active button {
        background: var(--color-primary);
        transform: scale(1.2);
    }
}

.footer-socials{
    list-style: none;
    padding-left: 0;
    display: flex;
}
.footer-socials li{
    margin-right: 20px;
}

/* ============================================
   QUOTE POPUP MODAL — BRAND ALIGNED
   ============================================ */

.quote-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 40, 75, 0.75); /* primary with opacity */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.quote-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* ===============================
   POPUP BOX
================================= */

.quote-popup {
  position: relative;
  width: 90%;
  max-width: 520px;

  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );

  border-radius: 20px;
  padding: 42px 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-popup-overlay.active .quote-popup {
  transform: translateY(0) scale(1);
}


/* ===============================
   CLOSE BUTTON
================================= */

.quote-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);

  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.25s ease;
}

.quote-popup-close:hover {
  background: var(--color-accent);
  transform: rotate(90deg);
}


/* ===============================
   TITLE & DESCRIPTION
================================= */

.quote-popup-title {
  font-family: var(--font-quando);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-white);
  margin: 0 0 8px;
  text-align: center;
}

.quote-popup-desc {
  font-family: var(--font-inter);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 0 0 26px;
}


/* ===============================
   FORM FIELDS (WPForms Compatible)
================================= */

.quote-popup input,
.quote-popup select,
.quote-popup textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-white);
  background: transparent;
  outline: none;
  transition: border-color 0.25s ease;
}

.quote-popup input::placeholder,
.quote-popup textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.quote-popup input:focus,
.quote-popup select:focus,
.quote-popup textarea:focus {
  border-bottom-color: var(--color-accent);
}


/* Select Arrow */
.quote-popup select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.quote-popup select option {
  background: var(--color-primary);
  color: var(--color-white);
}


/* ===============================
   SUBMIT BUTTON
================================= */

.quote-popup .wpforms-submit {
  display: block;
  width: 85%;
  margin: 14px auto 0;
  padding: 14px;

  background: var(--color-accent);
  color: var(--color-white);

  font-family: var(--font-public-sans);
  font-weight: 600;
  font-size: 15px;

  border: none;
  border-radius: 50px;
  cursor: pointer;

  transition: background 0.25s ease, transform 0.2s ease;
}

.quote-popup .wpforms-submit:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}


/* ===============================
   MOBILE
================================= */

@media (max-width: 575.98px) {

  .quote-popup {
    padding: 34px 24px;
  }

  .quote-popup-title {
    font-size: 24px;
  }

}

/* ============================================
   About Intro Section (page-about.php)
   ============================================ */

.about-intro-section {
    padding: 80px 0 40px;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-intro-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.about-intro-title {
    font-family: var(--font-quando);
    font-size: 42px;
    color: var(--color-primary);
    line-height: 1.25;
/*     margin-bottom: 24px; */
}

.about-intro-body {
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-intro-body:last-of-type {
    margin-bottom: 0;
}
/* ── Testimonials Slider Styles ── */
.testimonials-slider {
    margin: 0 -12px;
}

.testimonials-slider .slick-slide {
    padding: 12px;
    /* space so box-shadow doesn't clip */
    height: auto;
}

.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider .slick-slide>div {
    height: 100%;
/*     display: flex; */
}

.testimonials-slider .testimonial-card {
    height: 100%;
    width: 100%;
}

.testimonials-slider .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 24px;
    display: flex !important;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.testimonials-slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.testimonials-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(5, 40, 75, 0.2);
    padding: 0;
    font-size: 0;
    line-height: 0;
    border: none;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-dots li button:before {
    display: none;
}

.testimonials-slider .slick-dots li.slick-active button {
    background: var(--color-accent);
    width: 24px;
    border-radius: 100px;
}



/* ===========================
   WPForms — Quote Form Overrides
   Match original visual styling only (leaves layout default)
   =========================== */

/* Make text white */
.quote-form-wrapper .wpforms-form {
    color: var(--color-white);
}

/* Labels — hide them (we use placeholders) */
.quote-form-wrapper .wpforms-field-label {
    display: none !important;
}

/* ── Underline inputs ── */
.quote-form-wrapper .wpforms-field input[type="text"],
.quote-form-wrapper .wpforms-field input[type="email"],
.quote-form-wrapper .wpforms-field input[type="tel"],
.quote-form-wrapper .wpforms-field input[type="url"],
.quote-form-wrapper .wpforms-field input[type="number"],
.quote-form-wrapper .wpforms-field input[type="date"] {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--color-white) !important;
    border-radius: 0 !important;
    padding: 16px 0 8px 0 !important;
    /* Lighter padding inside input */
    color: var(--color-white) !important;
    font-size: 14px !important;
    font-family: var(--font-inter) !important;
    box-shadow: none !important;
}

.quote-form-wrapper .wpforms-field input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ── Select dropdown ── */
.quote-form-wrapper .wpforms-field select {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--color-white) !important;
    border-radius: 0 !important;
    padding: 16px 24px 8px 0 !important;
    color: var(--color-white) !important;
    font-size: 14px !important;
    font-family: var(--font-inter) !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 4px center !important;
    background-size: 16px 12px !important;
    cursor: pointer;
}

.quote-form-wrapper .wpforms-field select option {
    color: var(--color-primary);
    background-color: #fff;
}

/* ── Textarea (bordered) ── */
.quote-form-wrapper .wpforms-field textarea {
    background-color: transparent !important;
    border: 1px solid var(--color-white) !important;
    border-radius: 5px !important;
    color: var(--color-white) !important;
    font-size: 14px !important;
    font-family: var(--font-inter) !important;
    box-shadow: none !important;
    resize: vertical;
    padding: 12px 16px !important;
    min-height: 120px;
}

.quote-form-wrapper .wpforms-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Focus states (Transparent background, white borders) */
.quote-form-wrapper .wpforms-field input:focus,
.quote-form-wrapper .wpforms-field select:focus,
.quote-form-wrapper .wpforms-field textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--color-white) !important;
    background-color: transparent !important;
}

/* Hover states (Primary color border) */
.quote-form-wrapper .wpforms-field input:hover,
.quote-form-wrapper .wpforms-field select:hover {
    border-bottom-color: var(--color-primary) !important;
}

.quote-form-wrapper .wpforms-field textarea:hover {
    border-color: var(--color-primary) !important;
}

/* ── Submit button ── */
.quote-form-wrapper .wpforms-submit {
    width: 100% !important;
    /* Full width button matching original */
    height: 48px !important;
    border-radius: 5px !important;
    background: linear-gradient(90deg, rgba(159, 223, 255, 1) 0%, rgba(159, 223, 255, 1) 100%) !important;
    font-family: var(--font-quando) !important;
    color: var(--color-primary) !important;
    font-size: 18px !important;
    border: none !important;
    transition: background 0.3s ease !important;
    cursor: pointer;
    display: block;
}

.quote-form-wrapper .wpforms-submit:hover {
    background: linear-gradient(90deg, rgba(130, 200, 240, 1) 0%, rgba(130, 200, 240, 1) 100%) !important;
}

/* Error messages in white */
.quote-form-wrapper .wpforms-error {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px !important;
    margin-top: 4px;
}
