:root {
    --yellow: #ffd426;
    --yellow-dark: #f1b900;
    --ink: #121212;
    --muted: #646464;
    --line: #ece6c8;
    --soft: #fff8da;
    --white: #ffffff;
    --green: #19b85f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    letter-spacing: 0;
}

main {
    padding-top: 74px;
}

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

.navbar {
    min-height: 74px;
}

.nav-link {
    font-weight: 700;
    color: #222;
}

.nav-link.active,
.nav-link:hover {
    color: #000;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--ink);
}

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--yellow);
    color: #000;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.btn {
    font-weight: 800;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-warning {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #111;
}

.btn-warning:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
}

.hero-section {
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    padding: 56px 0 32px;
    background:
        radial-gradient(circle at 78% 20%, rgba(255,255,255,.75), transparent 24%),
        linear-gradient(135deg, #ffe864 0%, #ffd426 48%, #ffffff 100%);
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #111;
}

.hero-section h1,
.page-hero h1 {
    font-size: clamp(38px, 7vw, 72px);
    line-height: .98;
    font-weight: 950;
    margin: 0 0 20px;
}

.hero-copy,
.page-hero p,
.section-heading p,
.cta-section p {
    font-size: 18px;
    line-height: 1.65;
    color: #373737;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-visual {
    position: relative;
    min-height: 470px;
    border-radius: 28px;
    background: #111;
    box-shadow: 0 28px 70px rgba(0,0,0,.24);
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 3px dashed rgba(255, 212, 38, .65);
    border-radius: 44px;
    transform: rotate(-8deg);
}

.delivery-box {
    position: absolute;
    width: 210px;
    height: 170px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%) rotate(-8deg);
}

.box-lid,
.box-body {
    position: absolute;
    display: block;
    background: var(--yellow);
    border: 5px solid #fff;
    box-shadow: 0 18px 36px rgba(0,0,0,.25);
}

.box-lid {
    width: 190px;
    height: 44px;
    top: 18px;
    left: 8px;
    border-radius: 12px;
}

.box-body {
    width: 210px;
    height: 130px;
    bottom: 0;
    border-radius: 16px;
}

.phone-card,
.route-card {
    position: absolute;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.route-card strong {
    display: block;
    font-size: 32px;
    line-height: 1;
}

.route-card span {
    color: var(--muted);
    font-weight: 700;
}

.route-card-one {
    left: 28px;
    top: 36px;
}

.route-card-two {
    right: 28px;
    bottom: 34px;
}

.phone-card {
    width: 110px;
    right: 44px;
    top: 92px;
    display: grid;
    gap: 10px;
}

.phone-card span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: #ededed;
}

.phone-card span:first-child {
    background: var(--yellow);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 36px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(0,0,0,.18);
}

.stats-strip div {
    background: rgba(255,255,255,.9);
    padding: 22px;
}

.stats-strip strong {
    display: block;
    font-size: 28px;
    font-weight: 950;
}

.stats-strip span {
    color: var(--muted);
    font-weight: 700;
}

.section-pad {
    padding: 88px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.gradient-band h2,
.cta-section h2,
.process-list h2,
.process-list h3 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    font-weight: 950;
    margin-bottom: 16px;
}

.feature-card,
.testimonial-card,
.blog-card,
.vision-card,
.contact-panel,
.lead-form,
.process-list,
.pricing-card,
.support-tile {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(0,0,0,.06);
}

.feature-card h2,
.feature-card h3,
.pricing-card h2,
.pricing-card h3,
.blog-card h2,
.support-tile h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.feature-card p,
.pricing-card p,
.support-tile p,
.testimonial-card p,
.blog-card p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.feature-dot {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), #111);
    margin-bottom: 18px;
}

.gradient-band,
.cta-section,
.page-hero {
    background:
        linear-gradient(135deg, #111 0%, #2a260d 48%, #ffd426 100%);
    color: #fff;
    padding: 86px 0;
}

.gradient-band p,
.gradient-band .eyebrow,
.page-hero .eyebrow,
.page-hero p,
.cta-section .eyebrow,
.cta-section p {
    color: rgba(255,255,255,.82);
}

.pricing-card strong {
    display: block;
    font-size: 34px;
    font-weight: 950;
    margin: 14px 0;
}

.pricing-card.featured {
    background: var(--yellow);
    color: #111;
    transform: translateY(-10px);
}

.pricing-card.featured p {
    color: #292929;
}

.earning-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.earning-grid div {
    padding: 18px;
    border-radius: 8px;
    background: var(--soft);
}

.earning-grid strong,
.earning-grid span {
    display: block;
}

.earning-grid span {
    color: var(--muted);
}

.process-list ol {
    margin: 0;
    padding-left: 22px;
}

.process-list li {
    margin: 14px 0;
    font-weight: 700;
}

.bg-soft {
    background: var(--soft);
}

.testimonial-card strong {
    display: block;
    margin-top: 18px;
}

.accordion-item {
    border-color: var(--line);
}

.accordion-button {
    font-weight: 900;
}

.accordion-button:not(.collapsed) {
    color: #111;
    background: var(--yellow);
}

.cta-section {
    text-align: center;
}

.page-hero {
    min-height: 390px;
    display: flex;
    align-items: center;
}

.page-hero .container {
    max-width: 920px;
}

.service-card {
    min-height: 250px;
}

.lead-form .form-control,
.lead-form .form-select,
.admin-card .form-control,
.admin-card .form-select {
    min-height: 52px;
    border-radius: 8px;
    border-color: #d9d4ba;
}

.lead-form textarea.form-control {
    min-height: 130px;
}

.form-label {
    font-weight: 800;
}

.sticky-summary {
    position: sticky;
    top: 96px;
}

.contact-panel iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 8px;
}

.article-wrap {
    max-width: 820px;
}

.article-wrap p {
    color: #444;
    font-size: 18px;
    line-height: 1.75;
}

.blog-card a:hover,
.text-link {
    color: #9a7400;
    font-weight: 900;
}

.footer-section {
    padding: 64px 0 24px;
    background: #111;
    color: #fff;
}

.footer-section h6 {
    font-weight: 950;
    margin-bottom: 16px;
}

.footer-section a:not(.brand-mark):not(.btn) {
    display: block;
    color: rgba(255,255,255,.65);
    margin-bottom: 9px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

.admin-login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--yellow), #fff);
    padding: 24px;
}

.login-card {
    width: min(100%, 430px);
    background: #fff;
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.login-card h1 {
    font-weight: 950;
}

.admin-body {
    background: #f5f5ef;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 260px;
    padding: 26px;
    background: #111;
    color: #fff;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    min-height: 42px;
    color: rgba(255,255,255,.78);
    font-weight: 800;
}

.admin-sidebar .brand-mark {
    color: #fff;
}

.admin-main {
    margin-left: 260px;
    padding: 32px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-topbar h1 {
    font-weight: 950;
    margin: 0;
}

.admin-card,
.admin-stat {
    background: #fff;
    border: 1px solid #e7e2cc;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,.05);
}

.admin-card h2 {
    font-size: 22px;
    font-weight: 950;
    margin: 0;
}

.admin-stat strong {
    display: block;
    font-size: 36px;
    font-weight: 950;
}

.admin-stat span {
    color: var(--muted);
    font-weight: 800;
}

.table-actions {
    white-space: nowrap;
}

.table-actions a {
    display: inline-block;
    margin-right: 10px;
    font-weight: 800;
    color: #6f5400;
}

@media (max-width: 991.98px) {
    main {
        padding-top: 68px;
    }

    .hero-section {
        padding-top: 34px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-pad,
    .gradient-band,
    .cta-section,
    .page-hero {
        padding: 62px 0;
    }

    .pricing-card.featured {
        transform: none;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 14px;
    }

    .admin-sidebar .brand-mark {
        grid-column: 1 / -1;
    }

    .admin-main {
        margin-left: 0;
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1,
    .page-hero h1 {
        font-size: 40px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 310px;
        border-radius: 18px;
    }

    .delivery-box {
        transform: translate(-50%, -42%) scale(.72) rotate(-8deg);
    }

    .route-card {
        padding: 12px;
    }

    .route-card strong {
        font-size: 22px;
    }

    .route-card-one {
        left: 14px;
        top: 18px;
    }

    .route-card-two {
        right: 14px;
        bottom: 18px;
    }

    .phone-card {
        display: none;
    }

    .stats-strip,
    .earning-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .testimonial-card,
    .blog-card,
    .vision-card,
    .contact-panel,
    .lead-form,
    .process-list,
    .pricing-card,
    .support-tile {
        padding: 22px;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

