:root {
    --navy: #002244;
    --navy-dark: #00152d;
    --navy-deep: #000d1d;
    --gold: #d8942f;
    --gold-light: #f2b24b;
    --gold-dark: #a86614;
    --white: #ffffff;
    --cream: #faf7f1;
    --text: #12213a;
    --muted: #65748a;
    --border: rgba(216, 148, 47, 0.26);
    --shadow: 0 24px 70px rgba(0, 25, 55, 0.18);
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 36px), var(--container));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:
        radial-gradient(circle at 10% 0%, rgba(242, 178, 75, 0.12), transparent 30%),
        linear-gradient(135deg, var(--navy-deep), var(--navy));
    border-bottom: 1px solid rgba(216, 148, 47, 0.25);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 285px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.main-nav a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

.nav-button {
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 4px;
    color: var(--white) !important;
    box-shadow: 0 16px 35px rgba(216, 148, 47, 0.35);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    width: 46px;
    height: 46px;
    border-radius: 8px;
}

.nav-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--white);
    margin: 5px auto;
}

/* HERO */

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 42%, rgba(255,255,255,0.28) 72%, rgba(255,255,255,0.08) 100%),
        radial-gradient(circle at 68% 26%, rgba(255,255,255,0.95), transparent 26%),
        linear-gradient(135deg, #f9fbfd, #edf2f6);
}

.hero-bg-placeholder {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.2)),
        repeating-linear-gradient(90deg, transparent 0 95px, rgba(0,34,68,0.07) 96px 98px),
        repeating-linear-gradient(0deg, transparent 0 115px, rgba(0,34,68,0.04) 116px 118px);
}

.hero-bg-placeholder::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 100%;
    background:
        linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.2)),
        url("../img/hero-cleaning.jpg") center right / cover no-repeat;
    opacity: 0.85;
}

.fake-cleaner {
    position: absolute;
    right: 13%;
    bottom: 105px;
    width: 230px;
    height: 470px;
    z-index: 1;
    opacity: 0.9;
}

.fake-head {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c48b67, #8f5236);
    margin: 0 auto;
}

.fake-body {
    position: absolute;
    top: 60px;
    left: 55px;
    width: 120px;
    height: 260px;
    border-radius: 58px 58px 20px 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    box-shadow: inset 0 0 0 2px rgba(242,178,75,0.2);
}

.fake-body::after {
    content: "OSDOBA";
    position: absolute;
    top: 55px;
    left: 18px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 900;
}

.fake-machine {
    position: absolute;
    bottom: 0;
    left: -70px;
    width: 230px;
    height: 92px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #1c2f46 0 26%, #060b12 27% 55%, var(--gold) 56% 60%, #03070c 61%);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

.fake-machine::before {
    content: "";
    position: absolute;
    right: 0;
    top: -150px;
    width: 8px;
    height: 180px;
    background: #111827;
    transform: rotate(-22deg);
    transform-origin: bottom;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 610px;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--navy-dark);
    line-height: 1.05;
}

h1 {
    font-size: clamp(52px, 7.5vw, 96px);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

h1 span {
    color: var(--gold);
}

h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 520px;
    margin: 26px 0 34px;
    color: #1d2d45;
    font-size: 17px;
}

.gold-divider {
    width: 260px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(216,148,47,0.15));
    position: relative;
}

.gold-divider span,
.small-divider span {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--gold-light);
    transform: rotate(45deg);
    top: -8px;
    left: 50%;
    box-shadow: 0 0 25px rgba(216,148,47,0.6);
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--white);
    box-shadow: 0 16px 35px rgba(216, 148, 47, 0.35);
}

.btn-outline {
    border: 1px solid var(--navy-dark);
    color: var(--navy-dark);
    background: rgba(255,255,255,0.65);
}

.hero-badge {
    position: absolute;
    right: 20px;
    bottom: 90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--navy) 0%, var(--navy-deep) 75%);
    border: 4px solid var(--gold);
    color: var(--white);
    display: grid;
    place-content: center;
    text-align: center;
    padding: 25px;
    box-shadow: var(--shadow);
}

.hero-badge span {
    color: var(--gold-light);
    font-size: 28px;
    margin-bottom: 8px;
}

.hero-badge strong {
    text-transform: uppercase;
    font-size: 15px;
}

.hero-wave {
    position: absolute;
    left: -4%;
    bottom: -95px;
    width: 110%;
    height: 190px;
    background: var(--navy-deep);
    border-top: 8px solid var(--gold);
    transform: rotate(4deg);
    z-index: 3;
}

/* SECTIONS */

.section {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.small-divider {
    width: 280px;
    height: 1px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: relative;
}

.services {
    background:
        radial-gradient(circle at 15% 10%, rgba(216,148,47,0.08), transparent 32%),
        var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 315px;
    padding: 34px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 25, 55, 0.06);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.service-icon {
    height: 62px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 52px;
    line-height: 1;
}

.service-card h3 {
    margin-bottom: 14px;
    color: var(--navy-dark);
    font-size: 17px;
}

.service-card p {
    min-height: 102px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.service-card a {
    color: var(--gold-dark);
    font-weight: 900;
    font-size: 14px;
}

/* TRUST */

.trust-strip {
    padding: 74px 0;
    background:
        radial-gradient(circle at top left, rgba(216,148,47,0.13), transparent 35%),
        linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    text-align: center;
    padding: 24px 34px;
    border-right: 1px solid rgba(216,148,47,0.35);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    color: var(--gold-light);
    font-size: 48px;
    margin-bottom: 18px;
}

.trust-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.trust-item p {
    color: rgba(255,255,255,0.76);
}

/* ABOUT */

.about {
    background:
        radial-gradient(circle at 85% 55%, rgba(216,148,47,0.12), transparent 25%),
        linear-gradient(135deg, #ffffff, #f7f4ed);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.image-placeholder {
    height: 430px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0,20,45,0.1), rgba(0,20,45,0.85)),
        url("../img/about-cleaning.jpg") center / cover no-repeat,
        linear-gradient(135deg, #d9dee6, #8793a4);
    box-shadow: var(--shadow);
}

.van {
    position: absolute;
    left: 40px;
    bottom: 80px;
    width: 360px;
    height: 150px;
    border-radius: 25px 45px 18px 18px;
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.van::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 30px;
    width: 120px;
    height: 48px;
    border-radius: 6px;
    background: rgba(255,255,255,0.16);
}

.van::after {
    content: "";
    position: absolute;
    left: 175px;
    top: 40px;
    color: var(--gold-light);
    content: "Maria\A OSDOBA";
    white-space: pre;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.1;
}

.person {
    position: absolute;
    right: 54px;
    bottom: 40px;
    width: 160px;
    height: 320px;
}

.person-head {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #d6a080, #8f5438);
}

.person-body {
    width: 150px;
    height: 210px;
    margin: -2px auto 0;
    border-radius: 70px 70px 20px 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}

.image-logo-text {
    position: absolute;
    left: 56px;
    top: 58px;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 38px;
    text-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.about-content {
    position: relative;
}

.about-content p {
    color: #334155;
    margin-bottom: 18px;
    max-width: 620px;
}

.sparkle {
    position: absolute;
    color: var(--gold-light);
    font-size: 58px;
    opacity: 0.85;
}

.sparkle-one {
    right: 20px;
    bottom: 20px;
    font-size: 120px;
}

.sparkle-two {
    right: 0;
    bottom: -48px;
}

.sparkle-three {
    right: 150px;
    bottom: -20px;
    font-size: 34px;
}

/* CTA */

.cta {
    padding: 72px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(216,148,47,0.14), transparent 30%),
        linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: var(--white);
}

.cta-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(216,148,47,0.35);
}

.cta-icon {
    width: 82px;
    height: 82px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: var(--gold-light);
    font-size: 38px;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.cta p {
    color: rgba(255,255,255,0.78);
}

/* FOOTER */

.footer {
    background:
        radial-gradient(circle at 8% 12%, rgba(216,148,47,0.10), transparent 35%),
        linear-gradient(135deg, #000b19, var(--navy-deep));
    color: var(--white);
    padding-top: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.8fr 1.35fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(216,148,47,0.32);
}

.footer-brand img {
    width: 240px;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
}

.footer-column a::after {
    content: "›";
    color: var(--gold);
    margin-left: 10px;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.socials a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: var(--gold-light);
}

.footer-legal {
    text-align: center;
    padding: 26px 0;
    border-bottom: 1px solid rgba(216,148,47,0.22);
}

.footer-legal h4 {
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.footer-legal nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding: 24px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

/* ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1150px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-badge {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-inner {
        height: 92px;
    }

    .logo img {
        width: 215px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 92px;
        right: -100%;
        width: 84%;
        height: calc(100vh - 92px);
        background: var(--navy-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 36px;
        transition: 0.3s ease;
    }

    .main-nav.open {
        right: 0;
    }

    .hero,
    .hero-inner {
        min-height: 680px;
    }

    .hero-bg-placeholder::before,
    .fake-cleaner {
        opacity: 0.25;
    }

    .trust-grid,
    .about-grid,
    .cta-top,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(216,148,47,0.32);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .cta-top {
        text-align: center;
    }

    .cta-icon {
        margin: 0 auto;
    }

    .section {
        padding: 78px 0;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .image-placeholder {
        height: 360px;
    }

    .van {
        width: 280px;
        left: 20px;
    }

    .person {
        right: 20px;
        transform: scale(0.85);
        transform-origin: bottom right;
    }

    .sparkle {
        display: none;
    }
}