/* =========================
   BASE & RESET
========================= */
html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
    margin-bottom: 60px;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
}

/* =========================
   TOP BAR - DESKTOP (Default)
========================= */
.top-bar {
    background: #111;
    color: #ddd;
    padding: 10px 0;
    letter-spacing: 1px;
    font-size: 1.5rem; /* Adjusted for better fit on one line */
}

    .top-bar .container {
        display: flex;
        flex-direction: row; /* Force horizontal on desktop */
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap; /* Prevent splitting into two lines */
    }

.top-bar-item {
    display: flex;
    align-items: center;
}

.contact-icon-red {
    color: #ff0000;
    font-size: 1.2rem;
    margin-right: 8px;
}

.contact-icon-white {
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 8px;
}

/* =========================
   HEADER & LOGO
========================= */
.main-header {
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.logo {
    height: 120px;
    transition: 0.3s;
    position: relative;
    left: 20px;
}

    .logo:hover {
        transform: scale(1.05);
    }

.nav-link-custom {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: black;
    text-decoration: underline;
    margin: 0 50px;
    transition: 0.3s;
}

    .nav-link-custom:hover {
        color: white;
        background-color: black;
    }

.header-tagline {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0059b3;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

    .header-tagline::after {
        content: "";
        display: block;
        width: 80%;
        height: 5px;
        background: #000;
        margin: 10px auto 0;
    }

/* =========================
   HERO & SHARED TITLES
========================= */
.hero-section {
    padding: 50px 0 50px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
}

.hero-headline {
    font-size: 1.6rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    color: #444;
}

.section-title {
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
}

/* =========================
   SERVICES (STEPS)
========================= */
#services {
    background: ghostwhite;
    padding-top: 10px;
    padding-bottom: 20px;
}

.step-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .step-img:hover {
        transform: scale(1.05);
    }

#services .col-md-3 {
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    #services .col-md-3:hover {
        transform: translateY(-5px);
    }

.step-number {
    font-size: 1rem;
    letter-spacing: 2px;
    color: midnightblue;
    margin-top: 15px;
}

.step-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* =========================
   PERFECT FOR SECTION
========================= */
.perfect-for-section {
    background-color: white;
    padding: 60px 0;
}

.icon-box {
    text-align: center;
    padding: 30px;
}

.icon-circle {
    font-size: 4rem;
    color: #000;
    margin-bottom: 15px;
}

.icon-text {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   DETAILED INFO
========================= */
.detail-section {
    padding: 30px 0;
    background-color: ghostwhite;
}

.detail-icon {
    font-size: 3rem;
    line-height: 1;
}

.detail-h1 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.detail-h2 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    font-style: italic;
}

.detail-h3 {
    font-size: 1.1rem;
    color: #666;
}

/* =========================
   FAQ (ACCORDION)
========================= */
.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.accordion-button {
    padding-left: 0;
    font-weight: 500;
}

    .accordion-button:not(.collapsed) {
        background: transparent;
        box-shadow: none;
        color: #000;
    }

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    background-color: #f9f9fb;
    padding: 100px 0;
}

.contact-info-wrapper {
    padding-top: 10px;
}

    .contact-info-wrapper h2 {
        letter-spacing: 2px;
    }

.contact-item small {
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 2px;
    color: #777;
}

.contact-item span, .contact-item a {
    font-size: 1.1rem;
    font-weight: 400;
}

.vertical-divider {
    width: 1px;
    background-color: #e0e0e0;
    height: 350px;
    align-self: start;
    margin-top: 25px;
}

.form-container-box {
    background: #ffffff;
    padding: 50px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
}

.form-input-custom {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 0;
    color: #000;
}

    .form-input-custom:focus {
        border-bottom: 2px solid #000;
        padding-bottom: 14px;
    }

.select-custom {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.btn-submit-laundry {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 16px 60px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .btn-submit-laundry {
        width: auto;
    }
}

.btn-submit-laundry:hover {
    background-color: transparent;
    color: #000;
}

.text-danger.small {
    font-size: 0.75rem;
    margin-top: 5px;
    display: block;
}

/* =========================
   FOOTER
========================= */
.footer-custom {
    background: white;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    padding: 30px 0;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */
@media (max-width: 768px) {
    /* Stack top bar vertically and remove separator */
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .top-bar-separator {
        display: none;
    }

    .top-bar {
        font-size: 1rem;
        padding: 15px 0;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }

    .hero-headline {
        font-size: 1.2rem;
    }

    .step-img {
        width: 140px;
        height: 140px;
    }

    section {
        padding: 60px 20px;
    }

    .logo {
        left: 0;
        height: 80px;
        margin-bottom: 10px;
    }

    .nav-link-custom {
        margin: 5px 0;
        display: block;
        text-align: center;
        font-size: 1.2rem;
    }

    .form-container-box {
        padding: 30px 20px;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .contact-section {
        padding: 60px 0;
    }
}
