/* ============================================================
   PackersMovers India — Redesigned Stylesheet
   Style inspired by assureshift.in & movingsolutions.in
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --primary: #1a3c78;
    --primary-dark: #122b5e;
    --primary-light: #e8f0fd;
    --primary-mid: #2750a0;
    --accent: #f97316;
    --accent-dark: #ea6b0b;
    --accent-light: #fff3e8;
    --dark: #111827;
    --dark-2: #1f2937;
    --dark-3: #374151;
    --text: #374151;
    --text-muted: #6b7280;
    --light: #f8fafc;
    --light-2: #f1f5f9;
    --border: #e2e8f0;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --whatsapp: #25d366;

    /* Semantic Variables */
    --bg: #f8fafc;
    --text-color: #1f2937;
    --primary-color: #1a3c78;
    --secondary-color: #f97316;

    --font: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --fs-body: 16px;
    --lh-body: 1.6;

    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow: 0 4px 16px rgba(0, 0, 0, .10);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .14);
    --shadow-primary: 0 8px 24px rgba(26, 60, 120, .28);
    --transition: 0.22s ease;
    --container: 1200px;
    --header-h: 68px;
    --topbar-h: 38px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: var(--lh-body);
    font-size: var(--fs-body);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    background: none;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

@media (min-width:768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .7rem 1.6rem;
    font-size: .95rem;
    font-weight: 600;
    font-family: var(--font);
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: .01em;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.btn--accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn--accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .7);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--primary-light);
}

.btn--whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.btn--whatsapp:hover {
    background: #128C7E;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn--sm {
    padding: .45rem 1rem;
    font-size: .85rem;
}

.btn--lg {
    padding: .9rem 2rem;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

.btn--pill {
    border-radius: 50px;
}

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
    background: var(--dark-2);
    color: rgba(255, 255, 255, .82);
    font-size: .8rem;
    height: var(--topbar-h);
    line-height: var(--topbar-h);
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar__left a,
.top-bar__right a {
    color: rgba(255, 255, 255, .82);
    transition: color var(--transition);
}

.top-bar__left a:hover,
.top-bar__right a:hover {
    color: var(--accent);
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar__cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: .2rem .8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background var(--transition);
}

.top-bar__cta:hover {
    background: var(--accent-dark) !important;
}

@media (max-width:767px) {
    .top-bar {
        height: auto;
        line-height: normal;
        padding: 0.5rem 0;
    }

    .top-bar__inner {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }

    .top-bar__left {
        justify-content: center;
    }

    .top-bar__right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-bar__left .hide-sm {
        display: none;
    }
}

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--header-h);
    box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0, 0, 0, .06);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, .12);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo__img {
    height: auto;
    max-height: 48px;
    /* Compact & professional */
    width: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .logo__img {
        max-height: 42px;
    }
}

/* Nav */
.nav {
    display: flex;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav__link {
    display: block;
    padding: .5rem .8rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--dark-3);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav__link--active,
.nav__link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav__link--highlight {
    color: var(--accent) !important;
    font-weight: 700;
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 200;
}

.nav__dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu a {
    display: block;
    padding: .5rem 1rem;
    font-size: .88rem;
    color: var(--text);
    transition: background var(--transition);
}

.dropdown__menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Nav CTA */
.nav__cta {
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    /* Force width */
    height: 3px;
    /* Slightly thicker */
    background: var(--accent) !important;
    /* Force orange color */
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: calc(var(--topbar-h) + var(--header-h));
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 1.5rem;
        transform: translateX(-100%);
        transition: transform var(--transition);
        overflow-y: auto;
        flex-direction: column;
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: .25rem;
    }

    .nav__link {
        font-size: 1.05rem;
        padding: .75rem 1rem;
        width: 100%;
    }

    .dropdown__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--primary-light);
        padding-left: .5rem;
        margin-left: 1rem;
    }

    .nav__cta {
        display: none;
    }
}

/* ── Sections ──────────────────────────────────────────────── */
.section {
    padding: 4.5rem 0;
}

.section--light {
    background: var(--light);
}

.section--lighter {
    background: var(--light-2);
}

.section__header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section__eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: .3rem .9rem;
    border-radius: 50px;
    margin-bottom: .85rem;
}

.section__title {
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    color: var(--dark);
    margin-bottom: .6rem;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

.section__badge {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: .3rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    background: #fff;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: stretch;
}

/* Diagonal split — left white, right navy */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(155deg, #1a3c78 0%, #1e4faa 60%, #2563eb 100%);
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: stretch;
    position: relative;
    z-index: 1;
    padding: 3.5rem 0;
    gap: 0;
    min-height: 600px;
}

/* LEFT content */
.hero__content {
    padding-right: 3rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    border: 1.5px solid #fbd0aa;
    padding: .32rem .9rem .32rem .7rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero__highlight {
    color: var(--primary);
    display: block;
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ── Big inline search box ─── */
.hero__search-box {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(26, 60, 120, .13);
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.hero__search-header {
    background: var(--primary);
    padding: .7rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hero__search-header span {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
}

.hero__search-body {
    padding: 1.1rem 1.25rem 1.25rem;
}

.hero__search-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: .75rem;
}

.hero__search-field {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.hero__search-field label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
}

.hero__search-field select,
.hero__search-field input {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .65rem .9rem;
    font-size: .92rem;
    font-family: var(--font);
    color: var(--dark);
    background: var(--light);
    width: 100%;
    transition: border-color var(--transition);
    appearance: none;
}

.hero__search-field select {
    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='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .7rem center;
    padding-right: 2.2rem;
}

.hero__search-field select:focus,
.hero__search-field input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 60, 120, .1);
}

.hero__search-btn {
    width: 100%;
    padding: .85rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.hero__search-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}


/* Stats row */
.hero__stats {
    display: flex;
    gap: 0;
    margin-top: 2rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.hero__stat {
    flex: 1;
    text-align: center;
    padding: .9rem .5rem;
    border-right: 1.5px solid var(--border);
    position: relative;
}

.hero__stat:last-child {
    border-right: none;
}

.hero__stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.hero__stat span {
    font-size: .72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: .2rem;
    display: block;
}

/* RIGHT visual */
.hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem 2.5rem 3rem;
}

.hero__illustration {
    width: 100%;
    max-width: 460px;
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Main illustration image card */
.hero__img-wrap {
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.hero__truck-svg {
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
    display: block;
    animation: truck-float 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .25));
}

@keyframes truck-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Floating badges — positioned relative to .hero__illustration */
.hero__badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: .55rem .85rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    animation: badge-float 5s ease-in-out infinite;
    z-index: 5;
}

.hero__badge--1 {
    top: 0;
    left: -1rem;
    animation-delay: 0s;
}

.hero__badge--2 {
    bottom: 1rem;
    right: -1rem;
    animation-delay: 1.5s;
}

.hero__badge-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero__badge-info strong {
    display: block;
    font-size: .76rem;
    color: var(--dark);
    line-height: 1.2;
}

.hero__badge-info span {
    font-size: .66rem;
    color: var(--text-muted);
    display: block;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Trust strip under the illustration card */
.hero__trusted-by {
    margin-top: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    letter-spacing: .02em;
}

.hero__trusted-by::before,
.hero__trusted-by::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .25);
    max-width: 50px;
}

/* Quick links — don't wrap */
.hero__quick-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text-muted);
    padding-top: 1rem;
}

.hero__quick-links::-webkit-scrollbar {
    display: none;
}

.hero__quick-links strong {
    color: var(--dark);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero__quick-link {
    background: var(--light-2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .22rem .7rem;
    font-size: .77rem;
    color: var(--text);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero__quick-link:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero::after {
        display: none;
    }

    .hero {
        background: #f8fafc;
        min-height: auto;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem 3rem;
        gap: 2rem;
        min-height: auto;
    }

    .hero__content {
        padding-right: 0;
    }

    .hero__title {
        color: var(--dark);
    }

    .hero__highlight {
        color: var(--accent);
    }

    .hero__subtitle {
        color: var(--text-muted);
    }

    .hero__stats {
        background: var(--white);
        border-color: var(--border);
        box-shadow: var(--shadow-sm);
    }

    .hero__stat {
        border-color: var(--border);
    }

    .hero__stat strong {
        color: var(--dark);
    }

    .hero__stat span {
        color: var(--text-muted);
    }

    .hero__eyebrow {
        color: var(--accent);
        background: rgba(10, 37, 88, 0.05);
        border-color: rgba(10, 37, 88, 0.1);
    }

    .hero__visual {
        padding: 0 0 1rem;
    }

    .hero__illustration {
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
    }

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

    .hero__badge {
        display: none;
    }

    /* Stacked Hero Form for Mobile */
    .hero-mobile-stacked {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        padding: 1.25rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }



    .hero__stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        background: var(--white);
        border: 1.5px solid var(--border) !important;
        border-radius: var(--radius) !important;
    }

    .hero__stat {
        border-right: 1.5px solid var(--border) !important;
        border-bottom: 1.5px solid var(--border) !important;
        padding: 0.75rem 0.5rem !important;
    }

    .hero__stat:nth-child(2n) {
        border-right: none !important;
    }

    .hero__stat:nth-child(3),
    .hero__stat:nth-child(4) {
        border-bottom: none !important;
    }

    .hero__title {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
    }

    .hero__highlight {
        color: var(--accent) !important;
    }

    .mobile-only {
        display: inline !important;
    }

    /* Fix header crowding */
    .top-bar {
        font-size: 0.75rem !important;
        padding: 0.5rem 0 !important;
    }

    .top-bar__inner {
        flex-direction: column !important;
        gap: 0.4rem !important;
        text-align: center;
    }

    .top-bar__left,
    .top-bar__right {
        justify-content: center !important;
        gap: 0.8rem !important;
    }

    .top-bar__contact {
        display: flex !important;
        gap: 0.6rem !important;
    }
}

.mobile-only {
    display: none;
}











/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--dark-3);
}

.trust-item__icon {
    font-size: 1.3rem;
}

.trust-item strong {
    color: var(--primary);
}

@media (max-width:600px) {
    .trust-bar__inner {
        justify-content: center;
        gap: .75rem;
    }

    .trust-item span {
        display: none;
    }
}

/* ── Services Section ──────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card__icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.service-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem;
}

.service-card__desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Service card color variants */
.service-card:nth-child(1) .service-card__icon-wrap {
    background: #EFF6FF;
}

.service-card:nth-child(2) .service-card__icon-wrap {
    background: #FFF7ED;
}

.service-card:nth-child(3) .service-card__icon-wrap {
    background: #F0FDF4;
}

.service-card:nth-child(4) .service-card__icon-wrap {
    background: #FDF4FF;
}

.service-card:nth-child(5) .service-card__icon-wrap {
    background: #FFFBEB;
}

.service-card:nth-child(6) .service-card__icon-wrap {
    background: #FFF1F2;
}

@media (max-width:900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:540px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }

    .service-card {
        padding: 1.25rem 1rem;
    }
}

/* ── City Grid ─────────────────────────────────────────────── */
.city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.city-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.city-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.city-card:hover .city-card__name {
    color: var(--primary);
}

.city-card__icon {
    font-size: 2.2rem;
}

.city-card__name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
}

.city-card__count {
    font-size: .78rem;
    color: var(--text-muted);
}

.city-card__cta {
    font-size: .78rem;
    color: var(--accent);
    font-weight: 600;
}

@media (max-width:900px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:540px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── How It Works ──────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-card__num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-primary);
    border: 4px solid var(--white);
}

.step-card__icon {
    font-size: 2rem;
    margin-bottom: .75rem;
}

.step-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--dark);
}

.step-card__desc {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.55;
}

@media (max-width:900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }
}

@media (max-width:500px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    padding: 3rem 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-item__num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
    display: block;
    line-height: 1;
}

.stat-item__label {
    font-size: .88rem;
    color: rgba(255, 255, 255, .78);
    margin-top: .4rem;
    display: block;
}

@media (max-width:700px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us__desc {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.why-us__list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 2rem;
}

.why-us__list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: var(--text);
}

.why-us__list .check-icon {
    width: 22px;
    height: 22px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: .75rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.feature-card__icon {
    font-size: 1.8rem;
    margin-bottom: .75rem;
}

.feature-card h4 {
    font-size: .95rem;
    margin-bottom: .4rem;
    color: var(--dark);
}

.feature-card p {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width:900px) {
    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width:540px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: box-shadow var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-card__stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: .85rem;
    letter-spacing: .05em;
}

.testimonial-card__text {
    font-size: .93rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: .9rem;
    color: var(--dark);
}

.testimonial-card__author span {
    font-size: .8rem;
    color: var(--text-muted);
}

@media (max-width:900px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #0f2152 0%, var(--primary) 60%, var(--primary-mid) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '📦';
    font-size: 14rem;
    opacity: .04;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: .5rem;
}

.cta-banner__subtitle {
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
}

.cta-banner__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width:768px) {
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Flash Messages ────────────────────────────────────────── */
.flash {
    padding: .85rem 1rem;
    font-size: .93rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    margin: .5rem 0;
}

.flash--success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success);
}

.flash--error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--error);
}

.flash--info {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-left: 4px solid var(--primary);
}

.flash--warning {
    background: #fef9c3;
    color: #854d0e;
    border-left: 4px solid var(--warning);
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb-bar {
    background: var(--light-2);
    border-bottom: 1px solid var(--border);
    padding: .6rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    flex-wrap: wrap;
}

.breadcrumb__link {
    color: var(--text-muted);
}

.breadcrumb__link:hover {
    color: var(--primary);
}

.breadcrumb__sep {
    color: var(--border);
}

.breadcrumb__current {
    color: var(--dark);
    font-weight: 500;
}

/* ── Cards (Generic) ──────────────────────────────────────── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

/* ── Auth Card (Login/Register) ───────────────────────────── */
.auth-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    width: 100%;
    display: block !important;
    /* Ensure it's not a grid */
    position: relative;
    transition: all 0.3s ease;
}

.auth-card .form-group {
    margin-bottom: 1.75rem;
}

.auth-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ── Pricing Card grid ───────────────────────────────────────── */
.pricing-card {
    background: #ffffff;
    padding: 3.5rem 2rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    display: flex !important;
    /* Force flex column */
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ── Dashboard Card ────────────────────────────────────────────── */
.panel-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: block;
    /* Overrides any inherited grid */
}

.panel-card:hover {
    box-shadow: var(--shadow-md);
}

.vendor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: all var(--transition);
}

.vendor-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .87rem;
    color: var(--dark-3);
    margin-bottom: .4rem;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: .7rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .95rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 120, .1);
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

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

@media (max-width:600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .3);
    animation: modal-in .25s ease;
}

@keyframes modal-in {
    from {
        transform: scale(.96) translateY(20px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-2);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.modal__close:hover {
    background: var(--border);
}

.modal__header {
    margin-bottom: 1.5rem;
}

.modal__title {
    font-size: 1.25rem;
    margin-bottom: .3rem;
}

.modal__subtitle {
    font-size: .9rem;
    color: var(--text-muted);
}

.phone-reveal {
    text-align: center;
    padding: 1.5rem 0;
}

.phone-reveal__success {
    color: var(--success);
    font-weight: 700;
    margin-bottom: 1rem;
}

.phone-reveal__number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin: .5rem 0;
}

.phone-reveal__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--whatsapp);
    color: white;
    padding: .6rem 1.5rem;
    border-radius: 50px;
    margin-top: .75rem;
    font-weight: 600;
}

.phone-reveal__whatsapp:hover {
    background: #1ea855;
    color: white;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: #0f1b2d;
    color: rgba(255, 255, 255, .75);
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer__logo-icon {
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer__logo-img {
    height: auto;
    max-height: 54px;
    width: auto;
    object-fit: contain;
}

.footer__tagline {
    font-size: .88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 1.25rem;
}

.footer__social {
    display: flex;
    gap: .5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    font-weight: 700;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.social-link svg {
    max-width: 18px;
    max-height: 18px;
    width: 100%;
    height: auto;
}

.footer__heading {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1.1rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.footer__links a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__contact li {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.footer__contact a {
    color: rgba(255, 255, 255, .6);
}

.footer__contact a:hover {
    color: var(--accent);
}

.footer__bottom {
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
}

.footer__bottom a {
    color: rgba(255, 255, 255, .5);
}

.footer__bottom a:hover {
    color: var(--accent);
}

@media (max-width:900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:540px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Mobile Sticky CTA ─────────────────────────────────────── */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .15);
}

.mobile-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-cta a svg {
    max-width: 20px;
    max-height: 20px;
}

.mobile-sticky-cta a.btn-whatsapp {
    background: #128c7e;
}

.mobile-sticky-cta a.btn-getquote {
    background: #dc3545;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 60px;
        /* prevent content overlap */
    }
}

/* ── Alert / Badges ────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .6rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
}

.badge--success {
    background: #d1fae5;
    color: #065f46;
}

.badge--warning {
    background: #fef9c3;
    color: #854d0e;
}

.badge--primary {
    background: var(--primary-light);
    color: var(--primary);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: .93rem;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.alert--error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--error);
}

.alert--success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success);
}

.alert--info {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-left: 4px solid var(--primary);
}

/* ── Vendor Detail Page ────────────────────────────────────── */
.vendor-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    padding: 3rem 0;
    color: white;
}

.vendor-header .vendor-card {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .15);
}

.vendor-header h1,
.vendor-header p {
    color: white;
}

/* ── Register Page ─────────────────────────────────────────── */
.register-form {
    max-width: 820px;
    margin: 0 auto;
}

.register-form__title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.register-page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.register-page-hero h1 {
    color: white;
    margin-bottom: .5rem;
}

.register-page-hero p {
    color: rgba(255, 255, 255, .85);
}

/* ── City/Vendor Listing ───────────────────────────────────── */
.listing-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    padding: 2.5rem 0;
    color: white;
    text-align: center;
}

.listing-hero h1,
.listing-hero p {
    color: white;
}

/* ── Buy Leads Page ────────────────────────────────────────── */
.packages-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.packages-hero h1,
.packages-hero p {
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.package-card--popular {
    border-color: var(--accent);
}

.package-card--popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: -2.5rem;
    background: var(--accent);
    color: white;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem 3rem;
    transform: rotate(45deg);
}

.package-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .35rem;
    color: var(--dark);
}

.package-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: .75rem 0;
}

.package-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.package-card__credits {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.package-card__features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.package-card__features li {
    font-size: .9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .5rem;
}

@media (max-width:900px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Vendor Dashboard ──────────────────────────────────────── */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.stat-card__num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-card__label {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: .25rem;
}

@media (max-width:768px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:400px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }
}

/* ── Tables ────────────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    background: var(--light-2);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
    padding: .9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

tbody td {
    padding: .9rem 1rem;
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover td {
    background: var(--light);
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.text-success {
    color: var(--success);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: .75rem;
}

.mb-1 {
    margin-bottom: .75rem;
}

.mb-2 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 2.25rem;
}

.fw-700 {
    font-weight: 700;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: .75rem;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

/* ── Scroll animations ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Success state */
.form-success-state {
    text-align: center;
    padding: 1.5rem 1rem;
    animation: wizardFade .4s ease forwards;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
}

.form-success-state h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 .4rem;
}

.form-success-state p {
    color: var(--text-muted);
    font-size: .88rem;
    margin: 0 0 .25rem;
}

.wizard__success-sub {
    font-size: .78rem !important;
    color: #10b981 !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .wizard__row {
        grid-template-columns: 1fr;
    }

    .wizard__arrow {
        display: none;
    }

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

/* ── Internal Page Hero (City/Listing) ──────────────────────── */
.hero--internal {
    min-height: auto;
    background: #fff;
    padding-bottom: 0;
}

.hero--internal::after {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    width: 40%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero--internal .hero__inner {
    padding: 3rem 0;
    align-items: flex-start;
}

.hero--internal .hero__content {
    padding-right: 2rem;
}

.hero--internal .hero__title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.hero--service .hero__title,
.hero--service .hero__subtitle {
    color: #fff;
}

.hero--service .hero__highlight {
    color: var(--accent);
    /* Orange highlight works better on dark blue */
}

.hero--service .hero__eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: #4ade80;
    /* Light emerald green for contrast */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__eyebrow {
    display: inline-block;
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

/* ── Vendor Card Internals ──────────────────────────────────── */
.vendor-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.25rem;
    align-items: start;
    position: relative;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.vendor-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.vendor-card__logo {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    flex-shrink: 0;
    overflow: hidden;
}

.vendor-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.vendor-card__info {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    min-width: 0;
    /* Prevent flex blowouts */
}

.vendor-card__name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.vendor-card__name a {
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}

.vendor-card__name a:hover {
    color: var(--primary);
}

.vendor-card__meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .9rem;
    color: var(--text-muted);
}

.vendor-card__rating {
    display: flex;
    align-items: center;
    gap: .3rem;
    background: #fffbeb;
    color: #b45309;
    padding: .2rem .5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: .85rem;
}

.vendor-card__desc {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: .4rem 0 .8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vendor-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.tag {
    font-size: .75rem;
    background: var(--light-2);
    color: var(--text-muted);
    padding: .25rem .6rem;
    border-radius: 50px;
    font-weight: 500;
}

.vendor-card__actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.vendor-card__verified {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: .75rem;
    background: #d1fae5;
    color: #065f46;
    padding: .2rem .6rem;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
}

.sidebar-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-checklist li {
    font-size: .9rem;
    margin-bottom: .6rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.sidebar-cities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cities li {
    margin-bottom: .5rem;
}

.sidebar-cities a {
    display: block;
    font-size: .9rem;
    color: var(--primary);
    padding: .4rem .6rem;
    border-radius: 6px;
    transition: background .2s;
}

.sidebar-cities a:hover {
    background: var(--light-2);
    text-decoration: none;
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .8rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
}

.badge--green {
    background: #d1fae5;
    color: #065f46;
}

.badge--blue {
    background: #dbeafe;
    color: #1e40af;
}

.badge--orange {
    background: #ffedd5;
    color: #9a3412;
}

/* ── FAQ in Content ─────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--dark);
}

.faq-item__answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.6;
    display: none;
    /* JS toggles this */
}

/* ── Vendor Profile & Details ──────────────────────────────── */
.vendor-hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(23, 37, 84, 0.08) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.vendor-hero__inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.vendor-hero__logo {
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.vendor-hero__logo img {
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    display: block;
}

.vendor-hero__info {
    flex-grow: 1;
}

.vendor-hero__name {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.vendor-hero__location {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vendor-hero__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.vendor-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.vendor-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 220px;
}

/* Vendor Section Cards */
.vendor-section-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.vendor-section-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.vendor-section-card__body {
    color: var(--text);
    line-height: 1.8;
}

/* Vendor Services Items */
.vendor-section-card .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--light-2);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
    border: 1px solid transparent;
}

.service-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    border-color: var(--border);
    transform: translateY(-2px);
}

/* Vendor Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
}

.info-table th {
    width: 35%;
    color: var(--text-muted);
    font-weight: 600;
}

.info-table td {
    color: var(--dark);
    font-weight: 600;
}

/* ── Layout Helpers ─────────────────────────────────────────── */
.city-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.vendors-layout,
.vendor-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-bottom: 4rem;
}

@media (max-width: 900px) {
    .vendors-layout {
        grid-template-columns: 1fr;
    }

    .hero--internal::after {
        display: none;
    }

    .hero--internal .hero__inner {
        padding: 2rem 0;
    }

    .vendor-card__actions {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile Responsive Core ──────────────────────────────── */

html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    position: relative;
    width: 100%;
}

@media (max-width: 900px) {
    .container {
        padding: 0 1rem !important;
    }

    /* Top Bar Stacking */
    .top-bar {
        height: auto !important;
        line-height: normal !important;
        padding: 0.6rem 0 !important;
        font-size: 0.78rem !important;
    }

    .top-bar__inner {
        flex-direction: column !important;
        gap: 0.6rem !important;
        text-align: center !important;
    }

    .top-bar__left,
    .top-bar__right {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    /* Header & Navigation */
    .header__inner {
        flex-wrap: wrap !important;
        height: auto !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        gap: 1rem !important;
    }

    .nav {
        top: 0 !important;
        height: 100vh !important;
        z-index: 1000 !important;
    }

    .nav__cta {
        display: none !important;
    }

    /* Hero Section */
    .hero__inner {
        padding: 2.5rem 0 !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .hero__content {
        padding-right: 0 !important;
        text-align: center !important;
    }

    .hero__stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 !important;
        border: 1px solid var(--border) !important;
        margin-top: 1.5rem !important;
    }

    .hero__stat {
        border-right: 1px solid var(--border) !important;
        border-bottom: 1px solid var(--border) !important;
        flex: none !important;
        width: 100% !important;
    }

    .hero__stat:nth-child(2n) {
        border-right: none !important;
    }

    .hero__stat:nth-child(3),
    .hero__stat:nth-child(4) {
        border-bottom: none !important;
    }

    /* Vendors & Detail Pages */
    .vendors-layout,
    .vendor-hero__inner,
    .vendor-layout {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .vendor-card:has(.vendor-card__logo),
    .vendors-layout .vendor-card {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .top-bar__right {
        flex-direction: column !important;
        gap: 0.4rem !important;
    }
}

@media (max-width: 600px) {
    .hero__title {
        font-size: clamp(1.4rem, 7.5vw, 1.85rem) !important;
        line-height: 1.25 !important;
        overflow-wrap: break-word !important;
    }

    .hero__quick-links {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        justify-content: center !important;
        padding-bottom: 0 !important;
    }

    .hero__quick-links a {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .wizard__panel {
        padding: 1.25rem !important;
    }

    .wizard__service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .form-control {
        font-size: 16px !important;
        /* Prevent iOS zoom */
    }
}

@media (max-width: 400px) {
    .top-bar {
        font-size: 0.72rem !important;
    }

    .hero__title {
        font-size: 1.4rem !important;
    }

    .wizard__service-grid {
        grid-template-columns: 1fr !important;
    }

    .hero__stat strong {
        font-size: 1.15rem !important;
    }
}

/* ── UI Utilities ────────────────────────────────────────── */
.text-center {
    text-align: center !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mt-1 {
    margin-top: 0.5rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--dark-2);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font);
    transition: all var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* ── Registration Page & Sidebar ──────────────────────────────── */
.register-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    margin-top: 3rem;
    padding-bottom: 5rem;
}

.register-form-wrap {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.register-form__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sidebar-widget--benefits {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.sidebar-widget__title {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: 1.5rem;
    background: rgba(30, 58, 138, 0.05);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.benefits-list p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.register-steps {
    padding-left: 1.25rem;
    color: #555;
    margin: 0;
}

.register-steps li {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.register-steps li:last-child {
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.file-upload-area {
    border: 2px dashed var(--border);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-sm);
    background: #fafafa;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-area:hover {
    border-color: var(--primary);
    background: #f0f7ff;
}

.file-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-icon {
    font-size: 2rem;
}

.file-upload-text {
    font-weight: 600;
    color: var(--secondary);
}

.file-upload-hint {
    font-size: 0.85rem;
    color: #888;
}

.register-form__terms {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #555;
}

/* ── Hidden Admin Link ───────────────────────────────────── */
.hidden-admin-link {
    color: inherit;
    text-decoration: none;
    cursor: default;
    /* Changes back to a normal pointer so it doesn't look like a link */
}

.register-form__note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 900px) {
    .register-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    margin-top: 3rem;
    padding-bottom: 5rem;
}

.contact-form-wrap {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.contact-form__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #555;
    font-weight: 500;
}

.contact-details li:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--secondary);
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--primary);
}

.sidebar-widget .footer__links a {
    color: var(--secondary) !important;
    font-weight: 500;
}

.sidebar-widget .footer__links a:hover {
    color: var(--primary) !important;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Login Card (Admin/Vendor) ───────────────────────────── */
.login-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    margin: 0 auto;
}

/* ── Static Unified Lead Form ────────────────────────────── */

.static-lead-form {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 480px;
    margin: 1.25rem 0;
    box-sizing: border-box;
}

/* Header typography: "Get FREE QUOTES Now" */
.static-form-header h3 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    /* Dark almost black */
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.02em;
}

.static-form-header .text-red {
    color: #ef4444;
    /* Clean premium red */
}

/* Inputs styling */
.static-lead-form .form-group {
    margin-bottom: 0.85rem;
}

.static-lead-form input,
.static-lead-form textarea {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    /* Base grey */
    border-radius: 6px;
    padding: 0 1rem;
    font-size: 0.95rem;
    color: #1f2937;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.static-lead-form input {
    height: 48px;
}

.static-lead-form textarea {
    padding-top: 0.8rem;
    resize: none;
}

.static-lead-form input::placeholder,
.static-lead-form textarea::placeholder {
    color: #6b7280;
    font-weight: 500;
}

.static-lead-form input:focus,
.static-lead-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    /* Premium primary blue */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Red Submit Button */
.static-submit-btn {
    width: 100%;
    background: #e11d48;
    /* Crimson red */
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    height: 52px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.static-submit-btn:hover {
    background: #be123c;
    /* Darker crimson */
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(225, 29, 72, 0.3);
}

/* Trust Badges */
.form-trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid #f3f4f6;
}

.form-trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
}

/* Success State Formatting */
.form-success-state {
    text-align: center;
    padding: 2rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-success-state .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success-state h3 {
    color: #166534;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-success-state p {
    color: #15803d;
    font-size: 0.95rem;
}

/* ── Centered Hero (Desktop Wide Form) ── */
.hero--centered {
    background: #f1f5f9;
    /* Slate 50 - Very light grey */
    padding: 3rem 0 4rem;
    min-height: auto;
    display: block;
}

.hero--centered::after {
    display: none;
    /* remove diagonal */
}

.hero__inner--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.hero__header-text {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero__header-text h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.4rem;
}

.hero__header-text p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 0;
}

/* Wide Static Form override */
.static-lead-form--wide {
    max-width: 900px;
    margin: 0 auto;
}

.static-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.static-form-grid .form-group {
    margin-bottom: 0;
}

.static-form-grid .full-width {
    grid-column: 1 / -1;
}

.static-lead-form--wide .static-submit-btn {
    margin-top: 0.5rem;
}

/* Bottom Trust Badges */
.form-trust-bottom {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-trust-bottom span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-trust-bottom svg {
    width: 16px;
    height: 16px;
}

.form-security-text {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .static-form-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .form-trust-bottom {
        gap: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
        /* Left anchor for mobile readability if stacked */
    }
}