﻿/* =====================================================
   LAUNDRY MANAGEMENT SOFTWARE PAGE
   Keifac Software Solutions
===================================================== */


:root {
    --laundry-primary: #0b63ce;
    --laundry-primary-dark: #074a9c;
    --laundry-primary-light: #eaf4ff;
    --laundry-secondary: #38bdf8;
    --laundry-dark: #0f172a;
    --laundry-heading: #000000;
    --laundry-text: #5f6877;
    --laundry-light-text: #dbeafe;
    --laundry-white: #ffffff;
    --laundry-light-bg: #f7faff;
    --laundry-border: #e5eaf2;
    --laundry-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
    --laundry-hover-shadow: 0 16px 32px rgba(15, 23, 42, 0.10);
}


/* =====================================================
   COMMON PAGE SETTINGS
===================================================== */

html {
    scroll-behavior: smooth;
}

.laundry-hero,
.laundry-overview,
.laundry-features {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

    .laundry-hero *,
    .laundry-overview *,
    .laundry-features * {
        box-sizing: border-box;
    }


/* =====================================================
   LAUNDRY HERO SECTION
===================================================== */

.laundry-hero {
    min-height: 490px;
    margin-top: 68px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--laundry-white);
    background-image: linear-gradient( 90deg, rgba(4,19,42,.45) 0%, rgba(5,39,83,.28) 40%, rgba(7,78,146,.08) 70%, rgba(7,78,146,0) 100% ), url("/images/products/laundry-management/laundry-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.laundry-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 38px 0;
}



    /* Decorative Circle */

    .laundry-hero::before {
        content: "";
        position: absolute;
        width: 330px;
        height: 330px;
        top: -150px;
        left: -100px;
        border-radius: 50%;
        background: rgba(56, 189, 248, 0.12);
        filter: blur(10px);
        pointer-events: none;
    }


    /* Decorative Bottom Circle */

    .laundry-hero::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        right: 12%;
        bottom: -170px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        filter: blur(5px);
        pointer-events: none;
    }


/* Hero Content */

.laundry-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 55px 0;
}


/* Hero Label */

.laundry-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    line-height: 1.4;
    text-transform: uppercase;
}

    .laundry-hero-label i {
        color: #67d8ff;
        font-size: 14px;
    }


/* Hero Heading */

.laundry-hero h1 {
    max-width: 700px;
    margin: 0 0 20px;
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

    .laundry-hero h1 span{
        display: block;
        color: #67d8ff;
    }

    .laundry-hero h1 span{
        display: block;
        margin-top: 4px;
        color: #67d8ff;
    }


/* Hero Description */

.laundry-hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}


/* Hero Buttons Wrapper */

.laundry-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}


/* Primary Button */

.laundry-primary-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 23px;
    border: 1px solid var(--laundry-primary);
    border-radius: 8px;
    background: var(--laundry-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 650;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .laundry-primary-btn:hover {
        transform: translateY(-3px);
        border-color: var(--laundry-primary-dark);
        background: var(--laundry-primary-dark);
        color: #ffffff;
        box-shadow: 0 12px 25px rgba(11, 99, 206, 0.28);
    }

    .laundry-primary-btn i {
        font-size: 13px;
        transition: transform 0.3s ease;
    }

    .laundry-primary-btn:hover i {
        transform: translateX(4px);
    }


/* Outline Button */

.laundry-outline-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 23px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 650;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

    .laundry-outline-btn:hover {
        transform: translateY(-3px);
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.18);
        color: #ffffff;
    }

    .laundry-outline-btn i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .laundry-outline-btn:hover i {
        transform: translateY(3px);
    }


/* Hero Highlights */

.laundry-hero-highlights {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.laundry-hero-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    font-weight: 500;
}

    .laundry-hero-highlight i {
        color: #67d8ff;
        font-size: 15px;
    }


/* =====================================================
   LAUNDRY OVERVIEW SECTION
===================================================== */

.laundry-overview {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}


    /* Soft Background Decoration 

    .laundry-overview::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        top: 30px;
        right: -200px;
        border-radius: 50%;
        background: rgba(11, 99, 206, 0.045);
        pointer-events: none;
    }
*/



/* Image Wrapper */
.laundry-overview-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}


/* Main Image Box */

.laundry-overview-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-radius: 22px;
    background: #eaf4ff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.11);
}

    .laundry-overview-image::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 180deg, rgba(15, 23, 42, 0) 55%, rgba(15, 23, 42, 0.16) 100% );
        pointer-events: none;
    } 

    .laundry-overview-image img {
        display: block;
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
        transition: transform 0.6s ease;
    }

.laundry-overview-image-wrapper:hover
.laundry-overview-image img {
    transform: scale(1.035);
}


/* Floating Badge */

.laundry-overview-badge {
    position: absolute;
    right: -22px;
    bottom: 34px;
    z-index: 3;
    min-width: 245px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(11, 99, 206, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.14);
}

/* Badge Icon */
.laundry-overview-badge-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--laundry-primary-light);
    color: var(--laundry-primary);
}

    .laundry-overview-badge-icon i {
        font-size: 21px;
    }


/* Badge Text */

.laundry-overview-badge strong {
    display: block;
    margin-bottom: 3px;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
}

.laundry-overview-badge span {
    display: block;
    color: var(--laundry-text);
    font-size: 12px;
    line-height: 1.5;
}


/* Overview Content */

.laundry-overview-content {
    position: relative;
    z-index: 2;
}


/* Section Small Label */

.laundry-section-label {
    display: inline-block;
    margin-bottom: 17px;
    padding: 7px 15px;
    border-radius: 30px;
   /* background: var(--laundry-primary-light);*/
    color: var(--laundry-primary);
    font-size: .90rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.5;
    text-transform: uppercase;
}


/* Overview Heading */

.laundry-overview-content h2 {
    margin: 0 0 20px;
    color: #000000;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.7px;
}

    .laundry-overview-content h2 span {
        display: block;
        color: var(--laundry-primary);
    }


/* Overview Paragraphs */

.laundry-overview-content > p {
    margin: 0 0 15px;
    color: var(--laundry-text);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}


/* Overview Points Container */

.laundry-overview-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 27px;
    margin-bottom: 25px;
}


/* Overview Point */

.laundry-overview-point {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--laundry-border);
    border-radius: 14px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .laundry-overview-point:hover {
        transform: translateY(-4px);
        border-color: rgba(11, 99, 206, 0.24);
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    }


/* Point Icon */

.laundry-point-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--laundry-primary-light);
    color: var(--laundry-primary);
}

    .laundry-point-icon i {
        font-size: 18px;
    }


/* Point Heading */

.laundry-overview-point h3 {
    margin: 0 0 5px;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}


/* Point Description */

.laundry-overview-point p {
    margin: 0;
    color: var(--laundry-text);
    font-size: 13px;
    line-height: 1.65;
}


/* Text Link */

.laundry-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--laundry-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s ease, gap 0.3s ease;
}

    .laundry-text-link:hover {
        gap: 13px;
        color: var(--laundry-primary-dark);
    }

    .laundry-text-link i {
        font-size: 13px;
    }


/* =====================================================
   LAUNDRY FEATURES SECTION
===================================================== */

.laundry-features {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--laundry-light-bg);
}


    /* Features Background Decoration */

    .laundry-features::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        left: -180px;
        bottom: -170px;
        border-radius: 50%;
        background: rgba(11, 99, 206, 0.055);
        pointer-events: none;
    }

    .laundry-features::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        top: -150px;
        right: -130px;
        border-radius: 50%;
        background: rgba(56, 189, 248, 0.06);
        pointer-events: none;
    }


/* Section Heading Wrapper */

.laundry-section-heading {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto 55px;
}


    /* Features Main Heading */

    .laundry-section-heading h2 {
        margin: 0 0 17px;
        color: #000000;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.7px;
    }

        .laundry-section-heading h2 span {
            display: block;
            color: var(--laundry-primary);
        }


    /* Features Description */

    .laundry-section-heading p {
        max-width: 700px;
        margin: 0 auto;
        color: var(--laundry-text);
        font-size: 16px;
        line-height: 1.85;
    }


/* Features Row */

.laundry-features .row {
    position: relative;
    z-index: 2;
}


/* =====================================================
   FEATURE CARD
===================================================== */

.laundry-feature-card {
    height: 100%;
    min-height: 180px;
    padding: 22px;
    border-radius: 17px;
    border: 1px solid rgba(229,234,242,.85);
    background: #fff;
    box-shadow: var(--laundry-shadow);
    transition: .35s;
}

    .laundry-feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(229, 234, 242, 1);
        box-shadow: var(--laundry-hover-shadow);
    }


/* Feature Icon */

.laundry-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--laundry-primary);
    color: #ffffff;
    border-radius: 15px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.laundry-feature-card:hover .laundry-feature-icon {
    transform: scale(1.08);
}


/* Feature Heading */

.laundry-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}


/* Feature Description */

.laundry-feature-card p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   GENERAL LINK FOCUS
===================================================== */

.laundry-primary-btn:focus-visible,
.laundry-outline-btn:focus-visible,
.laundry-text-link:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.45);
    outline-offset: 4px;
}


/* =====================================================
   LARGE SCREEN RESPONSIVE
===================================================== */

@media (min-width: 1400px) {

    .laundry-hero {
        min-height: 520px;
    }

        .laundry-hero h1 {
            font-size: 52px;
        }

    .laundry-overview-content h2,
    .laundry-section-heading h2 {
        font-size: 42px;
    }
}


/* =====================================================
   LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1199.98px) {

    .laundry-hero {
        min-height: 465px;
        background-position: 58% center;
    }

        .laundry-hero h1 {
            font-size: 43px;
        }

    .laundry-overview-content h2,
    .laundry-section-heading h2 {
        font-size: 36px;
    }

    .laundry-overview-image,
    .laundry-overview-image img {
        height: 470px;
        min-height: 470px;
    }

    .laundry-overview-badge {
        right: -5px;
    }

    .laundry-overview-points {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991.98px) {

    .laundry-hero {
        min-height: auto;
        margin-top: 64px;
        background-position: 62% center;
    }

        .laundry-hero::after {
            right: -80px;
        }

    .laundry-hero-content {
        padding: 75px 0;
    }

    .laundry-hero h1 {
        max-width: 650px;
        font-size: 40px;
    }

    .laundry-hero p {
        max-width: 620px;
        font-size: 16px;
    }

    .laundry-overview,
    .laundry-features {
        padding: 80px 0;
    }

    .laundry-overview-image-wrapper {
        max-width: 680px;
        margin-bottom: 15px;
    }

    .laundry-overview-image,
    .laundry-overview-image img {
        height: 480px;
        min-height: 480px;
    }

    .laundry-overview-badge {
        right: 20px;
        bottom: 25px;
    }

    .laundry-overview-content {
        max-width: 750px;
    }

    .laundry-overview-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .laundry-feature-card {
        min-height: 225px;
    }
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767.98px) {

    .laundry-hero {
        margin-top: 60px;
        background-image: linear-gradient( 90deg, rgba(4, 19, 42, 0.90) 0%, rgba(5, 39, 83, 0.78) 55%, rgba(7, 78, 146, 0.42) 100% ), url("/images/products/laundry-management/laundry-hero.webp");
        background-position: center;
    }

    .laundry-hero-content {
        padding: 65px 0;
    }

    .laundry-hero-label {
        padding: 7px 13px;
        font-size: 10.5px;
        letter-spacing: 0.8px;
    }

    .laundry-hero h1 {
        font-size: 34px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .laundry-hero p {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.75;
    }

    .laundry-hero-buttons {
        align-items: stretch;
        flex-direction: column;
        max-width: 310px;
    }

    .laundry-primary-btn,
    .laundry-outline-btn {
        width: 100%;
    }

    .laundry-hero-highlights {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .laundry-overview,
    .laundry-features {
        padding: 65px 0;
    }

    .laundry-overview-image,
    .laundry-overview-image img {
        height: 390px;
        min-height: 390px;
    }

    .laundry-overview-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 26px);
        min-width: 0;
        margin: -28px auto 0;
    }

    .laundry-overview-content h2,
    .laundry-section-heading h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .laundry-overview-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .laundry-overview-points {
        grid-template-columns: 1fr;
    }

    .laundry-section-heading {
        margin-bottom: 42px;
    }

        .laundry-section-heading p {
            font-size: 15px;
            line-height: 1.75;
        }

    .laundry-feature-card {
        min-height: 215px;
        padding: 25px;
    }
}


/* =====================================================
   SMALL MOBILE RESPONSIVE
===================================================== */

@media (max-width: 575.98px) {

    .laundry-hero {
        margin-top: 58px;
    }

    .laundry-hero-content {
        padding: 55px 0;
    }

    .laundry-hero h1 {
        font-size: 29px;
    }

    .laundry-hero p {
        font-size: 14.5px;
    }

    .laundry-hero-buttons {
        max-width: 100%;
    }

    .laundry-primary-btn,
    .laundry-outline-btn {
        min-height: 47px;
        padding: 11px 18px;
        font-size: 14px;
    }

    .laundry-overview,
    .laundry-features {
        padding: 55px 0;
    }

    .laundry-overview-image,
    .laundry-overview-image img {
        height: 320px;
        min-height: 320px;
    }

    .laundry-overview-image {
        border-radius: 17px;
    }

    .laundry-overview-badge {
        width: calc(100% - 20px);
        padding: 14px;
    }

    .laundry-overview-badge-icon {
        width: 43px;
        height: 43px;
    }

    .laundry-section-label {
        padding: 6px 12px;
        font-size: 10.5px;
        letter-spacing: 0.7px;
    }

    .laundry-overview-content h2,
    .laundry-section-heading h2 {
        font-size: 27px;
    }

    .laundry-overview-content > p {
        font-size: 14.5px;
    }

    .laundry-overview-point {
        padding: 15px;
    }

    .laundry-section-heading {
        margin-bottom: 35px;
    }

    .laundry-feature-card {
        min-height: auto;
        padding: 23px;
    }

    .laundry-feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 19px;
    }

    .laundry-feature-card h3 {
        font-size: 17px;
    }

    .laundry-feature-card p {
        font-size: 14.5px;
        line-height: 1.75;
    }
}


/* =====================================================
   EXTRA SMALL DEVICES
===================================================== */

@media (max-width: 390px) {

    .laundry-hero h1 {
        font-size: 26px;
    }

        .laundry-hero h1 span {
            display: block;
            color: #67d8ff;
        }

    .laundry-overview-content h2,
    .laundry-section-heading h2 {
        font-size: 25px;
    }

    .laundry-overview-image,
    .laundry-overview-image img {
        height: 280px;
        min-height: 280px;
    }

    .laundry-overview-badge strong {
        font-size: 14px;
    }

    .laundry-overview-badge span {
        font-size: 11px;
    }
}


/* =====================================================
   REDUCED MOTION ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .laundry-primary-btn,
    .laundry-outline-btn,
    .laundry-text-link,
    .laundry-overview-image img,
    .laundry-overview-point,
    .laundry-feature-card,
    .laundry-feature-icon {
        transition: none;
    }

        .laundry-primary-btn:hover,
        .laundry-outline-btn:hover,
        .laundry-overview-point:hover,
        .laundry-feature-card:hover {
            transform: none;
        }
}
