* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --light: #f8fafc;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 250px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #475569;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--primary);
}

.header-button {
    background: var(--primary);
    color: white;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.header-button:hover {
    background: var(--primary-dark);
}


/* =========================
   HERO
========================= */

.hero {
    background:
        radial-gradient(circle at top left, #dbeafe, transparent 35%),
        linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    padding: 90px 0 100px;
}

.hero-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    color: var(--primary);
    background: #dbeafe;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.hero h1 {
    max-width: 800px;
    margin: auto;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero-text {
    max-width: 650px;
    margin: 22px auto 35px;
    color: var(--muted);
    font-size: 18px;
}

.search-box {
    max-width: 760px;
    margin: auto;
    display: flex;
    align-items: center;
    background: white;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.10);
}

.search-box input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 16px;
    color: var(--text);
}

.search-box input::placeholder {
    color: #94a3b8;
}

.search-box button {
    border: none;
    background: var(--primary);
    color: white;
    padding: 14px 26px;
    border-radius: 9px;
    font-weight: 700;
    cursor: pointer;
}

.search-box button:hover {
    background: var(--primary-dark);
}

.hero-links {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 75px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 32px;
}

.section-heading h2,
.services-section h2 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.section-label {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    margin-bottom: 8px;
}

.section-heading > a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}


/* =========================
   CATEGORIES
========================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.category-card {
    min-height: 145px;
    padding: 24px 15px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.2s ease;
}

.category-card:hover {
    border-color: #bfdbfe;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.category-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 14px;
    font-size: 21px;
}

.category-card h3 {
    font-size: 14px;
}


/* =========================
   FEATURED BUSINESSES
========================= */

.featured-section {
    background: var(--light);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.business-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.2s ease;
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.09);
}

.business-card-top {
    height: 145px;
    background:
        linear-gradient(135deg, #dbeafe, #eff6ff);
    padding: 14px;
    position: relative;
}

.featured-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.business-card-content {
    padding: 22px;
}

.business-category {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.business-card h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.business-area {
    color: var(--muted);
    font-size: 13px;
}

.business-description {
    color: var(--muted);
    font-size: 13px;
    margin-top: 12px;
}

.business-actions {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.call-button,
.whatsapp-button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.call-button {
    background: var(--primary);
    color: white;
}

.whatsapp-button {
    border: 1px solid var(--border);
    background: white;
}

.call-button:hover {
    background: var(--primary-dark);
}


/* =========================
   SERVICES
========================= */

.services-section {
    text-align: center;
}

.section-intro {
    max-width: 650px;
    margin: 12px auto 28px;
    color: var(--muted);
}

.service-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tags span {
    border: 1px solid var(--border);
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    background: white;
}


/* =========================
   BUSINESS CTA
========================= */

.business-cta {
    padding: 70px 0;
    background: #eff6ff;
}

.business-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.business-cta h2 {
    max-width: 700px;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.business-cta p:not(.section-label) {
    max-width: 650px;
    color: var(--muted);
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 14px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--primary-dark);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 55px 0 20px;
    background: #0f172a;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.footer-content h4 {
    font-size: 14px;
    margin-bottom: 14px;
}

.footer-content p {
    color: #94a3b8;
    font-size: 14px;
}

.footer-content a {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-content a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 950px) {

    .main-nav {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .header-inner {
        min-height: 65px;
    }

   .logo img {
    width: 205px;
}

    .header-button {
        padding: 9px 12px;
        font-size: 12px;
    }

    .hero {
        padding: 65px 0 70px;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 16px;
    }

    .search-box {
        flex-direction: column;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 10px;
    }

    .search-box input {
        width: 100%;
        background: white;
        border: 1px solid var(--border);
        border-radius: 9px;
    }

    .search-box button {
        width: 100%;
    }

    .section {
        padding: 55px 0;
    }

    .section-heading {
        align-items: start;
    }

    .section-heading h2,
    .services-section h2 {
        font-size: 27px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        min-height: 125px;
        padding: 18px 10px;
    }

    .category-icon {
        width: 45px;
        height: 45px;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .business-cta h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
/* =========================
   HERO UPGRADE
========================= */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.14), transparent 30%),
        radial-gradient(circle at 85% 70%, rgba(59, 130, 246, 0.12), transparent 30%),
        linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    right: -180px;
    top: -180px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    left: -160px;
    bottom: -170px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    margin-bottom: 20px;
    border: 1px solid #bfdbfe;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.75);
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(50px, 7vw, 78px);
    letter-spacing: -3px;
}

.hero h1 span {
    color: #2563eb;
}

.hero-text {
    max-width: 680px;
    font-size: 19px;
    line-height: 1.7;
}

.search-box {
    position: relative;
    max-width: 800px;
    min-height: 72px;
    padding: 7px 7px 7px 20px;
}

.search-icon {
    color: #94a3b8;
    font-size: 28px;
    line-height: 1;
    margin-right: 8px;
}

.search-box input {
    font-size: 16px;
}

.search-box button {
    min-width: 125px;
}

.popular-searches {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    font-size: 13px;
}

.popular-searches span {
    color: #64748b;
}

.popular-searches a {
    color: #475569;
    font-weight: 600;
}

.popular-searches a:hover {
    color: #2563eb;
}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 16px;
    }

    .search-icon {
        display: none;
    }

    .popular-searches {
        line-height: 1.8;
    }
}
/* =========================
   MYBADLAPUR LOCAL HERO
========================= */

.hero-local {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #0f2a44;
}

.hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-badlapur.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 55, 0.98) 0%,
            rgba(7, 31, 55, 0.94) 34%,
            rgba(7, 31, 55, 0.55) 55%,
            rgba(7, 31, 55, 0.08) 78%
        );
}

.hero-local-content {
    position: relative;
    z-index: 2;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 55px;
    padding-bottom: 65px;
}

.hero-local-text {
    width: 62%;
    max-width: 720px;
}

.hero-welcome {
    display: inline-block;
    margin-bottom: 18px;
    color: #dbeafe;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.hero-local h1 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-local h1 span {
    display: block;
    color: #f97316;
}

.hero-local-text > p {
    max-width: 620px;
    color: #dbe5ef;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-search {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}

.hero-search-icon {
    width: 42px;
    text-align: center;
    color: #64748b;
    font-size: 28px;
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 14px 8px;
    color: #0f172a;
    font-size: 15px;
}

.hero-search input::placeholder {
    color: #94a3b8;
}

.hero-search button {
    border: 0;
    background: #f97316;
    color: #ffffff;
    min-width: 115px;
    min-height: 54px;
    border-radius: 7px;
    font-weight: 800;
    cursor: pointer;
}

.hero-search button:hover {
    background: #ea580c;
}

.hero-popular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.hero-popular strong {
    color: #ffffff;
    font-size: 12px;
    margin-right: 4px;
}

.hero-popular a {
    padding: 7px 13px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12px;
}

.hero-popular a:hover {
    background: #f97316;
}

.hero-local-caption {
    align-self: flex-end;
    width: 250px;
    margin-bottom: 25px;
    padding: 20px;
    border-left: 3px solid #f97316;
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
    font-style: italic;
}


/* =========================
   QUICK LINKS
========================= */

.quick-links {
    position: relative;
    z-index: 5;
    margin-top: -35px;
}

.quick-links-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.13);
    overflow: hidden;
}

.quick-links a {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-right: 1px solid #e2e8f0;
}

.quick-links a:last-child {
    border-right: 0;
}

.quick-links a:hover strong {
    color: #f97316;
}

.quick-icon {
    font-size: 32px;
    color: #0f2a44;
}

.quick-links strong {
    display: block;
    font-size: 15px;
    color: #0f2a44;
}

.quick-links span {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-top: 2px;
}


/* =========================
   HERO MOBILE
========================= */

@media (max-width: 800px) {

    .hero-local {
        min-height: auto;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 55, 0.94),
                rgba(7, 31, 55, 0.82)
            );
    }

    .hero-local-content {
        min-height: 600px;
        padding-top: 65px;
        padding-bottom: 75px;
        display: block;
    }

    .hero-local-text {
        width: 100%;
    }

    .hero-local h1 {
        font-size: 45px;
    }

    .hero-local-text > p {
        font-size: 16px;
    }

    .hero-local-caption {
        display: none;
    }

    .quick-links {
        margin-top: -25px;
    }

    .quick-links-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-links a:nth-child(2) {
        border-right: 0;
    }

    .quick-links a:nth-child(-n+2) {
        border-bottom: 1px solid #e2e8f0;
    }

}


@media (max-width: 500px) {

    .hero-local-content {
        min-height: 570px;
    }

    .hero-local h1 {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .hero-search {
        flex-wrap: wrap;
        padding: 5px;
    }

    .hero-search-icon {
        display: none;
    }

    .hero-search input {
        width: 100%;
        flex-basis: 100%;
        padding: 15px;
    }

    .hero-search button {
        width: 100%;
    }

    .hero-popular {
        gap: 6px;
    }

    .quick-links-inner {
        grid-template-columns: 1fr;
    }

    .quick-links a {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .quick-links a:last-child {
        border-bottom: 0;
    }

}
/* =========================
   HERO FINAL POLISH
========================= */

.hero-local {
    min-height: 470px;
}

.hero-photo {
    background-position: center center;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 55, 0.98) 0%,
            rgba(7, 31, 55, 0.94) 30%,
            rgba(7, 31, 55, 0.72) 48%,
            rgba(7, 31, 55, 0.18) 72%,
            rgba(7, 31, 55, 0.05) 100%
        );
}

.hero-local-content {
    min-height: 470px;
    padding-top: 45px;
    padding-bottom: 55px;
}

.hero-local-text {
    width: 60%;
    max-width: 690px;
}

.hero-local h1 {
    font-size: clamp(42px, 4.8vw, 62px);
    margin-bottom: 16px;
}

.hero-local-text > p {
    font-size: 17px;
    margin-bottom: 23px;
}

.hero-search {
    max-width: 680px;
    min-height: 62px;
}

.hero-search button {
    min-height: 50px;
}

.hero-popular {
    margin-top: 13px;
}

.hero-local-caption {
    width: 220px;
    padding: 17px;
    margin-bottom: 20px;
    background: rgba(7, 31, 55, 0.48);
    backdrop-filter: blur(5px);
    border-radius: 0 8px 8px 0;
    border-left: 3px solid #f97316;
    font-size: 24px;
}


/* Quick links sit neatly over hero */

.quick-links {
    margin-top: -30px;
}

.quick-links-inner {
    border: 1px solid rgba(226, 232, 240, 0.9);
}


/* Desktop image positioning */

@media (min-width: 1000px) {
    .hero-photo {
        background-position: 62% center;
    }
}


/* Tablet */

@media (max-width: 900px) {

    .hero-local-text {
        width: 70%;
    }

    .hero-local-caption {
        width: 190px;
        font-size: 21px;
    }
}


/* Mobile */

@media (max-width: 800px) {

    .hero-local {
        min-height: auto;
    }

    .hero-local-content {
        min-height: 560px;
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .hero-local-text {
        width: 100%;
    }

    .hero-local h1 {
        font-size: 44px;
    }

    .hero-photo {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 55, 0.94),
                rgba(7, 31, 55, 0.82)
            );
    }
}
/* HERO COMPACT ADJUSTMENT */

.hero-local {
    min-height: 430px;
}

.hero-local-content {
    min-height: 430px;
    padding-top: 35px;
    padding-bottom: 45px;
}

.hero-local h1 {
    font-size: clamp(40px, 4.5vw, 58px);
}

.hero-local-text > p {
    margin-bottom: 20px;
}

.hero-search {
    min-height: 60px;
}

.hero-local-caption {
    margin-bottom: 15px;
}


/* Quick links overlap */

.quick-links {
    margin-top: -25px;
}


/* Desktop image positioning */

@media (min-width: 1000px) {
    .hero-photo {
        background-position: 62% center;
    }
}


/* Mobile */

@media (max-width: 800px) {

    .hero-local {
        min-height: auto;
    }

    .hero-local-content {
        min-height: 540px;
        padding-top: 50px;
        padding-bottom: 65px;
    }

    .hero-local h1 {
        font-size: 43px;
    }
}
/* =========================
   POPULAR CATEGORIES
========================= */

.categories-section {
    background: #fffaf5;
}

.categories-section .section-heading h2 span {
    color: #f97316;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.category-card {
    min-height: 150px;
    padding: 22px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
}

.category-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 13px;
    font-size: 27px;
    background: rgba(255,255,255,.75);
}

.category-card h3 {
    color: #0f2a44;
    font-size: 14px;
    line-height: 1.3;
}


/* Category colors */

.category-orange {
    background: #fff0e6;
}

.category-blue {
    background: #eaf3ff;
}

.category-pink {
    background: #fff0f4;
}

.category-purple {
    background: #f3edff;
}

.category-cyan {
    background: #e8f9fb;
}

.category-yellow {
    background: #fff8df;
}

.category-green {
    background: #eaf8f0;
}


/* Category mobile */

@media (max-width: 950px) {

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 600px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        min-height: 130px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

}
/* =========================
   CATEGORY CARDS - FINAL
========================= */

.categories-section {
    background: #fffaf5;
}

.categories-section .section-heading h2 {
    color: #0f2a44;
}

.categories-section .section-heading h2 span {
    color: #f97316;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.category-card {
    position: relative;
    min-height: 155px;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(15, 42, 68, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #f97316;
    box-shadow: 0 14px 30px rgba(15, 42, 68, 0.10);
}

.category-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.85);
    font-size: 24px;
}

.category-info {
    width: 100%;
    margin-top: 12px;
}

.category-info h3 {
    color: #0f2a44;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
}

.category-info span {
    display: block;
    color: #64748b;
    font-size: 11px;
    margin-top: 4px;
}

.category-arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
    color: #f97316;
    font-size: 16px;
    font-weight: 700;
    opacity: .75;
    transition: .2s ease;
}

.category-card:hover .category-arrow {
    background: #f97316;
    color: white;
    opacity: 1;
}


/* Category backgrounds */

.category-orange {
    background: #fff0e6;
}

.category-blue {
    background: #eaf3ff;
}

.category-pink {
    background: #fff0f4;
}

.category-purple {
    background: #f3edff;
}

.category-cyan {
    background: #e8f9fb;
}

.category-yellow {
    background: #fff8df;
}

.category-green {
    background: #eaf8f0;
}


/* Tablet */

@media (max-width: 1050px) {

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* Smaller tablet */

@media (max-width: 800px) {

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* Mobile */

@media (max-width: 600px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        min-height: 135px;
        padding: 16px;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 21px;
    }

    .category-info h3 {
        font-size: 13px;
    }

}
/* =========================
   FEATURED BUSINESSES
========================= */

.featured-section {
    background: #ffffff;
}

.featured-section .section-heading h2 {
    color: #0f2a44;
}

.featured-section .section-heading h2 span {
    color: #f97316;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.business-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(15, 42, 68, 0.06);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(15, 42, 68, 0.12);
}


/* Business image */

.business-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #eaf3ff;
}

.business-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}

.business-card:hover .business-image img {
    transform: scale(1.04);
}


/* Placeholder */

.business-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #0f2a44,
            #173f63
        );
    color: #ffffff;
}

.business-placeholder span {
    font-size: 40px;
    font-weight: 900;
    color: #f97316;
}

.business-placeholder small {
    margin-top: 3px;
    font-size: 10px;
    letter-spacing: 3px;
}


/* Featured badge */

.featured-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 7px 11px;
    border-radius: 5px;
    background: #f97316;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
}


/* Business content */

.business-content {
    padding: 20px;
}

.business-category {
    display: inline-block;
    margin-bottom: 7px;
    color: #f97316;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.business-content h3 {
    color: #0f2a44;
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.business-content p {
    min-height: 38px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 13px;
}

.business-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12px;
    margin-bottom: 17px;
}


/* Actions */

.business-actions {
    display: flex;
    gap: 7px;
}

.business-actions a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 38px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.business-call {
    background: #0f2a44;
    color: #ffffff;
}

.business-call:hover {
    background: #173f63;
}

.business-whatsapp {
    background: #eaf8f0;
    color: #16804b;
}

.business-whatsapp:hover {
    background: #d8f1e3;
}

.business-view {
    background: #fff0e6;
    color: #ea580c;
}

.business-view:hover {
    background: #ffe3d1;
}


/* Empty state */

.empty-businesses {
    grid-column: 1 / -1;
    padding: 50px;
    text-align: center;
    color: #64748b;
}


/* Tablet */

@media (max-width: 900px) {

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 600px) {

    .business-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .business-image {
        height: 210px;
    }

    .business-actions a {
        min-height: 42px;
    }

}
/* =========================
   POPULAR LOCAL SERVICES
========================= */

.services-section {
    background: #fffaf5;
}

.services-section .section-heading h2 {
    color: #0f2a44;
}

.services-section .section-heading h2 span {
    color: #f97316;
}

.section-subtitle {
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}


/* Service grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}


/* Service card */

.service-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 125px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #f97316;
    box-shadow: 0 12px 28px rgba(15, 42, 68, .09);
}


/* Icon */

.service-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff0e6;
    font-size: 23px;
}


/* Content */

.service-content {
    padding-right: 20px;
}

.service-content h3 {
    margin: 2px 0 6px;
    color: #0f2a44;
    font-size: 15px;
    line-height: 1.3;
}

.service-content p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}


/* Arrow */

.service-arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;

    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff0e6;
    color: #f97316;

    font-size: 15px;
    font-weight: 700;

    transition: .2s ease;
}

.service-card:hover .service-arrow {
    background: #f97316;
    color: #ffffff;
}


/* Provider CTA */

.services-cta {
    margin-top: 25px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-radius: 12px;

    background: #0f2a44;
    color: #ffffff;
}

.services-cta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.services-cta strong {
    font-size: 15px;
}

.services-cta span {
    color: #cbd5e1;
    font-size: 12px;
}

.services-cta a {
    flex-shrink: 0;

    padding: 11px 18px;

    border-radius: 7px;

    background: #f97316;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.services-cta a:hover {
    background: #ea580c;
}


/* Tablet */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 110px;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cta a {
        width: 100%;
        text-align: center;
    }

}
/* =========================
   LATEST JOBS
========================= */

.jobs-section {
    background: #ffffff;
}

.jobs-section .section-heading h2 {
    color: #0f2a44;
}

.jobs-section .section-heading h2 span {
    color: #f97316;
}


/* Empty state */

.jobs-empty {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 24px 28px;

    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.jobs-empty-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #fff0e6;

    font-size: 28px;
}

.jobs-empty-content {
    flex: 1;
}

.jobs-empty-content h3 {
    margin: 0 0 5px;

    color: #0f2a44;

    font-size: 16px;
}

.jobs-empty-content p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.5;
}

.post-job-button {
    flex-shrink: 0;

    padding: 11px 18px;

    border-radius: 7px;

    background: #f97316;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition: background .2s ease;
}

.post-job-button:hover {
    background: #ea580c;
}


/* Mobile */

@media (max-width: 600px) {

    .jobs-empty {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-job-button {
        width: 100%;
        text-align: center;
    }

}
/* =========================
   PROPERTIES
========================= */

.properties-section {
    background: #eef5ff;
}

.properties-section .section-heading h2 {
    color: #0f2a44;
}

.properties-section .section-heading h2 span {
    color: #f97316;
}

.property-empty {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 24px 28px;

    background: #ffffff;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
}

.property-empty-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #e8f1ff;

    font-size: 28px;
}

.property-empty-content {
    flex: 1;
}

.property-empty-content h3 {
    margin: 0 0 5px;

    color: #0f2a44;

    font-size: 16px;
}

.property-empty-content p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.5;
}

.post-property-button {
    flex-shrink: 0;

    padding: 11px 18px;

    border-radius: 7px;

    background: #f97316;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition: background .2s ease;
}

.post-property-button:hover {
    background: #ea580c;
}


/* Mobile */

@media (max-width: 600px) {

    .property-empty {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-property-button {
        width: 100%;
        text-align: center;
    }

}
/* =========================
   OFFERS & EVENTS
========================= */

.offers-events-section {
    background: #fffaf5;
}

.offers-events-section .section-heading h2 {
    color: #0f2a44;
}

.offers-events-section .section-heading h2 span {
    color: #f97316;
}


/* Two panels */

.offers-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}


/* Panel */

.oe-panel {
    padding: 24px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 14px;

    box-shadow: 0 6px 20px rgba(15, 42, 68, .04);
}


/* Header */

.oe-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 20px;
}

.oe-label {
    display: block;

    margin-bottom: 5px;

    color: #2563eb;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.oe-panel-header h3 {
    margin: 0;

    color: #0f2a44;

    font-size: 21px;
}

.oe-panel-header a {
    color: #2563eb;

    font-size: 12px;
    font-weight: 700;
}


/* Empty state */

.oe-empty {
    display: flex;
    align-items: center;
    gap: 16px;

    min-height: 115px;

    padding: 18px;

    border-radius: 11px;

    background: #f8fafc;
    border: 1px solid #edf1f5;
}

.oe-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #fff0e6;

    font-size: 24px;
}

.oe-empty h4 {
    margin: 0 0 5px;

    color: #0f2a44;

    font-size: 15px;
}

.oe-empty p {
    margin: 0;

    color: #64748b;

    font-size: 12px;
    line-height: 1.5;
}


/* CTA */

.oe-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 20px;
    padding: 20px 24px;

    border-radius: 12px;

    background: #0f2a44;

    color: #ffffff;
}

.oe-cta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.oe-cta strong {
    font-size: 15px;
}

.oe-cta span {
    color: #cbd5e1;

    font-size: 12px;
}

.oe-cta a {
    flex-shrink: 0;

    padding: 11px 18px;

    border-radius: 7px;

    background: #f97316;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.oe-cta a:hover {
    background: #ea580c;
}


/* Tablet */

@media (max-width: 800px) {

    .offers-events-grid {
        grid-template-columns: 1fr;
    }

}
/* Homepage Events */

.homepage-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.homepage-event-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: 100%;
    padding: 10px !important;
    border: 1px solid #e2e8ef;
    border-radius: 12px;
    background: #fff;
    text-decoration: none !important;
    color: inherit !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.homepage-event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 50, 77, 0.08);
}

.homepage-event-image {
    position: relative;
    flex: 0 0 125px !important;
    width: 125px !important;
    height: 125px !important;
    border-radius: 9px;
    overflow: hidden;
    background: #edf2f6;
}

.homepage-event-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.homepage-event-placeholder {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.homepage-event-featured {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 4px 7px;
    border-radius: 5px;
    background: #ff7118;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.homepage-event-content {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    padding: 8px 8px 8px 0 !important;
    color: #17324d !important;
    text-align: left !important;
}

.homepage-event-type {
    display: inline-block !important;
    margin-bottom: 5px;
    color: #ff7118 !important;
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
}

.homepage-event-content h4 {
    display: block !important;
    margin: 0 0 8px !important;
    color: #17324d !important;
    font-size: 17px !important;
    line-height: 1.3 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.homepage-event-date {
    display: block !important;
    margin-bottom: 6px;
    color: #ff7118 !important;
    font-size: 13px !important;
    font-weight: 700;
    line-height: 1.4 !important;
    visibility: visible !important;
}

.homepage-event-location {
    display: block !important;
    color: #718396 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    visibility: visible !important;
}

@media (max-width: 600px) {

    .homepage-event-card {
        gap: 10px !important;
    }

    .homepage-event-image {
        flex: 0 0 90px !important;
        width: 90px !important;
        height: 90px !important;
    }

    .homepage-event-content h4 {
        font-size: 15px !important;
    }

}
/* Mobile */

@media (max-width: 600px) {

    .oe-empty {
        align-items: flex-start;
    }

    .oe-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .oe-cta a {
        width: 100%;
        text-align: center;
    }

}
/* Homepage Offers */

.homepage-offers-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.homepage-offer-card {
    display: flex;
    gap: 14px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.homepage-offer-image {
    position: relative;
    width: 105px;
    min-width: 105px;
    height: 105px;
    overflow: hidden;
    border-radius: 10px;
    background: #f1f5f9;
}

.homepage-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage-offer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.homepage-offer-featured {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #fff7ed;
    color: #ea580c;
    font-size: 9px;
    font-weight: 800;
}

.homepage-offer-content {
    flex: 1;
    min-width: 0;
}

.homepage-offer-title {
    margin-bottom: 5px;
    color: #102a43;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.homepage-offer-business {
    margin-bottom: 7px;
    color: #64748b;
    font-size: 13px;
}

.homepage-offer-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.homepage-offer-price {
    color: #15803d;
    font-size: 17px;
    font-weight: 900;
}

.homepage-offer-discount {
    padding: 4px 7px;
    border-radius: 6px;
    background: #fff7ed;
    color: #ea580c;
    font-size: 11px;
    font-weight: 800;
}

.homepage-offer-location {
    margin-top: 7px;
    color: #64748b;
    font-size: 12px;
}

@media (max-width: 600px) {

    .homepage-offer-image {
        width: 85px;
        min-width: 85px;
        height: 85px;
    }

    .homepage-offer-title {
        font-size: 15px;
    }

}
/* =========================
   FINAL CTA
========================= */

.final-cta-section {
    padding: 55px 0;
    background: #ffffff;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    padding: 42px 48px;

    border-radius: 18px;

    background: #0f2a44;
    color: #ffffff;

    overflow: hidden;
    position: relative;
}

.final-cta::after {
    content: "";

    position: absolute;
    width: 260px;
    height: 260px;

    right: -100px;
    top: -120px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.final-cta-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.final-cta-content .section-label {
    margin-bottom: 10px;
}

.final-cta-content h2 {
    margin: 0 0 10px;

    font-size: 34px;
    line-height: 1.15;

    color: #ffffff;
}

.final-cta-content h2 span {
    color: #f97316;
}

.final-cta-content > p:last-child {
    margin: 0;

    color: #cbd5e1;

    font-size: 14px;
    line-height: 1.6;
}

.final-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    position: relative;
    z-index: 1;
}

.cta-primary,
.cta-secondary {
    padding: 13px 19px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}

.cta-primary {
    background: #f97316;
    color: #ffffff;
}

.cta-primary:hover {
    background: #ea580c;
}

.cta-secondary {
    border: 1px solid rgba(255,255,255,.25);

    color: #ffffff;
}

.cta-secondary:hover {
    background: rgba(255,255,255,.08);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #081b2d;
    color: #ffffff;

    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1fr;
    gap: 45px;

    padding-bottom: 40px;
}


/* Brand */

.footer-logo {
    display: inline-block;

    margin-bottom: 12px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 800;
}

.footer-logo span {
    color: #f97316;
}

.footer-brand > p {
    max-width: 330px;

    margin: 0 0 14px;

    color: #94a3b8;

    font-size: 13px;
    line-height: 1.6;
}

.footer-tagline {
    color: #f97316;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* Columns */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;
}

.footer-column a {
    color: #94a3b8;

    font-size: 12px;

    transition: color .2s ease;
}

.footer-column a:hover {
    color: #f97316;
}


/* Bottom */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
    margin: 0;

    color: #64748b;

    font-size: 11px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .final-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 32px 25px;
    }

    .final-cta-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media (max-width: 600px) {

    .final-cta-content h2 {
        font-size: 28px;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

}
/* =========================
   BUSINESS DIRECTORY
========================= */

.business-directory {
    background: #fffaf5;
}


/* Hero */

.directory-hero {
    padding: 65px 0 45px;

    background: #f5f8fc;

    border-bottom: 1px solid #e2e8f0;
}

.directory-hero h1 {
    margin: 8px 0 10px;

    color: #0f2a44;

    font-size: 42px;
    line-height: 1.15;
}

.directory-hero h1 span {
    color: #f97316;
}

.directory-subtitle {
    margin: 0;

    color: #64748b;

    font-size: 15px;
}


/* Search */

.directory-search {
    display: flex;

    max-width: 900px;

    margin-top: 28px;

    padding: 6px;

    background: #ffffff;

    border: 1px solid #dbe3ec;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(15, 42, 68, .06);
}

.directory-search-input {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 15px;
}

.directory-search-input span {
    color: #64748b;

    font-size: 27px;

    line-height: 1;
}

.directory-search-input input {
    width: 100%;

    border: 0;
    outline: 0;

    color: #0f2a44;

    font-family: inherit;
    font-size: 14px;
}

.directory-search-input input::placeholder {
    color: #94a3b8;
}

.directory-search button {
    padding: 14px 28px;

    border: 0;
    border-radius: 8px;

    background: #f97316;

    color: #ffffff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.directory-search button:hover {
    background: #ea580c;
}


/* Directory section */

.directory-section {
    padding: 45px 0 70px;
}


/* Filters */

.directory-filters {
    display: flex;

    gap: 8px;

    margin-bottom: 35px;

    overflow-x: auto;

    padding-bottom: 5px;
}

.directory-filters a {
    flex-shrink: 0;

    padding: 9px 14px;

    border: 1px solid #dbe3ec;

    border-radius: 20px;

    background: #ffffff;

    color: #475569;

    font-size: 11px;
    font-weight: 600;

    transition: .2s ease;
}

.directory-filters a:hover {
    border-color: #f97316;

    color: #f97316;
}

.directory-filters a.active {
    border-color: #0f2a44;

    background: #0f2a44;

    color: #ffffff;
}


/* Results heading */

.directory-results-heading {
    display: flex;
    justify-content: space-between;

    margin-bottom: 22px;
}

.directory-results-heading h2 {
    margin: 0 0 5px;

    color: #0f2a44;

    font-size: 23px;
}

.directory-results-heading h2 span {
    color: #f97316;
}

.directory-results-heading p {
    margin: 0;

    color: #64748b;

    font-size: 12px;
}


/* Grid */

.directory-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* Card */

.directory-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe6ee;

    border-radius: 14px;

    box-shadow: 0 7px 22px rgba(15, 42, 68, .05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.directory-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 14px 30px rgba(15, 42, 68, .10);
}


/* Image */

.directory-card-image {
    position: relative;

    height: 210px;

    overflow: hidden;

    background: #0f2a44;
}

.directory-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .3s ease;
}

.directory-card:hover .directory-card-image img {
    transform: scale(1.03);
}


/* Placeholder */

.directory-placeholder {
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #0f2a44;

    color: #ffffff;
}

.directory-placeholder strong {
    color: #f97316;

    font-size: 42px;
    line-height: 1;
}

.directory-placeholder span {
    margin-top: 10px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;
}


/* Featured */

.directory-featured {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 8px 11px;

    border-radius: 6px;

    background: #f97316;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
}


/* Content */

.directory-card-content {
    padding: 20px;
}

.directory-category {
    margin: 0 0 7px;

    color: #f97316;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.directory-card-content h3 {
    margin: 0 0 9px;

    color: #0f2a44;

    font-size: 19px;
    line-height: 1.3;
}

.directory-description {
    min-height: 37px;

    margin: 0 0 13px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.5;
}


/* Location */

.directory-location {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 17px;

    color: #64748b;

    font-size: 11px;
}

.directory-location span:first-child {
    font-size: 13px;
}


/* Actions */

.directory-actions {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 7px;
}

.directory-actions a {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 700;
}

.directory-call {
    background: #0f2a44;

    color: #ffffff;
}

.directory-whatsapp {
    background: #e9f8f0;

    color: #087f4f;
}

.directory-view {
    background: #fff0e6;

    color: #ea580c;
}


/* Empty */

.directory-empty {
    padding: 65px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;
}

.directory-empty-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 15px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #fff0e6;

    font-size: 26px;
}

.directory-empty h3 {
    margin: 0 0 7px;

    color: #0f2a44;

    font-size: 19px;
}

.directory-empty p {
    margin: 0 0 15px;

    color: #64748b;

    font-size: 13px;
}

.directory-empty a {
    color: #2563eb;

    font-size: 12px;
    font-weight: 700;
}


/* Tablet */

@media (max-width: 1000px) {

    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 650px) {

    .directory-hero {
        padding: 45px 0 35px;
    }

    .directory-hero h1 {
        font-size: 32px;
    }

    .directory-search {
        flex-direction: column;
        gap: 6px;
    }

    .directory-search-input {
        min-height: 48px;
    }

    .directory-search button {
        width: 100%;
    }

    .directory-grid {
        grid-template-columns: 1fr;
    }

    .directory-card-image {
        height: 220px;
    }

}
/* Claim Business Button */

.claim-business-btn {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 13px 18px;
    background: #f97316;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.2s ease;
}

.claim-business-btn:hover {
    background: #ea580c;
    color: #ffffff;
    transform: translateY(-1px);
}
/* =========================================
   Header Authentication Actions
   ========================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 14px;
}

.header-login,
.header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s ease;
}

/* Login */
.header-login {
    color: #0f2a44;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.header-login:hover {
    background: #e2e8f0;
    color: #0f2a44;
}

/* Register / Logout */
.header-register {
    color: #ffffff;
    background: #f97316;
    border: 1px solid #f97316;
}

.header-register:hover {
    background: #ea580c;
    border-color: #ea580c;
    color: #ffffff;
}

/* Dashboard */
.header-login[href*="dashboard"] {
    background: #0f2a44;
    color: #ffffff;
    border-color: #0f2a44;
}

.header-login[href*="dashboard"]:hover {
    background: #163b5d;
    color: #ffffff;
}

/* Admin Dashboard */
.header-login[href*="admin"] {
    background: #0f2a44;
    color: #ffffff;
    border-color: #0f2a44;
}

.header-login[href*="admin"]:hover {
    background: #163b5d;
    color: #ffffff;
}


/* Mobile Header */
@media (max-width: 900px) {

    .header-inner {
        flex-wrap: wrap;
    }

    .header-actions {
        margin-left: auto;
    }

}

@media (max-width: 700px) {

    .header-actions {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-login,
    .header-register,
    .header-button {
        padding: 9px 12px;
        font-size: 13px;
    }

}

/* =========================
   Reviews & Ratings
========================= */

.review-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    margin: 18px 0 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.review-average {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.review-average strong {
    font-size: 32px;
    color: #0f2a44;
}

.review-average span {
    font-size: 14px;
    color: #64748b;
}

.review-stars,
.review-item-stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 20px;
}

.review-count {
    font-size: 14px;
    color: #64748b;
}

.no-reviews {
    padding: 18px;
    margin: 18px 0 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #64748b;
}

.no-reviews p {
    margin: 0;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.review-item {
    padding: 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.review-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 5px;
}

.review-item-header strong {
    color: #0f2a44;
    font-size: 16px;
}

.review-item-stars {
    font-size: 16px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.review-date {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.review-text {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    white-space: normal;
}

.review-form-box {
    margin-top: 24px;
    padding: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.review-form-box h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #0f2a44;
}

.review-form-box p {
    color: #64748b;
    line-height: 1.6;
}

.review-form-box label {
    display: block;
    margin-top: 16px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #334155;
}

.review-form-box select,
.review-form-box textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    font: inherit;
    box-sizing: border-box;
}

.review-form-box textarea {
    resize: vertical;
    min-height: 120px;
}

.review-submit-btn {
    margin-top: 16px;
    padding: 11px 18px;
    border: 0;
    border-radius: 8px;
    background: #f97316;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.review-submit-btn:hover {
    background: #ea580c;
}

.review-login-box {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.review-login-box p {
    margin-top: 0;
    color: #64748b;
}

.review-login-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    background: #0f2a44;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.review-login-btn:hover {
    background: #163b5d;
}

@media (max-width: 700px) {

    .review-summary {
        flex-wrap: wrap;
        gap: 10px 15px;
    }

    .review-item-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .review-item-stars {
        font-size: 15px;
    }

    .review-form-box {
        padding: 18px;
    }
}
.review-message {
    padding: 12px 15px;
    margin-bottom: 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.review-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
}

.review-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}
/* Featured Business Ratings */

.business-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 8px 0 7px;
    font-size: 14px;
}

.business-rating .rating-stars {
    color: #f59e0b;
    font-size: 16px;
    line-height: 1;
}

.business-rating strong {
    color: #0f2a44;
    font-weight: 700;
}

.business-rating .rating-count {
    color: #64748b;
    font-size: 13px;
}

.business-rating.no-rating {
    color: #94a3b8;
    font-size: 13px;
}
/* Verified Business Badge */

.business-name-with-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    border-radius: 20px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}
.back-to-website {
    margin-top: 18px;
    text-align: center;
}

.back-to-website a {
    color: #0f2a44;
    font-weight: 700;
    text-decoration: none;
}

.back-to-website a:hover {
    color: #ff6b00;
    text-decoration: underline;
}

/* =========================
   OWNER PROPERTIES
========================= */

.property-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 22px 0;
}

.property-stat {
    padding: 14px 8px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    text-align: center;
}

.property-stat strong {
    display: block;
    color: #0f2a44;
    font-size: 21px;
    font-weight: 900;
}

.property-stat span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.property-owner-list {
    border-top: 1px solid #e2e8f0;
}

.property-owner-row {
    display: grid;
    grid-template-columns: minmax(200px, 2fr) 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
}

.property-owner-info h3 {
    margin: 0 0 8px;
    color: #0f2a44;
    font-size: 15px;
}

.property-owner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.property-owner-meta span {
    padding: 4px 8px;
    border-radius: 5px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.property-owner-price {
    color: #166534;
    font-size: 14px;
    font-weight: 900;
}

.property-status {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
}

.status-approved {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.status-sold {
    background: #e0e7ff;
    color: #3730a3;
}

.status-rented {
    background: #dbeafe;
    color: #1e40af;
}

.status-inactive {
    background: #e2e8f0;
    color: #475569;
}

.property-owner-actions {
    display: flex;
    gap: 7px;
}

.property-action {
    display: inline-block;
    padding: 7px 10px;
    border: 1px solid #dbe3ea;
    border-radius: 7px;
    background: #ffffff;
    color: #0f2a44;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.property-action:hover {
    border-color: #ff6b00;
    color: #ff6b00;
}

.property-owner-empty {
    padding: 35px 20px;
    text-align: center;
}

.property-owner-empty-icon {
    margin-bottom: 10px;
    font-size: 38px;
}

.property-owner-empty h3 {
    margin: 0 0 7px;
    color: #0f2a44;
}

.property-owner-empty p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 900px) {
    .property-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .property-owner-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .property-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-owner-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .property-owner-actions {
        margin-top: 4px;
    }
}
/* =========================================================
   HOME PROPERTIES
   ========================================================= */

.home-properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-property-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15, 42, 68, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 42, 68, 0.12);
}

.home-property-image {
    position: relative;
    display: block;
    height: 210px;
    background: #e2e8f0;
    overflow: hidden;
}

.home-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-property-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #0f2a44;
}

.home-property-placeholder strong {
    font-size: 30px;
}

.home-property-placeholder span {
    font-size: 12px;
    letter-spacing: 2px;
}

.home-property-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff7ed;
    color: #ea580c;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.home-property-content {
    padding: 20px;
}

.home-property-location {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.home-property-content h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.35;
}

.home-property-content h3 a {
    color: #0f2a44;
    text-decoration: none;
}

.home-property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.home-property-tags span {
    padding: 6px 9px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

.home-property-price {
    color: #15803d;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.home-property-button {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f97316;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 900px) {

    .home-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .home-properties-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   HOME JOBS
   ========================================================= */

.home-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-job-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15, 42, 68, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 42, 68, 0.12);
}

.home-job-content {
    padding: 24px;
}

.home-job-featured {
    display: inline-block;
    margin: 20px 20px 0;
    padding: 7px 12px;
    background: #fff7ed;
    color: #ea580c;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.home-job-company {
    margin-bottom: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.home-job-content h3 {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.35;
}

.home-job-content h3 a {
    color: #0f2a44;
    text-decoration: none;
}

.home-job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.home-job-details span {
    padding: 6px 9px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

.home-job-experience {
    margin-bottom: 14px;
    color: #64748b;
    font-size: 14px;
}

.home-job-salary {
    margin-bottom: 18px;
    color: #15803d;
    font-size: 19px;
    font-weight: 800;
}

.home-job-button {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f97316;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 900px) {

    .home-jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .home-jobs-grid {
        grid-template-columns: 1fr;
    }

}