:root {
    --primary-color: #0a83c7;
    --primary-dark: #086aa1;
    --secondary-color: #19b7a5;
    --secondary-dark: #0f8f81;
    --text-dark: #1f2937;
    --text-muted: #5f6b7a;
    --border-color: #d9e6ee;
    --accent-color: #eef8fb;
    --page-bg: linear-gradient(
        180deg,
        #fbfeff 0%,
        #f3fbfd 45%,
        #eef8fb 100%
        );
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(10, 131, 199, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(25, 183, 165, 0.08), transparent 28%),
        var(--page-bg);
    background-attachment: fixed;
}


/* =========================
   Shared navigation / header
   ========================= */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--primary-color) !important;
}

.site-logo {
    height: 76px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-shop-link {
    min-height: 44px;
    padding: 0.55rem 1.05rem !important;
    border: 2px solid rgba(10, 131, 199, 0.22);
    border-radius: 999px;
    background: rgba(10, 131, 199, 0.09);
    color: var(--primary-color) !important;
    font-weight: 700;
}

.nav-shop-link:hover,
.nav-shop-link:focus,
.nav-shop-link.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff !important;
}

.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.92rem;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

/* =========================
   Buttons
   ========================= */
.btn-brand {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline-brand {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background-color: var(--primary-color);
    color: #fff;
}

/* =========================
   Shared sections
   ========================= */
.section-padding {
    padding: 75px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    max-width: 760px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.mini-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

.soft-bg,
.why-us {
    background: linear-gradient(180deg, #f7fcfd 0%, #f2f8fb 100%);
}

.page-hero {
    background: linear-gradient(135deg, #0a83c7 0%, #086aa1 60%, #19b7a5 100%);
    color: #fff;
    padding: 90px 0 80px;
}

.about-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 64, 132, 0.88) 0%, rgba(8, 102, 155, 0.72) 48%, rgba(25, 183, 165, 0.34) 100%),
        url('../images/about.png') center top/cover no-repeat;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(6, 52, 120, 0.2) 100%);
    pointer-events: none;
}

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

.industries-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 64, 132, 0.88) 0%, rgba(8, 102, 155, 0.72) 48%, rgba(25, 183, 165, 0.34) 100%),
        url('../images/industries_mobile.png') center center/cover no-repeat;
}

.industries-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(6, 52, 120, 0.2) 100%);
    pointer-events: none;
}

.industries-hero .container {
    position: relative;
    z-index: 1;
}

.cleaning-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 64, 132, 0.88) 0%, rgba(8, 102, 155, 0.72) 48%, rgba(25, 183, 165, 0.34) 100%),
        url('../images/cleaning_service_banner.png') center center/cover no-repeat;
}

.cleaning-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(6, 52, 120, 0.2) 100%);
    pointer-events: none;
}

.cleaning-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.08rem;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.94);
}

.breadcrumb-text {
    font-size: 0.95rem;
    opacity: 0.95;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
}

.inline-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0 10px 10px 0;
}

.icon-wrap,
.card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 131, 199, 0.10), rgba(25, 183, 165, 0.14));
    color: var(--primary-color);
    margin-bottom: 18px;
}

.card-icon {
    border-radius: 12px;
    font-size: 1.5rem;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: inset 0 0 0 4px #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* =========================
   Shared cards
   ========================= */
.content-card,
.value-card,
.capability-card,
.service-card,
.feature-card,
.industry-card,
.category-card,
.product-card,
.contact-card,
.form-card,
.info-card,
.side-card,
.overview-card,
.cta-card {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background-color: #fff;
    padding: 30px;
    height: 100%;
}

.content-card,
.side-card,
.form-card,
.overview-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfe 100%);
}

.content-card p,
.value-card p,
.capability-card p,
.service-card p,
.feature-card p,
.industry-card p,
.category-card p,
.product-card p,
.contact-card p,
.form-card p,
.info-card p,
.side-card p,
.overview-card p,
.cta-card p,
.about-text p,
.cta p,
footer p,
footer li,
footer a,
label,
.form-text {
    color: var(--text-muted);
}

.value-card h3,
.capability-card h3,
.service-card h3,
.feature-card h3,
.industry-card h3,
.category-card h3,
.product-card h3,
.contact-card h3,
.info-card h3,
.side-card h3,
.overview-card h3,
.supply-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.stats-box {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background-color: var(--accent-color);
    padding: 28px;
    height: 100%;
}

.stats-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stats-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.quick-link-box a {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.quick-link-box a:last-child {
    border-bottom: none;
}

.quick-link-box a:hover {
    color: var(--primary-color);
}

/* =========================
   Contact form
   ========================= */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    padding: 12px 14px;
    border-radius: 12px;
    min-height: 48px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 131, 199, 0.12);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.address-list {
    display: grid;
    gap: 16px;
    text-align: left;
}

.address-list.compact {
    gap: 12px;
    margin-top: 4px;
}

.address-list strong,
.address-label {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
}

.address-list span {
    display: block;
    color: var(--text-muted);
    line-height: 1.55;
}

.address-panel {
    display: grid;
    gap: 14px;
}

.address-item {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #f8fbfd;
    padding: 18px;
}

.address-item h5 {
    margin: 4px 0 4px;
    color: var(--primary-color);
    font-weight: 700;
}

.address-item p {
    margin-bottom: 0;
}

/* =========================
   CTA / footer
   ========================= */
.cta-section {
    background-color: #fff;
}

.cta-card,
.cta {
    background-color: var(--primary-color);
    color: #fff;
}

.cta-card {
    border-color: var(--primary-color);
}

.cta {
    border-radius: 22px;
    padding: 50px 35px;
}

.cta-card h2,
.cta-card p,
.cta h2,
.cta p {
    color: #fff;
}

.cta-card .text-lg-end {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.cta-card .btn {
    margin: 0 !important;
    min-width: 190px;
}

footer {
    background-color: #0f172a;
    color: #d1d5db;
}

footer a {
    text-decoration: none;
    color: #d1d5db;
}

footer a:hover {
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.certification-logo-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.certification-logo {
    display: block;
    width: min(150px, 100%);
    height: auto;
}

.app-store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 168px;
    padding: 8px 14px;
    border: 1px solid #111827;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.app-store-button:hover,
.app-store-button:focus {
    color: #fff;
    background: #000;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
    transform: translateY(-1px);
}

.app-store-button i {
    font-size: 1.6rem;
    line-height: 1;
}

.app-store-button span {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 700;
}

.app-store-button small {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0;
}

.footer-app-buttons {
    margin-top: 12px;
}

.footer-app-buttons .app-store-button {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.app-promo-kicker {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.app-promo-section {
    background: #f8fafc;
}

.app-promo-band {
    border-left: 4px solid var(--primary-color);
    padding: 34px 0 34px 28px;
}

.app-order-card {
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.06);
    padding: 24px;
}

/* =========================
   Home page
   ========================= */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    background: #0b48a2;
    color: #fff;
    padding: 130px 0 70px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.18) 28%, rgba(11, 72, 162, 0.62) 72%, rgba(8, 53, 124, 0.94) 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(10, 131, 199, 0.18) 0%, rgba(25, 183, 165, 0.08) 100%);
    pointer-events: none;
}

.hero-slider,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    z-index: 0;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

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

.hero-subtitle {
    font-size: 2.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.98);
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 4.15rem;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
    margin-bottom: 0;
    max-width: 1100px;
}

.hero-underline {
    width: 320px;
    height: 4px;
    background: rgba(255,255,255,0.96);
    border-radius: 999px;
    margin: 20px 0 24px;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.94);
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.hero-buttons .btn-light {
    color: #0b3f7d;
}

.info-strip {
    background-color: #f6fbfd;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.info-item {
    padding: 18px 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.home-service-item {
    grid-column: span 2;
}

.home-service-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.home-services-grid .service-card {
    display: flex;
    flex-direction: column;
}

.home-services-grid .service-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.supply-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.feature-card:hover,
.industry-card:hover,
.supply-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-box {
    background-color: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 35px;
    height: 100%;
}

.about-highlight {
    border-left: 4px solid var(--primary-color);
    padding-left: 16px;
    margin-top: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-visual {
    min-height: 420px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0a83c7 0%, #19b7a5 100%);
}

.supply-banner {
    background: linear-gradient(135deg, rgba(10, 131, 199, 0.08), rgba(25, 183, 165, 0.10));
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 40px;
}

.products-section {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
}

/* =========================
   Support assistant
   ========================= */
.support-assistant {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1090;
    font-family: Arial, Helvetica, sans-serif;
}

.support-assistant-toggle {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1rem;
    font-weight: 700;
    box-shadow: 0 0.75rem 1.75rem rgba(15, 23, 42, 0.18);
}

.support-assistant-toggle:hover,
.support-assistant-toggle:focus {
    background: var(--primary-dark);
}

.support-assistant-panel {
    width: min(360px, calc(100vw - 32px));
    max-height: min(620px, calc(100vh - 96px));
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.22);
    margin-bottom: 12px;
}

.support-assistant-panel[hidden] {
    display: none;
}

.support-assistant-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-dark));
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
}

.support-assistant-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.support-assistant-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    line-height: 1.25;
    margin-top: 3px;
}

.support-assistant-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support-assistant-body {
    padding: 18px;
    overflow-y: auto;
    max-height: 390px;
}

.support-assistant-message,
.support-assistant-answer {
    border-radius: 14px;
    background: #f5fbfd;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 12px 14px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.support-assistant-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0;
}

.support-assistant-search input {
    min-width: 0;
    flex: 1 1 auto;
    min-height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
}

.support-assistant-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 131, 199, 0.12);
}

.support-assistant-search-button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support-assistant-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.support-assistant-suggestions button {
    border: 1px solid rgba(10, 131, 199, 0.18);
    border-radius: 999px;
    background: rgba(10, 131, 199, 0.08);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 0.45rem 0.7rem;
}

.support-assistant-answer {
    display: none;
}

.support-assistant-answer.is-visible {
    display: block;
}

.support-assistant-answer strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.support-assistant-answer p {
    margin: 0;
}

.support-assistant-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 18px 18px;
    border-top: 1px solid var(--border-color);
    background: #fbfeff;
}

.support-assistant-link,
.support-assistant-live-chat {
    min-height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 0.7rem;
}

.support-assistant-link {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.support-assistant-live-chat {
    border: 1px solid var(--primary-color);
    color: #fff;
    background: var(--primary-color);
}

@media (min-width: 992px) {
    .has-customer-side-nav .support-assistant {
        left: 112px;
    }
}

/* =========================
   Supplies page
   ========================= */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card .badge {
    background-color: #fff;
}

.sku-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background-color: #eef7fb;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 12px;
}

.price-note-banner {
    max-width: 900px;
    margin: -16px auto 34px;
    padding: 16px 20px;
    border: 1px solid rgba(25, 183, 165, 0.28);
    border-left: 5px solid var(--secondary-color);
    border-radius: 14px;
    background: linear-gradient(135deg, #f7fcfd 0%, #eef8fb 100%);
    color: var(--text-muted);
}

.price-note-banner strong {
    color: var(--text-dark);
}

.product-price-note {
    color: var(--secondary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 20px;
    border: none;
}

.product-placeholder {
    height: 220px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 131, 199, 0.08), rgba(25, 183, 165, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.featured-slider-wrap {
    position: relative;
}

.featured-carousel .carousel-item {
    padding: 10px 50px;
}

.featured-products-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
    width: 18px;
    height: 18px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 3.35rem;
    }

    .hero-subtitle {
        font-size: 1.95rem;
    }
}

@media (max-width: 991.98px) {
    .page-hero {
        padding: 80px 0 70px;
    }

    .page-hero h1 {
        font-size: 2.15rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 110px 0 65px;
        align-items: flex-end;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.55rem;
    }

    .hero p {
        font-size: 1.02rem;
    }

    .hero-underline {
        width: 210px;
    }

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

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

    .home-service-item,
    .home-service-item:nth-child(4) {
        grid-column: auto;
    }
}

@media (max-width: 575.98px) {
    .page-hero h1 {
        font-size: 1.9rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .about-hero {
        background:
            linear-gradient(180deg, rgba(8, 64, 132, 0.78) 0%, rgba(8, 74, 142, 0.72) 52%, rgba(25, 183, 165, 0.38) 100%),
            url('../images/about_mobile.png') center center/cover no-repeat;
    }

    .industries-hero {
        background:
            linear-gradient(180deg, rgba(8, 64, 132, 0.78) 0%, rgba(8, 74, 142, 0.72) 52%, rgba(25, 183, 165, 0.38) 100%),
            url('../images/industries.png') center center/cover no-repeat;
    }

    .cleaning-hero {
        background:
            linear-gradient(180deg, rgba(8, 64, 132, 0.78) 0%, rgba(8, 74, 142, 0.72) 52%, rgba(25, 183, 165, 0.38) 100%),
            url('../images/cleaning_service_banner_mobile.png') center center/cover no-repeat;
    }

    .hero {
        padding: 72px 0 46px;
    }

    .hero-slide-image {
        object-position: center top;
    }

    .hero h1 {
        font-size: 2.05rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero p {
        font-size: 0.96rem;
    }

    .hero-underline {
        width: 140px;
        margin: 16px 0 18px;
    }

    .featured-carousel .carousel-item {
        padding: 10px 40px;
    }

    .featured-products-row {
        grid-template-columns: 1fr;
    }

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

    .product-image,
    .product-placeholder {
        height: 180px;
    }

    .cta {
        padding: 35px 22px;
    }

    .cta-card .text-lg-end {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-card .btn {
        width: 100%;
    }

    .supply-banner,
    .about-box,
    .content-card,
    .value-card,
    .capability-card,
    .service-card,
    .feature-card,
    .industry-card,
    .category-card,
    .product-card,
    .contact-card,
    .form-card,
    .info-card,
    .cta-card,
    .side-card,
    .overview-card,
    .stats-box,
    .supply-card {
        padding: 22px;
    }

    .support-assistant {
        left: 12px;
        bottom: 12px;
    }

    .support-assistant-panel {
        width: calc(100vw - 24px);
    }

    .support-assistant-actions {
        grid-template-columns: 1fr;
    }
}
