 :root {
            --brand-green: #0F8341;
            --brand-blue: #034789;
            --brand-green-dark: #0a5c2d;
            --brand-blue-dark: #022e5a;
            --light-bg: #f8fafc;
        }

        body {
            background: var(--light-bg);
            color: #0f172a;
        }

        /* =========================
           HERO
        ========================= */

        .hero-bg {
            background:
                linear-gradient(
                    rgba(3, 71, 137, 0.75),
                    rgba(15, 131, 65, 0.75)
                ),
                url('https://adforx.com/images/adforxbg.png')
                center/cover no-repeat;
        }

        /* =========================
           BRAND COLORS
        ========================= */

        .text-brand-blue {
            color: var(--brand-blue) !important;
        }

        .text-brand-green {
            color: var(--brand-green) !important;
        }

        .bg-brand-blue {
            background-color: var(--brand-blue) !important;
        }

        .bg-brand-green {
            background-color: var(--brand-green) !important;
        }

        .btn-brand-blue {
            background-color: var(--brand-blue);
            border-color: var(--brand-blue);
            color: #fff;
        }

        .btn-brand-blue:hover {
            background-color: var(--brand-blue-dark);
            border-color: var(--brand-blue-dark);
            color: #fff;
        }

        .btn-brand-green {
            background-color: var(--brand-green);
            border-color: var(--brand-green);
            color: #fff;
        }

        .btn-brand-green:hover {
            background-color: var(--brand-green-dark);
            border-color: var(--brand-green-dark);
            color: #fff;
        }

        /* =========================
           HEADER
        ========================= */

        .main-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--brand-green);
            color: #fff;
            border-radius: 9px;
            font-size: 20px;
        }

        .logo-text {
            font-size: 25px;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: var(--brand-blue);
        }

        .logo-text span {
            color: var(--brand-green);
        }

        .auth-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f3f4f6;
            color: var(--brand-blue);
            border: 1px solid #e5e7eb;
            transition: all 0.2s ease;
        }

        .auth-btn:hover {
            background: var(--brand-blue);
            color: #fff;
        }

        /* =========================
           HERO CONTENT
        ========================= */

        .hero-section {
            padding: 80px 0;
        }

        .hero-title {
            font-size: 46px;
            font-weight: 800;
            line-height: 1.15;
            text-shadow: 0 2px 5px rgba(0,0,0,0.25);
        }

        .hero-subtitle {
            font-size: 18px;
            color: #f1f5f9;
        }

        .filter-box {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 20px 45px rgba(0,0,0,0.20);
        }

        .filter-label {
            display: block;
            font-size: 11px;
            font-weight: 800;
            color: var(--brand-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .filter-control {
            background: #f8fafc;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            min-height: 43px;
            font-size: 14px;
        }

        .filter-control:focus {
            border-color: var(--brand-green);
            box-shadow: 0 0 0 0.2rem rgba(15,131,65,0.15);
        }

        /* =========================
           LISTING
        ========================= */

        .listing-section {
            padding: 45px 0;
        }

        .section-title {
            border-left: 4px solid var(--brand-green);
            padding-left: 12px;
            color: var(--brand-blue);
            font-size: 25px;
            font-weight: 700;
        }

        .listing-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .listing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px -10px rgba(3,71,137,0.25);
        }

        /* =========================
           IMAGE
        ========================= */

        .listing-image {
            position: relative;
            width: 256px;
            min-width: 256px;
            min-height: 280px;
            background: #f1f5f9;
        }

        .listing-image img {
            width: 100%;
            height: 100%;
            min-height: 280px;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .verified-badge {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(15,131,65,0.92);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        }

        /* =========================
           CARD CONTENT
        ========================= */

        .listing-content {
            padding: 20px;
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .listing-header {
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 12px;
            margin-bottom: 12px;
        }

        .listing-title {
            font-size: 21px;
            font-weight: 700;
            color: #111827;
            margin: 0;
        }

        .listing-user {
            color: var(--brand-green);
            font-size: 14px;
            font-weight: 600;
        }

        .verified-small {
            font-size: 10px;
            background: #ecfdf5;
            color: var(--brand-green);
            border: 1px solid rgba(15,131,65,0.3);
            padding: 2px 7px;
            border-radius: 4px;
        }

        .listing-description {
            color: #4b5563;
            font-size: 14px;
            line-height: 1.65;
            margin-bottom: 18px;
        }

        .attribute-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .attribute {
            display: inline-flex;
            align-items: center;
            background: #f1f3f5;
            color: #374151;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 9px;
            border-radius: 6px;
        }

        .attribute i {
            margin-right: 5px;
        }

        /* =========================
           ACTIONS
        ========================= */

        .listing-actions {
            border-top: 1px solid #f0f0f0;
            padding-top: 12px;
        }

        .call-btn {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: var(--brand-blue);
            color: #fff;
            text-decoration: none;
            transition: 0.2s;
        }

        .call-btn:hover {
            background: var(--brand-blue-dark);
            color: #fff;
        }

        .whatsapp-btn {
            background: #059669;
            color: #fff;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
        }

        .whatsapp-btn:hover {
            background: #047857;
            color: #fff;
        }

        .details-btn {
            background: #f3f4f6;
            color: #1f2937;
            border: 0;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            transition: all 0.2s;
        }

        .details-btn:hover {
            background: var(--brand-green);
            color: #fff;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 767.98px) {

            .hero-section {
                padding: 55px 0;
            }

            .hero-title {
                font-size: 30px;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .filter-box {
                padding: 16px;
                border-radius: 14px;
            }

            .section-title {
                font-size: 21px;
            }

            .listing-card {
                border-radius: 12px;
            }

            /*
             * Mobile card remains horizontal
             */
            .listing-image {
                width: 115px;
                min-width: 115px;
                min-height: 230px;
            }

            .listing-image img {
                min-height: 230px;
            }

            .listing-content {
                padding: 8px;
            }

            .listing-title {
                font-size: 15px;
                line-height: 1.25;
            }

            .listing-user {
                font-size: 11px;
            }

            .verified-small {
                font-size: 8px;
                padding: 2px 5px;
            }

            .listing-description {
                font-size: 11px;
                line-height: 1.45;
                margin-bottom: 10px;
            }

            .attribute-list {
                gap: 5px;
                margin-bottom: 10px;
            }

            .attribute {
                font-size: 9px;
                padding: 4px 6px;
            }

            .listing-actions {
                padding-top: 9px;
            }

            .call-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .whatsapp-btn {
                padding: 8px 10px;
                font-size: 10px;
            }

            .whatsapp-btn i {
                font-size: 14px;
            }

            .details-btn {
                padding: 7px 9px;
                font-size: 9px;
            }

            .verified-badge {
                left: 6px;
                bottom: 6px;
                font-size: 8px;
                padding: 4px 6px;
            }
        }

        @media (max-width: 575.98px) {

            .logo-text {
                font-size: 21px;
            }

            .logo-icon {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .post-ad-btn {
                padding: 7px 10px !important;
                font-size: 11px !important;
            }

            .auth-btn {
                width: 36px;
                height: 36px;
            }

            /*
             * Mobile image width
             */
            .listing-image {
                width: 105px;
                min-width: 105px;
            }

            /*
             * Keep content compact
             */
            .listing-header {
                gap: 4px;
            }

            .listing-user {
                white-space: nowrap;
            }
        }
        /* =========================
   FOOTER
========================= */

.site-footer {
    background: #022e5a;
    color: #fff;
    padding: 55px 0 0;
    margin-top: 30px;
}

.site-footer .logo-text {
    color: #fff;
}

.site-footer .logo-text span {
    color: #20a95c;
}

.footer-description {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
    max-width: 500px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #20a95c;
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 45px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.12);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    color: #94a3b8;
    font-size: 13px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    color: #fff;

    text-decoration: none;

    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--brand-green);
    color: #fff;
    transform: translateY(-2px);
}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: var(--brand-green);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    box-shadow: 0 5px 18px rgba(0,0,0,0.2);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: all 0.3s ease;

    z-index: 1040;
}

.back-to-top:hover {
    background: var(--brand-green-dark);
    transform: translateY(-3px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================
   MOBILE FOOTER
========================= */

@media (max-width: 575.98px) {

    .site-footer {
        padding-top: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 15px;
    }
}

.site-logo {
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .site-logo {
        height: 36px;
        max-width: 150px;
    }
}