:root {
    --primary-blue: #5b5bff;
    --light-blue: #deecf8;
    --orange: #ff7a00;
    --green: #2ea44f;
    --text-dark: #111;
    --text-gray: #6b7280;
    --border-light: #e5e7eb;
    --tag-bg: #fff3e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}

body {
    background: #ffffff;
    color: var(--text-dark);
}

.container,
.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

.container-custom {
    max-width: 1050px !important;
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-xxl {
        max-width: 1320px;
    }
}


/* ================= HEADER ================= */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 14px 32px;
    border-bottom: 1px solid var(--border-light);
    background: #fff;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    font-style: italic;
}

.logo span:first-child {
    color: #ff4800;
}

.logo span:last-child {
    color: #28ad35;
}

.header .location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0 !important;
    margin-right: auto;
}

.header .location .fa-location-dot {
    color: #000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-right .btn-primary {
    background: #5e53fe;
    font-size: 14px;
    border-radius: 5px;
}

.header-right .btn-outline {
    background-color: #f5f8ff;
    color: #0073ff;
    border-radius: 20px;
    padding: 8px 20px;
    border-color: #e0eaff;
}

.header-right .signup {
    padding: 8px 20px;
    background-color: #465fff;
    border-radius: 20px;
}

.btn-outline {
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid var(--primary-blue);
    background: #fff;
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
}


/* ================= HERO ================= */
.hero {
    background: linear-gradient(to bottom, #d6e5f4 64%, transparent 64%);
    padding: 50px 20px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #000000;
}

.mobile-heading {
    display: none;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.category-buttons button {
    background: #fff6e6;
    border: 1px solid #fdc689;
    padding: 9px 18px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    color: #000000;
}

.category-buttons button:hover {
    background-color: #fdc689;
}

/* ================= SEARCH BAR ================= */
.search-wrapper {
    max-width: 850px;
    margin: 0 auto 26px;
    background: #fff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.city-select {
    display: flex;
    align-items: start;
    gap: 0;
    padding: 10px 16px;
    border-right: 1px solid var(--border-light);
    font-weight: 700;
    white-space: nowrap;
    flex-direction: column;
}

.select-city-label {
    margin-left: 15px;
    font-size: 11px;
    color: #333;
    font-weight: 600;
}

.city-select .fa-location-dot {
    color: #000000;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 10px 10px 44px;
    font-size: 15px;
    color: #333;
}


.search-box input::placeholder {
    color: #979494;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #979494;
    pointer-events: none;
}

.search-btn {
    background: #5e53fe;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.mobile-Select-city {
    display: none !important;
}

/* ================= TAGS ================= */
.tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #fff6e6;
    border: 1px solid #f5e2c0;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    color: #666666;
    align-items: center;
    gap: 6px;
}

.mobile-logo {
    display: none;
}

/* ================= ICON COLORS ================= */
.fa-location-dot {
    color: #fdc689;
    font-size: 13px;
}

.fa-chevron-down {
    font-size: 11px;
    line-height: normal;
}

.share-wrapper {
    position: relative;
    display: inline-block;
}

.share-popup {
    position: absolute;
    top: 35px;
    right: 0;
    width: 120px;
    background: rgba(221, 221, 221, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    overflow: hidden;
}

.share-popup a {
    display: flex !important;
    align-items: center !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 8px 15px;
    gap: 8px;
    text-decoration: none;
    color: #2b4b5a !important;
    font-size: 12px !important;
    font-weight: 500;
    width: auto !important;
    height: auto !important;
    text-align: left !important;
    justify-content: flex-start !important;
}

.share-popup a:hover,
.share-popup a:hover i {
    background-color: #5e53fe !important;
    color: #fff !important;
}

.share-popup i {
    color: #2b4b5a !important;
    font-size: 14px;
    position: static !important;
    transform: none !important;
}




/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .header {
        gap: 25px;
    }

    .desktop-logo {
        width: 150px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .city-select {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .header {
        padding: 12px 16px;
    }
    .sort-by-txt span {
        display: none;
    }
}

/* ================= SECTION ================= */
.section {
    padding: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.section-header span {
    color: #0066cc;
    font-style: italic;
}

.view-all {
    color: #666666;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}

/* ================= VENTURE CARD ================= */
.venture-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin: 0 15px;
     margin: 0 10px;
}

.card-img {
    position: relative;
    height: 210px;
    height: 230px;
}

.card-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* BADGES */
.badges {
    position: absolute;
    top: 12px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    width: fit-content;
}

.verified {
    background: #28ad35;
}

.rera {
    background: #091e42;
}

.hmda {
    background: #e4736e;
}

.dtcp {
    background: #df976a;
}

.clear {
    background: #777e73;
}

/* IMAGE ICONS */
.img-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    backdrop-filter: blur(4px);
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}

.icon-item img {
    width: 16px;
    height: auto;
}

.icon-item.circle {
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.icon-item i {
    font-size: 12px;
    cursor: pointer;
}

.icon-item small {
    font-size: 12px;
    opacity: 0.9;
}

.venture-logo {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

/* PRICE */
.price-pill {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #9bf7d8;
    color: #000;
    padding: 6px 10px 6px 15px;
    border-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 700;
    font-size: 13px;
    text-align: right;
        line-height: 18px;
}

.price-pill span {
    display: block;
    font-size: 17px;
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    font-size: 16px;
    margin-bottom: 2px;
    color: #000000;
}

.builder {
    color: #495a6a;
    font-size: 13px;
    margin-bottom: 10px;
}

.location {
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 2px;
}

.location .fa-location-dot {
    color: #000000;
}

.desc {
    font-size: 13px;
    color: #495a6a;
    margin-bottom: 10px;
}

.details p {
    font-size: 13px;
    color: #495a6a;
    line-height: 1.6;
}

.details strong {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
}

.unit-price strong {
    font-size: 16px;
    font-weight: 700;
}

.card-footer {
    padding: 12px 14px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date {
    font-size: 11px;
    color: #666666;
    font-weight: 600;
}

.actions {
    display: flex;
    gap: 8px;
}

.chat-btn {
    border: 1px solid #93c5fd;
    color: #2563eb;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    background: #f3f3ff;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-btn .fa-whatsapp {
    color: #67c15e;
    font-size: 18px;
}

.contact-btn {
    background: #0056b2;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
}

.contact-btn:hover {
    background: #465fff;
}

.chat-btn:hover,
.chat-btn:hover i {
    color: #ffffff;
    background-color: #22c55e;
}

.slick-list {
    margin: 0 -15px;
    padding-bottom: 20px;
    /* cancels edge gap */
}

/* SLICK ARROWS */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: #2563eb;
    opacity: 1;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:hover,
.slick-next:hover {
    background: #2563eb;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: white;
}

@media (max-width: 768px) {
    .section {
        padding: 20px;
    }

    .card-img {
        height: 180px;
    }
}

/* ================= LANDBIT SECTION ================= */
.landbit-section {
    padding: 40px 0px;
}

.landbit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.landbit-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.landbit-header span {
    color: #0066cc;
    font-style: italic;
}

.landbit-viewall {
    color: #0066cc;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}

/* ================= LANDBIT CARD ================= */
.landbit-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin: 0 10px;
}

.landbit-img {
    position: relative;
    height: 210px;
}

.landbit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGES */
.landbit-badges {
    position: absolute;
    top: 12px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.landbit-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.landbit-badge i {
    color: #22c55e;
}

.landbit-badge.verified {
    background: #28ad35;
    color: #fff;
}

.landbit-badge.verified i {
    color: #fff;
}

/* LANDBIT ICONS – SAME AS IMAGE ICONS */
.landbit-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    /* same as img-icons */
    color: #fff;
    font-size: 14px;
}

/* Reuse same icon-item styles */
.landbit-icons .icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    backdrop-filter: blur(4px);
    font-size: 12px;
}

.landbit-icons .icon-item.circle {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
}

.landbit-icons .icon-item i {
    font-size: 12px;
    cursor: pointer;
}

.landbit-icons .icon-item small {
    font-size: 12px;
    opacity: 0.9;
}

.landbit-icons .icon-item img {
    width: 16px;
    height: auto;
}

/* PRICE */
.landbit-price {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #9bf7d8;
    color: #000;
    padding: 6px 10px 6px 15px;
    border-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 700;
    font-size: 13px;
    text-align: right;
    line-height: 18px;
    
}

.landbit-price span {
    display: block;
    font-size: 17px;
}

.landbit-body {
    padding: 14px;
}

.landbit-body h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #000000;
}

.landbit-location {
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 2px;
}

.landbit-location .fa-location-dot {
    color: #000000;
}

.landbit-desc {
    font-size: 13px;
    color: #495a6a;
    margin-bottom: 10px;
}

.landbit-details p {
    font-size: 13px;
    color: #495a6a;
    line-height: 1.6;
}

.landbit-details strong {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
}

.landbit-details .unit-price strong {
    font-size: 16px;
    font-weight: 700;
}

.landbit-footer {
    padding: 12px 14px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landbit-date {
    font-size: 11px;
    color: #666666;
    font-weight: 600;
}

.landbit-actions {
    display: flex;
    gap: 8px;
}

.landbit-chat {
    border: 1px solid #93c5fd;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    background: #f3f3ff;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.landbit-chat .fa-whatsapp {
    color: #67c15e;
    font-size: 18px;
}

.landbit-contact {
    background: #0056b2;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
}

.landbit-contact:hover {
    background: #465fff;
}

.landbit-chat:hover,
.landbit-chat:hover i {
    color: #ffffff;
    background-color: #22c55e;
}


@media (max-width: 768px) {
    .landbit-section {
        padding: 20px;
    }

    .landbit-img {
        height: 180px;
    }
}

/* ================= FARMLAND SECTION ================= */
.farmland-section {
    padding: 0 0 40px 0px;
}

.farmland-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.farmland-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.farmland-header span {
    color: #0066cc;
    font-style: italic;
}

.farmland-viewall {
    color: #0066cc;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}

/* ================= FARMLAND CARD ================= */
.farmland-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin: 0 10px;
}

.farmland-img {
    position: relative;
    height: 210px;
}

.farmland-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGES */
.farmland-badges {
    position: absolute;
    top: 12px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.farmland-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.farmland-badge i {
    color: #22c55e;
}

.farmland-badge.verified {
    background: #28ad35;
    color: #fff;
}

.farmland-badge.verified i {
    color: #fff;
}

/* IMAGE ICONS */
.farmland-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.farmland-icons .icon-item img {
    width: 16px;
    height: auto;
}

/* PRICE */
.farmland-price {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #9bf7d8;
    color: #000;
    padding: 6px 10px 6px 15px;
    border-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 700;
    font-size: 13px;
    text-align: right;
        line-height: 18px;
}

.farmland-price span {
    display: block;
    font-size: 17px;
}

/* ================= BODY ================= */
.farmland-body {
    padding: 14px;
}

.farmland-body h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #000000;
}

.farmland-location {
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 2px;
}

.farmland-location .fa-location-dot {
    color: #000000;
}

.farmland-desc {
    font-size: 13px;
    color: #495a6a;
    margin-bottom: 10px;
}

.farmland-details p {
    font-size: 13px;
    color: #495a6a;
    line-height: 1.6;
}

.farmland-details strong {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
}

.farmland-details .unit-price strong {
    font-size: 16px;
    font-weight: 700;
}

/* ================= FOOTER ================= */
.farmland-footer {
    padding: 12px 14px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.farmland-date {
    font-size: 11px;
    color: #666666;
    font-weight: 600;
}

.farmland-actions {
    display: flex;
    gap: 8px;
}

.farmland-chat {
    border: 1px solid #93c5fd;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    background: #f3f3ff;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.farmland-chat .fa-whatsapp {
    color: #67c15e;
    font-size: 18px;
}

.farmland-contact {
    background: #0056b2;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
}

.farmland-contact:hover {
    background: #465fff;
}

.farmland-chat:hover,
.farmland-chat:hover i {
    color: #ffffff;
    background-color: #22c55e;
}


@media (max-width: 768px) {
    .farmland-section {
        padding: 20px;
    }

    .farmland-img {
        height: 180px;
    }
}


.footer {
    background-color: #183153;
    padding: 40px 0;
}

.footer .footer-inner {
    max-width: 1277px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-inner .footer-indo {
    width: 35%;
}

.footer .footer-inner .footer-indo h5 {
    font-size: 28px;
    letter-spacing: -1px;
    color: #f3f4f5;
    font-weight: 500;

    margin-bottom: 15px;
}

.footer .footer-inner .footer-indo h5 span {
    color: #0066ff;
}

.footer .footer-inner .footer-indo p {
    font-size: 14px;
    line-height: 23px;
    color: #afafaf;
    font-weight: 400;
    margin-bottom: 0;
}

.footer .footer-inner .footer-services {
    width: 15%;
}

.footer .footer-inner .footer-services h6 {
    font-size: 15px;
    color: #f7f4f4;
    font-weight: 500;
    margin-bottom: 15px
}

.footer .footer-inner .footer-services ul {
    margin-bottom: 0;
    list-style: none;
}

.footer .footer-inner .footer-services ul li a {
    font-size: 14px;
    line-height: 26px;
    color: #afafaf;
    font-weight: 400;
    text-decoration: none;
}

.footer .footer-inner .footer-services ul li a:hover {
    color: #0066ff;
}

.footer .footer-inner .footer-company {
    width: 15%;
}

.footer .footer-inner .footer-company h6 {
    font-size: 15px;
    color: #f7f4f4;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer .footer-inner .footer-company .line {
    width: 123px;
    height: 1px;
    background-color: #d1cfcf;
    margin: 20px 0;
}

.footer .footer-inner .footer-company ul {
    margin-bottom: 0;
    list-style: none;
}

.footer .footer-inner .footer-company ul li a {
    font-size: 14px;
    line-height: 26px;
    color: #afafaf;
    font-weight: 400;
    text-decoration: none;
}

.footer .footer-inner .footer-company ul li a:hover {
    color: #0066ff;
}

.footer .footer-inner .footer-download {
    width: 17%;
}

.footer .footer-inner .footer-download h6 {
    font-size: 15px;
    color: #f7f4f4;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer .footer-inner .footer-download .footer-app-img {
    margin-bottom: 25px;
    display: flex;
}

.footer .footer-inner .footer-download .footer-app-img a {
    width: 50%;
}

.footer .footer-inner .footer-download .footer-app-img a img {
    width: 100%;
}

.footer .footer-inner .footer-download .footer-app-img a:first-child {
    margin-right: 12px;
}

.footer .footer-inner .footer-download ul {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: baseline;
    margin-bottom: 20px;
}

.footer .footer-inner .footer-download ul li a {
    color: #fff;
    font-size: 20px;
}

.footer .footer-inner .footer-download .write {
    margin-bottom: 15px;
}

.footer .footer-inner .footer-download .write p {
    font-size: 14px;
    color: #afafaf;
    line-height: normal;
    font-weight: 400;

    margin-bottom: 0;
}

.footer .footer-inner .footer-download .write a {
    font-size: 14px;
    color: #f7f4f4;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
    display: block;
}

.footer-bottom {
    background-color: #364253;
}

.footer-bottom .footer-bottom-inner {
    max-width: 1277px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    font-size: 14px;
    line-height: 26px;
    color: #afafaf;
    font-weight: 400;

    padding: 20px 0;
}

@media (max-width:767px) {

    .footer .footer-inner {
        flex-wrap: wrap
    }

    .footer .footer-inner .footer-indo {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer .footer-inner .footer-services {
        width: 50%;
        margin-bottom: 30px;
    }

    .footer .footer-inner .footer-company {
        width: 45%;
        margin-bottom: 30px;
    }

    .footer .footer-inner .footer-download {
        width: 100%;
    }

    .footer .footer-inner .footer-download .footer-app-img {
        width: 65%;
    }
}

/* ================= DROPDOWN STYLES ================= */
.location-dropdown,
.city-select-dropdown {
    position: relative;
    cursor: pointer;
    margin-right: auto;
}

.city-select-dropdown {
    display: flex;
    align-items: start;
    gap: 0;
    padding: 10px 16px;
    border-right: 1px solid var(--border-light);
    font-weight: 700;
    white-space: nowrap;
    flex-direction: column;
    min-width: 150px;
}

.location-trigger,
.city-select-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.location-trigger .fa-location-dot,
.city-select-trigger .fa-location-dot {
    color: #000;
}

#selected-search-city {
    font-size: 16px;
    font-weight: 700;
}

.dropdown-content {
    position: absolute;
    top: 200%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.city-select-dropdown .dropdown-content {
    top: 100%;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 8px 16px;
    display: flex;
    font-size: 14px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: var(--text-dark);
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:hover i {
    background-color: #f0f7ff;
    color: var(--primary-blue);
}

.dropdown-item i {
    color: #000000;
    font-size: 14px;
}

/* ================= ENHANCED DROPDOWN STYLES ================= */
.dropdown-search {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.dropdown-search i {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 14px;
}

.city-search-input {
    width: 100%;
    padding: 10px 16px 10px 36px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.city-search-input:focus {
    border-color: var(--primary-blue);
}

.leading-cities-section {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
}

.leading-cities-section h6 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.leading-cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.leading-city-item {
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leading-city-item i {
    color: #5b5bff;
}

.leading-city-item:hover {
    color: #5b5bff;
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.all-cities-list {
    max-height: 200px;
    overflow-y: auto;
}

.city-item {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
}

.city-item:hover {
    background-color: #f0f7ff;
    color: var(--primary-blue);
}

.city-item:before {
    content: "•";
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 18px;
}

.no-results {
    padding: 20px 16px;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
}

/* Update dropdown content width */
/* .dropdown-content {
    min-width: 280px;
    max-width: 320px;
} */

/* Update existing header location styles */
.header .location {
    display: none;
}

/* ================= MODAL STYLES ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    /* max-height: 90vh; */
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#signup-modal {
    max-width: 650px;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background-color: #f5f5f5;
    color: var(--text-dark);
}

.modal-body {
    padding: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 4px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
}

.checkbox input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--border-light);
}

.forgot-password {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.modal-btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.modal-btn-primary:hover {
    background: #4a4aff;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--text-gray);
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.divider span {
    padding: 0 12px;
}

.social-login {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-light);
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.social-btn.google:hover {
    border-color: #DB4437;
    color: #DB4437;
}

.social-btn.facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.modal-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.modal-footer p {
    color: var(--text-gray);
    font-size: 14px;
}

.modal-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Password Strength Meter */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 30%;
    background: #ef4444;
    border-radius: 2px;
    transition: all 0.3s;
}

.strength-text {
    font-size: 12px;
    color: var(--text-gray);
}

/* Gallery Modal Specific Styles */
.gallery-modal {
    max-width: 800px;
}

.gallery-main {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-blue);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    text-align: center;
}

.gallery-info h4 {
    margin-bottom: 4px;
    color: var(--text-dark);
}

.gallery-info p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Video Modal Specific Styles */
.video-modal {
    max-width: 800px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    text-align: center;
}

.video-info h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.video-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Update Card Icon Styles */
.img-icons span.icon-item {
    cursor: pointer;
    transition: all 0.3s;
}

.img-icons span.icon-item:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}


/* Sidebar Styles */
.user-profile-sidebar {
    position: fixed;
    top: 0;
    right: -360px;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    z-index: 99999;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
}

.user-profile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.user-profile-sidebar.active .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-content {
    position: relative;
    width: 100%;
    max-width: 360px;
    background-color: #fff;
    color: white;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #9680d5 #f9fafb;
}

.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 5px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: #9680d5;
    border-radius: 5px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #9680d5;
}

/* Sidebar Header */
.sidebar-header {
    padding: 15px 25px;
    background: #ffffff;
    border-bottom: 1px solid #e9ebec;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.user-image {
    width: 50px;
    height: 50px;
    overflow: hidden;
    background-color: #cccccc;
    border-radius: 100%;
}

.user-sidebar-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5b5bff;
    box-shadow: 0 4px 15px rgba(91, 91, 255, 0.3);
}

.user-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #0033ff;
}

.user-info p {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(91, 91, 255, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.sidebar-close {
    background-color: #ffffff;
    border: 2px solid #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Sidebar Body */
.sidebar-body {
    flex: 1;
}

.sidebar-footer {
    background-color: #e7e7ff;
    padding: 30px 25px;
}

.sidebar-footer ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.sidebar-footer ul li {
    list-style: none;
}

.sidebar-footer ul li a {
    font-weight: 500;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.sidebar-footer .company-info p {
    font-weight: 500;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

.sidebar-footer ul li a:hover {
    color: #000;
}

/* Menu Sections */

.section-header {
    margin-bottom: 15px;
}

.section-desc {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 5px;
    line-height: 1.5;
}

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ebec;
}

.menu-item:hover {
    background-color: #d6e4ea;
    font-weight: 700;
}

.menu-item img {
    width: 25px;
    height: auto;
}

.city-search {
    position: relative;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

.city-search input {
    width: 100%;
    padding: 10px 36px 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.city-search i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .user-profile-sidebar {
        max-width: 100%;
        right: -100%;
    }

    .user-profile-sidebar.active {
        right: 0;
    }

    .sidebar-content {
        max-width: 100%;
    }

    .sidebar-header {
        padding: 20px;
    }



    .sidebar-footer {
        padding: 20px;
    }

    .user-sidebar-avatar {
        width: 60px;
        height: 60px;
    }

    .membership-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .user-profile-trigger {
        padding: 6px 12px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
    }



    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .divider {
        display: none;
    }

    .company-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .modal {
        width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .gallery-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
    }

    .thumbnail {
        width: 70px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 20px 16px 16px;
    }

    .modal-body {
        padding: 20px 16px;
    }

    .social-login {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .logo {
        flex-direction: column;
        font-size: 12px;
        line-height: 1;
    }

    #signup-btn {
        display: none !important;
    }

    .header-right .btn-primary {
        font-size: 12px;
        padding: 8px;
    }

    .header-right .btn-primary span {
        display: none;
    }

    .hero h1 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .location-dropdown #selected-location {
        width: 55px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .location-trigger .fa-location-dot {
        display: none;
    }

    .city-select-dropdown {
        width: 100%;
        border-right: 0;
    }

    .city-select-trigger {
        width: 100%;
        justify-content: center;
    }

    .select-city-label {
        display: none;
    }

    .search-wrapper {
        border-radius: 30px;
        padding: 5px 8px;
        margin: 0 auto 20px;
    }

    .search-btn {
        padding: 12px 20px;
    }


    .hero {
        background: linear-gradient(to bottom, #d6e5f4 64%, transparent 90%);
        padding: 30px 20px 20px;
        margin-top: 57px;
    }

    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }

    .city-select-dropdown .dropdown-content {
        left: 0;
        right: 0;
    }

    .header-right {
        gap: 20px;
    }

    .header-right .btn-outline {
        padding: 6px 12px;
        font-size: 13px;
    }

    .user-login {
        display: block;
    }

    .user-login img {
        width: 30px;
        height: auto;
    }

    .bell_noti img {
        width: 18px;
        height: auto;
    }

    .bell_noti p {
        font-size: 10px !important;
        height: 15px !important;
        width: 20px !important;
    }

    .tags {
        flex-wrap: nowrap;
        overflow: scroll;
        justify-content: flex-start;
    }

    .tags {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .tags::-webkit-scrollbar {
        display: none;
    }

    .location-dropdown .dropdown-content {
        width: 100%;
        left: 0;
        right: 0;
        position: fixed;
        top: 57px;
    }

    #signup-modal {
        max-height: 90vh;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .actions,
    .landbit-actions,
    .farmland-actions {
        width: 100%;
    }

    .chat-btn,
    .contact-btn,
    .landbit-chat,
    .landbit-contact,
    .farmland-chat,
    .farmland-contact {
        flex: 1;
        width: 100%;
        justify-content: center;
    }

    .date,
    .landbit-date,
    .farmland-date {
        display: none;
    }

    .mobile-Select-city {
        display: block !important;
        margin-bottom: 12px;
    }

    .mobile-Select-city .fa-location-dot {
        font-size: 18px;
    }

    .desktop-select-city {
        display: none;
    }

    .desktop-heading {
        display: none;
    }

    .mobile-heading {
        display: block;
    }

    .category-buttons {
        gap: 6px;
    }

    .category-buttons button {
        background-color: #fff6e6;
        font-size: 12px;
        color: #000000;
        border-radius: 10px;
        border-color: #fdc689;
    }

    .category-buttons button:hover {
        background-color: #fdc689;
    }

    .category-buttons button:nth-child(2) {
        max-width: 146px;
    }

    .header {
        gap: 15px;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 9999;
    }

    .farmland-header span,
    .landbit-header span,
    .section-header span {
        display: none;
    }

}