html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c4ea3;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.logo-img {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.logo-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
}

/* NAV LINKS */

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* HERO */

.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(16, 24, 36, 0.58), rgba(16, 24, 36, 0.58)),
        url("images/hero-photo2.jpeg") center center / cover no-repeat;
    color: white;
    padding: 60px 40px;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-left: 20px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: 68px;
    line-height: 1.05;
    max-width: 760px;
}

.hero-subtitle {
    margin: 0;
    font-size: 24px;
    line-height: 1.5;
    max-width: 620px;
}

.delivery-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 12px 20px;
    max-width: 100%;
    background: linear-gradient(135deg, #ca629f, #ca629f);
    color: #182235;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.2px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.delivery-banner span {
    color: #000;
    font-weight: 900;
}

/* GENERAL SECTIONS */

.section {
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* SERVICES */

.services-section {
    background: #cfd9e3;
    padding: 70px 20px;
}

.services-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.services-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.services-text {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-decoration: none;
    color: #333;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    display: block;
    margin: 0 auto 15px;
}

.service-icon-big {
    width: 70px;
    display: block;
    margin: 0 auto 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* PRICES */

.prices {
    background: #f8f8f8;
}

.prices h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
}

.prices-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.price-column {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.prices h3 {
    margin: 0 0 18px;
    text-align: center;
    font-size: 24px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 36px;
    font-size: 16px;
}

.price-table:last-child {
    margin-bottom: 0;
}

.price-table tr {
    border-bottom: 1px solid #e3e3e3;
}

.price-table td {
    padding: 10px 6px;
    vertical-align: top;
}

.price-table td:last-child {
    text-align: right;
    font-weight: bold;
    white-space: nowrap;
}

/* CONTACT */

.contact p {
    line-height: 1.8;
    font-size: 17px;
}

/* MAP */

.map-section {
    padding: 60px 20px 80px;
    background: #ffffff;
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.map-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ANCHOR OFFSET */

#drycleaning-prices,
#tailoring-prices,
#carpet-prices {
    scroll-margin-top: 120px;
}

/* FOOTER */

footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 20px;
}

/* TABLET */

@media (max-width:1024px) {
    html {
        scroll-padding-top: 100px;
    }

    .hero {
        min-height: 72vh;
        padding: 50px 28px;
    }

    .hero-content {
        max-width: 620px;
        margin-left: 0;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .delivery-banner {
        font-size: 17px;
        padding: 11px 18px;
    }

    .prices-layout {
        grid-template-columns: 1fr;
    }

    #drycleaning-prices,
    #tailoring-prices,
    #carpet-prices {
        scroll-margin-top: 110px;
    }
}

/* MOBILE */

@media (max-width:768px) {
    html {
        scroll-padding-top: 90px;
    }

    .navbar {
        flex-wrap: wrap;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #2c4ea3;
        padding-top: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
    }

    .hero {
        min-height: 72vh;
        padding: 20px 16px 20px;
        align-items: flex-end;
        background:
            linear-gradient(rgba(16, 24, 36, 0.22), rgba(16, 24, 36, 0.55)),
            url("images/hero-photo2.jpeg") center center / cover no-repeat;
    }

    .hero-content {
        margin-left: auto;
        margin-right: 10px;
        margin-bottom: 16px;
        max-width: 420px;
        padding: 8px 14px;
        background: rgba(20, 28, 42, 0.42);
        backdrop-filter: blur(4px);
        border-radius: 16px;
        text-align: left;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.08;
        margin: 0 0 10px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.35;
    }

    .delivery-banner {
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.25;
        padding: 8px 12px;
        border-radius: 18px;
        display: inline-flex;
        text-align: left;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
        max-width: 320px;
    }

    .price-column {
        padding: 20px;
    }

    .price-table {
        font-size: 15px;
    }

    .map-wrapper iframe {
        height: 320px;
    }

    #drycleaning-prices,
    #tailoring-prices,
    #carpet-prices {
        scroll-margin-top: 95px;
    }
}