/* =========================================================
   JOKBIS LAUNDROMAT
   CLEAN MASTER STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    border-radius: 8px;

    font-weight: 700;

    transition: 0.25s ease;
}

.btn-primary {
    background: #155eef;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0d4dcc;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #d8dee9;

    background: #ffffff;

    color: #172033;
}

.btn-secondary:hover {
    background: #f5f7fa;
    transform: translateY(-2px);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #e9edf3;

    box-shadow: 0 4px 20px rgba(23, 32, 51, 0.06);

    backdrop-filter: blur(10px);
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}

.logo img {
    width: 210px;
    height: 58px;

    object-fit: contain;

    display: block;
}


/* Desktop navigation */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 34px;
}

.nav-menu > a:not(.nav-button) {
    position: relative;

    color: #526071;

    font-size: 14px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.nav-menu > a:not(.nav-button)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #155eef;

    transition: width 0.2s ease;
}

.nav-menu > a:not(.nav-button):hover {
    color: #155eef;
}

.nav-menu > a:not(.nav-button):hover::after {
    width: 100%;
}


/* Book button */

.nav-button {
    margin-left: 4px;

    padding: 14px 22px;

    border-radius: 9px;

    font-weight: 700;

    box-shadow: 0 6px 16px rgba(21, 94, 239, 0.18);
}


/* Hamburger */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: 1px solid #e1e6ed;

    border-radius: 8px;

    background: #ffffff;

    cursor: pointer;

    flex-shrink: 0;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 3px auto;

    background: #172033;

    border-radius: 2px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.88) 45%,
            rgba(255, 255, 255, 0.2) 100%
        ),
        url("../assets/hero.jpeg");

    background-size: cover;
    background-position: center;
}

.hero-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

    padding: 40px 0;
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 620px;
}

.eyebrow {
    margin-bottom: 15px;

    color: #155eef;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero h1 {
    margin-bottom: 25px;

    font-size: clamp(45px, 6vw, 72px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;
}

.hero-description {
    max-width: 600px;

    margin-bottom: 32px;

    color: #5b6577;

    font-size: 18px;

    line-height: 1.7;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.hero-trust {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 30px;

    color: #526071;

    font-size: 13px;
    font-weight: 600;
}

.hero-trust span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}


/* Hero image */

.hero-image {
    position: relative;

    height: 520px;

    overflow: hidden;

    border-radius: 24px;

    box-shadow: 0 25px 60px rgba(23, 32, 51, 0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.services,
.how-it-works,
.about,
.estimator,
.booking {
    padding: 100px 0;
}

.section-heading {
    max-width: 600px;

    margin-bottom: 45px;
}

.section-heading h2 {
    margin-bottom: 15px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.section-heading p:last-child {
    color: #687386;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #f8fafc;
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

    margin-top: 45px;
}

.service-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(23, 32, 51, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(23, 32, 51, 0.11);
}


/* =========================================================
   SERVICE IMAGES
========================================================= */

.service-image {
    width: 100%;

    /*
       Same image height for all photographic
       service cards so they align perfectly.
    */
    height: 420px;

    overflow: hidden;

    margin: 0;
    padding: 0;

    background: #eef3f8;

    border-radius: 20px 20px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    display: block;

    margin: 0;
    padding: 0;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

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


/* =========================================================
   SELF-SERVICE IMAGE
========================================================= */

.self-service-card .service-image {
    height: 420px;
}

.self-service-card .service-image img {
    object-position: center top;
}


/* =========================================================
   25 PACKAGE OFFER IMAGE
========================================================= */

/*
   The 25 Package image uses the same full-width
   treatment as the Self-Service image.

   The selector works with filenames containing "25".
   If your actual filename is different, the general
   service-image styling above will still apply.
*/

.service-image img[src*="25"] {
    object-position: center center;
}


/* =========================================================
   ICON-ONLY SERVICE CARDS
========================================================= */

.service-card > .service-icon {
    width: 100%;
    height: 240px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eef5ff;

    font-size: 58px;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {
    padding: 25px 26px 28px;
}

.service-content h3 {
    margin-bottom: 9px;

    color: #172033;

    font-size: 21px;
}

.service-content p {
    margin-bottom: 20px;

    color: #667085;

    line-height: 1.7;
}

.service-price {
    display: block;

    margin: -5px 0 15px;

    color: #155eef;

    font-size: 18px;
    font-weight: 800;
}

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #155eef;

    font-size: 13px;
    font-weight: 700;
}

.service-link:hover {
    text-decoration: underline;
}

.services-bottom {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;

    font-size: 14px;
}

.services-bottom p {
    color: #687386;
}

.services-bottom a {
    color: #155eef;

    font-weight: 700;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works {
    background: #f8fafc;
}

.steps-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

.step-card {
    position: relative;

    padding: 32px 28px;

    background: #ffffff;

    border: 1px solid #e5e9f0;

    border-radius: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.step-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(23, 32, 51, 0.08);
}

.step-number {
    width: 44px;
    height: 44px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 50%;

    background: #edf4ff;

    color: #155eef;

    font-size: 13px;
    font-weight: 800;
}

.step-card h3 {
    margin-bottom: 12px;

    font-size: 19px;

    line-height: 1.3;
}

.step-card p {
    color: #687386;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   PRICE ESTIMATOR
========================================================= */

.estimator {
    background: #f8fafc;
}

.estimator-box {
    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 30px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5e9f0;

    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(23, 32, 51, 0.06);
}

.estimate-form {
    display: grid;

    gap: 20px;

    padding: 25px;

    background: #f8fafc;

    border-radius: 16px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    font-size: 13px;

    font-weight: 700;
}

.form-group select,
.form-group input {
    width: 100%;

    padding: 14px;

    background: #ffffff;

    border: 1px solid #dce1e8;

    border-radius: 8px;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group select:focus,
.form-group input:focus {
    border-color: #155eef;

    box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.08);
}

.estimate-form .btn {
    margin-top: 5px;

    border: none;

    cursor: pointer;
}


/* Laundry basket */

.laundry-basket {
    margin-top: 20px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e5e9f0;

    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(23, 32, 51, 0.04);
}

.basket-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;
}

.basket-header h3 {
    font-size: 18px;
}

#item-count {
    color: #687386;

    font-size: 13px;
}

.empty-basket {
    color: #8a94a5;

    font-size: 14px;
}

.basket-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 14px 0;

    border-bottom: 1px solid #edf0f4;
}

.basket-item:last-child {
    border-bottom: none;
}

.basket-item-info strong {
    display: block;

    font-size: 14px;
}

.basket-item-info span {
    color: #687386;

    font-size: 12px;
}

.basket-item-price {
    font-size: 14px;

    font-weight: 700;
}

.remove-item {
    border: none;

    background: none;

    color: #d92d20;

    cursor: pointer;

    font-size: 12px;
}

#basket-summary {
    color: #9da6b5;

    font-size: 12px;
}


/* Estimate result */

.estimate-result {
    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #172033;

    color: #ffffff;

    border-radius: 16px;

    box-shadow: 0 15px 35px rgba(23, 32, 51, 0.15);
}

.estimate-result > p:first-child {
    color: #b9c1cf;

    font-size: 14px;
}

.estimate-result h3 {
    margin: 5px 0 10px;

    font-size: 45px;
}

.estimate-note {
    margin-bottom: 25px;

    color: #8f99aa;

    font-size: 12px;
}

.estimate-result .btn {
    margin-top: 5px;
}


/* =========================================================
   BOOKING
========================================================= */

.booking {
    background: #f8fafc;
}

.booking .section-heading {
    margin-bottom: 45px;
}

.booking-layout {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr;

    gap: 30px;

    align-items: start;
}

.booking-form,
.booking-summary {
    padding: 35px;

    border: 1px solid #e5e9f0;

    border-radius: 18px;

    box-shadow: 0 12px 35px rgba(23, 32, 51, 0.05);
}

.booking-form {
    background: #ffffff;
}

.booking-summary {
    position: sticky;

    top: 100px;

    align-self: start;

    background: #172033;

    color: #ffffff;

    border-color: #172033;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.booking-form .form-group {
    margin-bottom: 22px;
}

.form-group textarea {
    width: 100%;

    padding: 14px;

    resize: vertical;

    background: #ffffff;

    border: 1px solid #dce1e8;

    border-radius: 8px;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea:focus {
    border-color: #155eef;

    box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.08);
}


/* =========================================================
   DELIVERY OPTIONS
========================================================= */

.delivery-options {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    width: 100%;
}

.delivery-option {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    width: 100%;

    padding: 16px;

    background: #ffffff;

    border: 1px solid #e1e6ed;

    border-radius: 12px;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.delivery-option:hover {
    border-color: #155eef;

    transform: translateY(-2px);
}

.delivery-option:has(input:checked) {
    border-color: #155eef;

    background: #f0f5ff;
}

.delivery-option input[type="radio"] {
    width: 20px;

    min-width: 20px;

    height: 20px;

    flex: 0 0 20px;

    margin: 4px 0 0;

    accent-color: #155eef;
}

.delivery-option span {
    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.delivery-option strong {
    display: block;

    font-size: 14px;

    overflow-wrap: break-word;
}

.delivery-option small {
    display: block;

    color: #687386;

    font-size: 12px;

    overflow-wrap: break-word;
}


/* Booking button */

.booking-submit {
    width: 100%;

    min-height: 50px;

    margin-top: 5px;

    border: none;

    cursor: pointer;

    font-size: 15px;
}


/* Booking summary */

.booking-summary h3 {
    margin-bottom: 24px;

    color: #ffffff;

    font-size: 22px;
}

.booking-summary .empty-basket {
    color: #aeb7c6;
}

.summary-total {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 20px;

    padding-top: 20px;

    border-top: 1px solid #3a4354;
}

.summary-total span {
    color: #aeb7c6;

    font-size: 13px;
}

.summary-total strong {
    color: #ffffff;

    font-size: 30px;
}

.summary-note {
    margin-top: 15px;

    color: #9da6b5;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #ffffff;
}

.about-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-text h2 {
    margin-bottom: 22px;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1px;
}

.about-text > p:not(.eyebrow) {
    max-width: 580px;

    margin-bottom: 18px;

    color: #687386;

    font-size: 15px;

    line-height: 1.8;
}

.about-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 35px;
}

.about-features div {
    padding: 20px 15px;

    background: #f8fafc;

    border: 1px solid #e5e9f0;

    border-radius: 12px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-features div:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(23, 32, 51, 0.06);
}

.about-features strong {
    display: block;

    margin-bottom: 8px;

    color: #155eef;

    font-size: 13px;
}

.about-features span {
    color: #172033;

    font-size: 13px;

    font-weight: 700;
}


/* About image */

.about-card {
    height: 500px;

    overflow: hidden;

    border-radius: 24px;

    box-shadow: 0 20px 50px rgba(23, 32, 51, 0.10);
}

.about-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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


/* =========================================================
   FAQ
========================================================= */

.faq {
    padding: 100px 0;

    background: #ffffff;
}

.faq-list {
    max-width: 850px;

    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid #e4e8ee;
}

.faq-item:first-child {
    border-top: 1px solid #e4e8ee;
}

.faq-item summary {
    list-style: none;

    cursor: pointer;

    padding: 24px 5px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    font-size: 17px;

    font-weight: 600;

    color: #172033;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    font-size: 24px;

    font-weight: 400;

    color: #155eef;

    transition: transform 0.25s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 45px 24px 5px;
}

.faq-answer p {
    margin: 0;

    color: #526071;

    line-height: 1.8;

    font-size: 15px;
}


/* =========================================================
   LOCATIONS
========================================================= */

.locations {
    padding: 100px 0;

    background: #f7f9fc;
}

.locations-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

    margin-top: 50px;
}

.location-card {
    background: #ffffff;

    border: 1px solid #e7ebf0;

    border-radius: 20px;

    padding: 34px;

    display: flex;

    gap: 22px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.location-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(23, 32, 51, 0.08);
}

.location-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 12px;

    background: #eef4ff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;
}

.location-label {
    display: block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: #155eef;

    margin-bottom: 8px;
}

.location-content h3 {
    margin-bottom: 12px;

    font-size: 20px;

    color: #172033;
}

.location-content > p {
    color: #526071;

    line-height: 1.7;

    margin-bottom: 22px;
}

.location-hours {
    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-bottom: 24px;

    color: #526071;

    font-size: 14px;
}

.location-hours strong {
    color: #172033;

    margin-bottom: 3px;
}

.location-link {
    display: inline-block;

    color: #155eef;

    font-weight: 700;

    font-size: 14px;

    text-decoration: none;
}

.location-link:hover {
    text-decoration: underline;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    width: 100%;

    display: block;

    padding: 75px 0 28px;

    background: #172033;

    color: #ffffff;

    clear: both;

    overflow: hidden;
}


/* Main footer layout */

.footer-content {
    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 80px;

    align-items: start;

    padding-bottom: 60px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 22px;

    color: #ffffff;

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -1px;
}

.footer-logo span {
    color: #155eef;

    margin-left: 3px;
}

.footer-brand p {
    max-width: 300px;

    margin-bottom: 15px;

    color: #aeb7c6;

    font-size: 17px;

    line-height: 1.8;
}

.footer-tagline {
    color: #7f8999;

    font-size: 14px;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact-area {
    max-width: 600px;
}

.footer-contact-area h4 {
    margin-bottom: 22px;

    color: #ffffff;

    font-size: 20px;
}


/* Phone */

.footer-phone {
    display: flex;

    align-items: center;

    gap: 15px;

    width: max-content;

    margin-bottom: 22px;

    color: #ffffff;

    text-decoration: none;
}

.footer-phone:hover .contact-details strong {
    color: #155eef;
}


/* Email */

.footer-email {
    display: flex;

    align-items: center;

    gap: 15px;

    width: max-content;

    margin-top: 25px;

    color: #ffffff;

    text-decoration: none;
}

.footer-email:hover .contact-details strong {
    color: #155eef;
}


/* Contact circular icons */

.contact-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 18px;
}

.phone-icon {
    background: #155eef;

    color: #ffffff;
}

.email-icon {
    background: #334155;

    color: #ffffff;
}


/* Contact text */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.contact-details strong {
    color: #ffffff;

    font-size: 17px;

    font-weight: 500;

    transition: color 0.2s ease;
}

.contact-details small {
    color: #8f99aa;

    font-size: 13px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.social-links {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 5px;
}

.social-links a {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 19px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        filter 0.25s ease;
}


/* WhatsApp */

.social-links a[aria-label*="WhatsApp"] {
    background: #25D366;
}


/* Instagram */

.social-links a[aria-label*="Instagram"] {
    background: linear-gradient(
        45deg,
        #FEDA75 0%,
        #FA7E1E 25%,
        #D62976 50%,
        #962FBF 75%,
        #4F5BD5 100%
    );
}


/* Facebook */

.social-links a[aria-label*="Facebook"] {
    background: #1877F2;
}

.social-links a:hover {
    color: #ffffff;

    transform: translateY(-3px);

    filter: brightness(0.9);
}

.whatsapp-text {
    margin-top: 10px;

    color: #8f99aa;

    font-size: 13px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 28px;

    border-top: 1px solid #30394a;
}

.footer-bottom p {
    margin: 0;

    color: #7f8999;

    font-size: 13px;

    line-height: 1.6;
}

.footer-follow {
    display: flex;

    align-items: center;

    gap: 8px;
}

.footer-follow span {
    font-size: 20px;
}


/* =========================================================
   TABLET — MAX 850px
========================================================= */

@media (max-width: 850px) {

    /* Navbar */

    .nav-container {
        min-height: 72px;
    }

    .logo img {
        width: 170px;
        height: 48px;
    }

    .menu-toggle {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px 20px 20px;

        background: #ffffff;

        border: 1px solid #e5e9f0;

        border-top: none;

        border-radius: 0 0 16px 16px;

        box-shadow: 0 15px 35px rgba(23, 32, 51, 0.12);

        z-index: 9999;
    }

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

    .nav-menu > a:not(.nav-button) {
        display: block;

        padding: 14px 10px;

        border-bottom: 1px solid #eef1f5;
    }

    .nav-menu > a:not(.nav-button):last-of-type {
        border-bottom: none;
    }

    .nav-menu .nav-button {
        margin-top: 12px;

        padding: 13px 18px;

        text-align: center;
    }


    /* Hero */

    .hero {
        min-height: auto;

        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.96),
                rgba(255, 255, 255, 0.7)
            ),
            url("../assets/hero.jpeg");

        background-size: cover;

        background-position: center;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 20px 0 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -1px;
    }

    .hero-image {
        height: 350px;

        box-shadow: 0 15px 40px rgba(23, 32, 51, 0.10);
    }


    /* Services */

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

    .service-image {
        height: 350px;
    }

    .self-service-card .service-image {
        height: 350px;
    }


    /* Estimator */

    .estimator-box {
        grid-template-columns: 1fr;
    }


    /* How it works */

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


    /* About */

    .about-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-card {
        height: 400px;
    }


    /* Booking */

    .booking-layout {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .booking-summary {
        position: static;
    }

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


    /* Locations */

    .locations {
        padding: 75px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }


    /* Footer */

    footer {
        padding: 65px 0 25px;
    }

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

        gap: 50px;
    }
}


/* =========================================================
   MOBILE — MAX 600px
========================================================= */

@media (max-width: 600px) {

    /* Navbar */

    .nav-container {
        min-height: 68px;
    }

    .logo img {
        width: 165px;
        height: 48px;
    }

    .nav-menu {
        padding: 12px 15px 18px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }


    /* Hero */

    .hero-container {
        padding: 10px 0 30px;
    }

    .hero h1 {
        font-size: 40px;

        line-height: 1.1;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;

        text-align: center;
    }

    .hero-trust {
        flex-direction: column;

        gap: 12px;
    }

    .hero-image {
        height: 300px;

        border-radius: 18px;
    }


    /* General sections */

    .services,
    .how-it-works,
    .about,
    .estimator,
    .booking {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 32px;
    }


    /* =====================================================
       SERVICES — MOBILE
    ===================================================== */

    .service-grid {
        grid-template-columns: 1fr;

        gap: 22px;

        margin-top: 32px;
    }

    .service-image {
        height: 350px;

        border-radius: 18px 18px 0 0;
    }

    /*
       Self Service uses a portrait photograph.
       Keep the image taller and anchor it to the top
       so the customer's face remains visible.
    */

    .self-service-card .service-image {
        height: 350px;
    }

    .self-service-card .service-image img {
        object-position: center top;
    }


    /*
       25 Package Offer uses the same image dimensions
       and positioning treatment.
    */

    .service-image img[src*="25"] {
        object-position: center center;
    }

    .service-card > .service-icon {
        height: 210px;
    }

    .service-content {
        padding: 22px;
    }

    .services-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    /* How it works */

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

    .step-card {
        padding: 25px;
    }


    /* Estimator */

    .estimator-box {
        padding: 20px;
    }

    .estimate-form {
        padding: 20px;
    }

    .laundry-basket {
        padding: 20px;
    }

    .estimate-result {
        padding: 25px 20px;
    }

    .estimate-result h3 {
        font-size: 36px;
    }


    /* About */

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

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

    .about-card {
        height: 320px;

        border-radius: 18px;
    }


    /* Booking */

    .booking-form,
    .booking-summary {
        padding: 22px;
    }

    .delivery-options {
        grid-template-columns: 1fr;

        width: 100%;
    }

    .delivery-option {
        width: 100%;

        padding: 16px;
    }


    /* Locations */

    .locations {
        padding: 75px 0;
    }

    .location-card {
        padding: 25px;

        gap: 15px;
    }

    .location-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 18px;
    }

    .location-content h3 {
        font-size: 18px;
    }


    /* FAQ */

    .faq {
        padding: 75px 0;
    }

    .faq-list {
        margin-top: 35px;
    }

    .faq-item summary {
        padding: 20px 0;

        font-size: 15px;
    }

    .faq-answer {
        padding: 0 30px 20px 0;
    }


    /* =====================================================
       FOOTER — MOBILE
    ===================================================== */

    footer {
        padding: 55px 0 25px;

        margin: 0;

        width: 100%;
    }

    .footer-content {
        display: flex;

        flex-direction: column;

        gap: 40px;

        width: 100%;

        padding-bottom: 45px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        font-size: 25px;

        margin-bottom: 18px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .footer-contact-area {
        max-width: 100%;
    }

    .footer-contact-area h4 {
        font-size: 19px;
    }

    .footer-phone,
    .footer-email {
        width: 100%;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 44px;
        height: 44px;

        font-size: 18px;
    }

    .footer-bottom {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 12px;

        width: 100%;

        padding-top: 25px;

        text-align: left;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-follow {
        align-self: flex-start;
    }
}