/* ========================== GOBOOK.NG - EXACT AIRBNB SPACING ========================== */

/* ========================== GLOBAL ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FFFFFF;
    color: #222222;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

/* ========================== HEADER ========================== */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #EBEBEB;
    padding: 12px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 200;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.header-content {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #FF385C;
    text-decoration: none;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}
.logo:hover { color: #E31C5F; }

.logo:hover {
    color: #E31C5F;
}

.top-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.become-host {
    color: #222222;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 20px;
    text-decoration: none;
    background: #F7F7F7;
    transition: background 0.2s;
}

.become-host:hover {
    background: #EBEBEB;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #222222;
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #FF385C;
}

/* ========================== MOBILE MENU ========================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    transition: 0.5s ease-in-out;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #222222;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.language-selector {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #EBEBEB;
}

.language-header {
    padding: 12px 32px;
    font-weight: 700;
    font-size: 14px;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 8px;
}

.language-header:hover {
    background: #F7F7F7;
}

.language-header i:first-child {
    color: #FF385C;
    font-size: 16px;
}

.language-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.language-options.open {
    max-height: 500px;
    opacity: 1;
}

.language-option {
    width: 100%;
    padding: 16px 32px !important;
    color: #222222;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid #F7F7F7;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center;
    gap: 12px;
    position: relative;
}

.language-option .flag {
    font-size: 20px;
}

.language-option .checkmark {
    margin-left: auto;
    color: #FF385C;
    font-weight: 700;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.language-option.active .checkmark {
    opacity: 1;
}

.language-option.active {
    background: #FFF5F7;
    border-left: 4px solid #FF385C;
    padding-left: 28px !important;
}

.language-option:hover {
    background: #F7F7F7;
    padding-left: 36px !important;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-header-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 0 40px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > a {
        width: 100%;
        padding: 18px 32px;
        color: #222222;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        border-bottom: 1px solid #EBEBEB;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-links > a:hover {
        background: #F7F7F7;
        color: #FF385C;
        padding-left: 36px;
    }

    .nav-links > a i {
        font-size: 18px;
        width: 24px;
        text-align: center;
    }

    .nav-links::before {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 24px;
        font-size: 28px;
        color: #222222;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #F7F7F7;
        transition: all 0.2s ease;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }

    .language-selector {
        display: none;
    }
}

/* ========================== SECTIONS ========================== */
.section-title {
    padding: 0 16px;
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #222222;
    line-height: 1.2;
}

.slide-hint {
    display: none;
}

/* ========================== TOP CITIES ========================== */
.top-cities {
    max-width: 1400px;
    margin: 32px auto 20px;
    padding: 0 12px;
}

.top-cities .section-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #222222;
}

.top-cities .section-header p {
    font-size: 14px;
    color: #717171;
}

.cities-scroll-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 12px;
}

.cities-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 4px 0 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.cities-scroll::-webkit-scrollbar { display: none; }

.city-card {
    flex: 0 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 200px;
    text-decoration: none;
    color: #222222;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    scroll-snap-align: start;
}

.city-card:active {
    transform: scale(0.98);
}

.city-card-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.city-card-info {
    padding: 10px;
}

.city-card-info h3 {
    font-size: 15px;
    margin-bottom: 3px;
    font-weight: 600;
    color: #222222;
}

.city-card-info p {
    font-size: 13px;
    color: #717171;
}

/* ========================== SCROLL ROW ========================== */
.scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 16px 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

/* ========================== PROPERTY CARDS ========================== */
.property-card {
    min-width: 210px;
    max-width: 210px;
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: none;
    text-decoration: none;
    color: #222;
    position: relative;
    transition: transform 0.2s ease;
    scroll-snap-align: start;
    margin-bottom: 0;
}

.property-card:active {
    transform: scale(0.98);
}

.property-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 210px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

.property-card-image-wrapper img,
.property-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-card-image-wrapper img.lazy-loaded,
.property-card img.lazy-loaded {
    opacity: 1;
}

.property-card .property-info {
    padding: 0 2px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0px !important;
}

.property-card .property-name {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.1 !important;
    color: #222222;
    margin-bottom: 0px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.property-card .property-location {
    font-size: 14px;
    color: #717171;
    font-weight: 400;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    line-height: 1.1 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.property-price-section {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    margin-top: 2px !important;
}

.property-original-price {
    font-size: 12px;
    color: #dc3545;
    text-decoration: line-through;
    font-weight: 600;
    text-decoration-thickness: 2px;
    line-height: 1 !important;
    margin-bottom: 0px !important;
}

.property-card .property-price {
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    margin: 0 !important;
    display: flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1 !important;
}

.property-card .property-price .amount {
    color: #28a745 !important;
    font-weight: 700;
}

.property-card .property-price .night {
    font-weight: 400;
    color: #717171;
    font-size: 13px;
}

/* ========================== BADGES ========================== */
.instant-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFFFFF;
    color: #222222;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 9;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.property-card-image-wrapper .wishlist-btn i {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 2px white;
    transition: all 0.2s ease;
}

.property-card-image-wrapper .wishlist-btn:active {
    transform: scale(0.9);
}

.property-card-image-wrapper .wishlist-btn.active i {
    color: #FF385C;
    -webkit-text-stroke: 0;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.5);
    z-index: 8;
    animation: discountPulse 2s ease-in-out infinite;
}

@keyframes discountPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(255, 56, 92, 0.5); transform: scale(1); }
    50% { box-shadow: 0 6px 20px rgba(255, 56, 92, 0.8); transform: scale(1.05); }
}

.discount-badge i { font-size: 13px; }

.property-card-image-wrapper.has-discount .instant-badge { top: 48px !important; }
.property-card-image-wrapper.has-discount .views-badge { top: 90px !important; }
.property-card-image-wrapper.has-discount .booking-badge { top: 132px !important; }

/* ========================== NEW & RATING BADGES ========================== */
.new-property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FEBB02 0%, #F59E0B 100%);
    color: #000000;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(254, 187, 2, 0.4);
    z-index: 9;
    letter-spacing: 0.3px;
}

.rating-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #003B95;
    color: #FFFFFF;
    padding: 6px 10px;
    border-radius: 6px 6px 6px 0px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: 0 2px 8px rgba(0, 59, 149, 0.4);
    z-index: 9;
    min-width: 45px;
}

.rating-badge .rating-score {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.rating-badge .rating-text {
    font-size: 9px;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.property-rating-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.property-rating-score {
    background: #003B95;
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.property-rating-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.property-rating-text {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    line-height: 1.2;
}

.property-rating-count {
    font-size: 11px;
    color: #717171;
    line-height: 1.2;
}

.property-card-image-wrapper.has-new-badge .instant-badge { top: 48px !important; }
.property-card-image-wrapper.has-new-badge.has-discount .instant-badge { top: 90px !important; }

/* ========================== SEE ALL BUTTON ========================== */
.see-all-btn {
    min-width: 210px;
    max-width: 210px;
    height: 210px;
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.25);
    scroll-snap-align: start;
}

.see-all-btn:active { transform: scale(0.98); }

/* ========================== SUPERHOST / GUEST BADGES ========================== */
.guest-favorite-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFFFFF;
    color: #222222;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.18);
    z-index: 9;
}

.superhost-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 2px;
}

.superhost-mini-badge i {
    font-size: 11px;
    color: #FF385C;
}

/* ========================== FOOTER ========================== */
footer {
    background: #F7F7F7;
    color: #222222;
    padding: 32px 16px 20px;
    border-top: 1px solid #EBEBEB;
    margin-top: 32px;
}

.footer-content {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
}

.footer-section h3 {
    margin-bottom: 10px;
    color: #222222;
    font-weight: 600;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section ul li a {
    color: #717171;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 13px;
}

.footer-section ul li a:hover {
    color: #222222;
}

.footer-bottom {
    text-align: center;
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px solid #EBEBEB;
    color: #717171;
    font-size: 12px;
}

/* ========================== WHATSAPP BUTTON ========================== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    left: 16px;
    width: 48px;
    height: 48px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ========================== MOBILE BOTTOM NAV ========================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #ffffff;
   border-top: 1px solid #EBEBEB;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999999;
    box-shadow:0px -1px 6px rgba(0,0,0,0.08);
}

.mobile-bottom-nav .nav-item {
    text-align: center;
    color: #717171;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 20%;
    padding: 4px 0;
    font-weight: 500;
}

.mobile-bottom-nav .nav-item i {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

..mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: #FF385C;
}
/* ========================== FEATURED PROPERTIES ========================== */
.featured-properties {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
}

.section-header-featured {
    text-align: center;
    margin-bottom: 30px;
}

.section-header-featured h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 8px;
}

.section-header-featured p {
    font-size: 16px;
    color: #717171;
}

.featured-scroll {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 10px 0 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-scroll::-webkit-scrollbar { display: none; }

.featured-card {
    flex: 0 0 auto;
    width: 400px;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #222222;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.featured-card-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-image img { transform: scale(1.1); }

.featured-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

.featured-discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.4);
}

.featured-instant-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FFFFFF;
    color: #222222;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.featured-verified-badge {
    position: absolute;
    top: 68px;
    left: 16px;
    background: #28a745;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.featured-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.featured-wishlist-btn:hover { transform: scale(1.1); background: #FFFFFF; }
.featured-wishlist-btn i { font-size: 20px; color: #FF385C; }

.featured-card-content {
    padding: 12px !important;
}

.featured-property-name {
    font-size: 18px !important;
    font-weight: 700;
    color: #222222;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
}

.featured-location {
    color: #717171;
    font-size: 13px !important;
    margin-bottom: 4px !important;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1 !important;
}

.featured-location i { color: #FF385C; }

.featured-details {
    display: flex;
    gap: 12px !important;
    margin-bottom: 0px !important;
    margin-top: 2px !important;
    padding-bottom: 4px !important;
    border-bottom: 1px solid #EBEBEB;
}

.featured-details span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px !important;
    color: #717171;
    line-height: 1 !important;
}

.featured-details i { color: #222222; font-size: 14px; }

.featured-price-section {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    margin-top: 4px !important;
}

.featured-original-price {
    font-size: 13px;
    color: #dc3545;
    text-decoration: line-through;
    font-weight: 600;
    line-height: 1 !important;
    margin-bottom: 0px !important;
}

.featured-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1 !important;
}

.featured-amount {
    font-size: 22px !important;
    font-weight: 700;
    color: #28a745;
}

.featured-night { font-size: 13px; color: #717171; }

.featured-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #FFFFFF;
    border: 2px solid #EBEBEB;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.featured-arrow:hover {
    background: #FF385C;
    border-color: #FF385C;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 56, 92, 0.3);
}

.featured-arrow i { font-size: 1.5rem; color: #222222; }
.featured-arrow:hover i { color: #FFFFFF; }
.featured-arrow-left { left: -28px; }
.featured-arrow-right { right: -28px; }
.featured-arrow.hidden { opacity: 0; pointer-events: none; }

.no-featured { text-align: center; padding: 60px 20px; color: #717171; }
.no-featured i { font-size: 48px; margin-bottom: 16px; color: #EBEBEB; }

/* Featured card rating badge */
.featured-card .rating-badge {
    padding: 8px 12px;
    border-radius: 8px 8px 8px 0px;
    bottom: 16px;
    right: 16px;
}

.featured-card .rating-badge .rating-score { font-size: 18px; }
.featured-card .rating-badge .rating-text { font-size: 10px; }

/* Featured text overlay */
.featured-text-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    z-index: 15;
    animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5); transform: scale(1); }
    50% { box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7); transform: scale(1.02); }
}

.featured-card-image .featured-discount-badge { top: 52px !important; }
.featured-card-image .new-property-badge { top: 52px !important; }

/* ========================== SMART RECOMMENDATIONS ========================== */
#personalized-recommendations .recommendations-grid,
#trending-properties .recommendations-grid,
#top-rated-properties .recommendations-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding: 0 16px 20px !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    scroll-snap-type: x mandatory !important;
    grid-template-columns: unset !important;
    margin-top: 0 !important;
}

#personalized-recommendations .recommendations-grid::-webkit-scrollbar,
#trending-properties .recommendations-grid::-webkit-scrollbar,
#top-rated-properties .recommendations-grid::-webkit-scrollbar {
    display: none !important;
}

.recommendations-grid .recommendation-card {
    min-width: 210px !important;
    max-width: 210px !important;
    flex-shrink: 0 !important;
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: none;
    text-decoration: none;
    color: #222;
    position: relative;
    transition: transform 0.2s ease;
    scroll-snap-align: start;
}

.recommendations-grid .recommendation-card:active { transform: scale(0.98); }

.recommendations-grid .recommendation-card img {
    width: 100%;
    height: 210px !important;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

.recommendations-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    color: #717171;
}

.recommendations-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #EBEBEB;
    border-top-color: #FF385C;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ========================== TRUST BANNER ========================== */
.trust-banner-container {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 20px;
}

.trust-banner {
    background: #F7F9FC;
    border: 1px solid #E1E8ED;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.trust-banner:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.trust-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.trust-icon i { color: #FFFFFF; font-size: 28px; }

.trust-content { flex: 1; }

.trust-title {
    font-size: 20px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.trust-subtitle {
    font-size: 15px;
    color: #4A5568;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-text {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    font-weight: 400;
}

.trust-badge-verification {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid #E1E8ED;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.trust-badge-verification i { color: #10B981; font-size: 20px; }

.trust-badge-verification span {
    font-size: 13px;
    font-weight: 600;
    color: #2D3748;
}

/* ========================== CUSTOMER SUPPORT ========================== */
.customer-support-wrapper { position: relative; }

.customer-care-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.customer-care-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.customer-care-btn svg { flex-shrink: 0; }

.support-chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.customer-care-btn.active .support-chevron { transform: rotate(180deg); }

.support-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

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

.support-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
}

.support-dropdown-header i { font-size: 28px; }
.support-header-title { font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.support-header-subtitle { font-size: 13px; opacity: 0.95; }

.support-options { padding: 8px; }

.support-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #222222;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.support-option:hover { background: #F7F7F7; transform: translateX(4px); }

.support-option.primary {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.support-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-option-icon i { font-size: 24px; color: #FFFFFF; }
.support-option-info { flex: 1; }
.support-option-name { font-weight: 700; font-size: 14px; color: #222222; margin-bottom: 2px; }
.support-option-desc { font-size: 13px; color: #717171; margin-bottom: 4px; }

.support-option-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}

.support-option-status.online { color: #25D366; }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.support-option-action { font-size: 20px; color: #25D366; }

.support-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #F7F7F7;
    border-top: 1px solid #EBEBEB;
    font-size: 12px;
    color: #717171;
    font-weight: 600;
}

.support-dropdown-footer i { color: #25D366; }

/* ========================== PROPERTY OWNER CTA ========================== */
.property-owner-cta {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 20px;
}

.cta-container {
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 8px 32px rgba(255, 56, 92, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-icon i { font-size: 28px; color: #FFFFFF; }
.cta-text { color: #FFFFFF; }
.cta-title { font-size: 28px; font-weight: 700; margin-bottom: 6px; line-height: 1.2; }
.cta-description { font-size: 16px; opacity: 0.95; line-height: 1.5; font-weight: 400; }

.cta-button {
    background: #FFFFFF;
    color: #FF385C;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    background: #F7F7F7;
}

.cta-button i { transition: transform 0.3s ease; }
.cta-button:hover i { transform: translateX(4px); }

/* ========================== NEWSLETTER ========================== */
.newsletter-section {
    background: linear-gradient(135deg, #F7F9FC 0%, #EEF2F7 100%);
    padding: 64px 20px;
    margin-top: 48px;
    border-top: 1px solid #E1E8ED;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-header { margin-bottom: 32px; }

.newsletter-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.3);
}

.newsletter-icon i { font-size: 32px; color: #FFFFFF; }
.newsletter-title { font-size: 32px; font-weight: 700; color: #2D3748; margin-bottom: 8px; line-height: 1.2; }
.newsletter-subtitle { font-size: 16px; color: #4A5568; line-height: 1.6; }
.newsletter-form { display: flex; gap: 12px; margin-bottom: 24px; }

.newsletter-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input-wrapper i { position: absolute; left: 20px; font-size: 18px; color: #717171; }

.newsletter-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #E1E8ED;
    border-radius: 30px;
    font-size: 16px;
    color: #2D3748;
    background: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus { border-color: #FF385C; box-shadow: 0 0 0 4px rgba(255, 56, 92, 0.1); }
.newsletter-input::placeholder { color: #A0AEC0; }

.newsletter-submit {
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    color: #FFFFFF;
    padding: 18px 36px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 56, 92, 0.3);
    flex-shrink: 0;
}

.newsletter-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255, 56, 92, 0.4); }
.newsletter-submit i { transition: transform 0.3s ease; }
.newsletter-submit:hover i { transform: translateX(4px); }

.newsletter-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
}

.stat-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #4A5568; }
.stat-item i { font-size: 18px; color: #FF385C; }

.newsletter-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.newsletter-success i { font-size: 20px; }

/* ========================== PROPERTY TYPE FILTER TABS ========================== */
.property-type-filter {
    max-width: 1400px;
    margin: 0 auto 24px;
    padding: 12px 20px;
    background: #FFFFFF;
    border-bottom: 1px solid #EBEBEB;
    position: static;
    z-index: 90;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.filter-tabs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-tabs-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 6px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tabs-scroll::-webkit-scrollbar { display: none; }

.filter-tab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    color: #FFFFFF;
    border: 2px solid #FF385C;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
}

.filter-tab:hover {
    background: linear-gradient(135deg, #E61E4D 0%, #D01346 100%);
    border-color: #E61E4D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 56, 92, 0.45);
}

.filter-tab.active {
    background: linear-gradient(135deg, #D01346 0%, #B01040 100%);
    border-color: #D01346;
    box-shadow: 0 8px 24px rgba(208, 19, 70, 0.5);
    transform: translateY(-3px);
}

.filter-tab-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #FFFFFF;
}

.filter-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    min-width: 32px;
    transition: all 0.3s ease;
}

.filter-tab:hover .filter-tab-count { background: rgba(255, 255, 255, 0.35); }
.filter-tab.active .filter-tab-count { background: rgba(255, 255, 255, 0.4); }

.filter-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: 2px solid #EBEBEB;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filter-nav-arrow:hover {
    background: #FF385C;
    border-color: #FF385C;
    transform: translateY(-50%) scale(1.1);
}

.filter-nav-arrow:hover i { color: #FFFFFF; }
.filter-nav-arrow i { font-size: 14px; color: #222222; transition: color 0.3s ease; }
.filter-nav-left { left: -18px; }
.filter-nav-right { right: -18px; }
.filter-nav-arrow.hidden { opacity: 0; pointer-events: none; }

/* ========================== LANGUAGE DROPDOWN (DESKTOP) ========================== */
.language-dropdown { position: relative; }

.language-btn {
    background: #F7F7F7;
    border: none;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.language-btn:hover { background: #EBEBEB; }

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-width: 180px;
    display: none;
    z-index: 1000;
}

.language-dropdown-menu.show { display: block; }

.language-dropdown-menu a {
    display: block !important;
    padding: 12px 16px !important;
    color: #222222 !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    border-bottom: 1px solid #F7F7F7;
}

.language-dropdown-menu a:last-child { border-bottom: none; }
.language-dropdown-menu a:hover { background: #F7F7F7; }

/* ========================== HERO PILLS ========================== */
.hero-pills {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-pills span {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ========================== CATEGORY CARDS ========================== */
.category-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
    margin: 16px auto 20px;
    max-width: 1400px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 2px solid #1a7a4a;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
    cursor: pointer;
}

.category-card:hover,
.category-card:active {
    background: #f0faf5;
}

.category-card-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.category-card-body {
    flex: 1;
    min-width: 0;
}

.category-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a7a4a;
    line-height: 1.2;
}

.category-card-city {
    font-size: 13px;
    color: #666666;
    margin-top: 2px;
}

.category-card-count {
    text-align: right;
    flex-shrink: 0;
}

.category-count-number {
    font-size: 22px;
    font-weight: 700;
    color: #1a7a4a;
    line-height: 1;
}

.category-count-label {
    font-size: 12px;
    color: #888888;
    margin-top: 2px;
}

/* ========================== RESPONSIVE - MOBILE ========================== */
@media (max-width: 768px) {
    body { padding-bottom: 70px; }

    .section-title { margin-top: 20px; margin-bottom: 10px; font-size: 20px; }

    .mobile-bottom-nav { display: flex; }
    .whatsapp-float { bottom: 80px; }

    .property-card { min-width: 190px; max-width: 190px; }
    .property-card-image-wrapper,
    .property-card-image-wrapper img,
    .property-card img { height: 190px; }
    .see-all-btn { min-width: 190px; max-width: 190px; height: 190px; }

    .scroll-row { gap: 10px; padding: 0 12px 16px; }

    .top-cities { padding: 0 12px; margin: 20px 0 16px; }
    .city-card { width: 180px; }
    .city-card-img img { height: 140px; }

    .property-card .property-name { font-size: 14px; margin-bottom: 0px !important; line-height: 1 !important; }
    .property-card .property-location { font-size: 13px; margin-bottom: 0px !important; margin-top: 1px !important; line-height: 1 !important; }
    .property-price-section { gap: 0px !important; margin-top: 2px !important; }
    .property-original-price { font-size: 11px; margin-bottom: 0px !important; line-height: 1 !important; }
    .property-card .property-price { font-size: 14px; gap: 2px; line-height: 1 !important; }
    .property-card .property-price .night { font-size: 12px; }

    .discount-badge { font-size: 10px; padding: 4px 8px; }
    .property-card-image-wrapper.has-discount .instant-badge { top: 42px !important; }
    .property-card-image-wrapper.has-discount .views-badge { top: 76px !important; }
    .property-card-image-wrapper.has-discount .booking-badge { top: 110px !important; }

    .new-property-badge { font-size: 10px; padding: 5px 10px; }
    .rating-badge { padding: 5px 8px; bottom: 10px; right: 10px; }
    .rating-badge .rating-score { font-size: 14px; }
    .rating-badge .rating-text { font-size: 8px; }
    .property-rating-score { font-size: 12px; padding: 3px 7px; }
    .property-rating-text { font-size: 12px; }
    .property-rating-count { font-size: 10px; }

    .featured-properties { margin: 30px auto; padding: 0 16px; }
    .section-header-featured h2 { font-size: 24px; }
    .section-header-featured p { font-size: 14px; }
    .featured-card { width: 320px; }
    .featured-card-image { height: 280px; }
    .featured-property-name { font-size: 18px !important; }
    .featured-amount { font-size: 20px !important; }
    .featured-card-content { padding: 10px !important; }
    .featured-details { gap: 8px !important; margin-bottom: 0px !important; margin-top: 2px !important; padding-bottom: 3px !important; }
    .featured-details span { font-size: 11px !important; }
    .featured-text-overlay { font-size: 11px; padding: 6px 12px; letter-spacing: 1px; }

    .trust-banner-container { margin: 24px auto; padding: 0 16px; }
    .trust-banner { flex-direction: column; text-align: center; padding: 20px; gap: 16px; }
    .trust-icon { width: 48px; height: 48px; }
    .trust-icon i { font-size: 24px; }
    .trust-title { font-size: 16px; margin-bottom: 6px; }
    .trust-text { font-size: 13px; }
    .trust-badge-verification { width: 100%; justify-content: center; padding: 10px 16px; }
    .trust-badge-verification span { font-size: 12px; }

    .customer-care-text { display: none; }
    .customer-care-btn { padding: 10px; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }
    .customer-care-btn svg { width: 22px; height: 22px; }
    .support-chevron { display: none; }
    .support-dropdown { right: 0; left: auto; min-width: 300px; }

    .property-owner-cta { margin: 32px auto; padding: 0 16px; }
    .cta-container { flex-direction: column; text-align: center; padding: 28px 24px; gap: 24px; }
    .cta-content { flex-direction: column; text-align: center; gap: 16px; }
    .cta-icon { width: 56px; height: 56px; }
    .cta-icon i { font-size: 24px; }
    .cta-title { font-size: 22px; }
    .cta-description { font-size: 15px; }
    .cta-button { width: 100%; justify-content: center; padding: 14px 28px; font-size: 15px; }

    .newsletter-section { padding: 48px 16px; }
    .newsletter-icon { width: 64px; height: 64px; }
    .newsletter-icon i { font-size: 28px; }
    .newsletter-title { font-size: 26px; }
    .newsletter-subtitle { font-size: 15px; }
    .newsletter-form { flex-direction: column; gap: 12px; }
    .newsletter-input { padding: 16px 20px 16px 48px; font-size: 15px; }
    .newsletter-submit { width: 100%; justify-content: center; padding: 16px 32px; font-size: 15px; }
    .newsletter-stats { flex-direction: column; gap: 16px; padding: 16px; }
    .stat-item { justify-content: center; font-size: 13px; }

    .property-type-filter { margin: 0 auto 20px; padding: 10px 16px; }
    .filter-tabs-scroll { gap: 8px; padding: 4px 0; justify-content: flex-start; flex-wrap: nowrap; }
    .filter-tab { padding: 10px 18px; font-size: 14px; gap: 6px; }
    .filter-tab-name { font-size: 14px; }
    .filter-tab-count { font-size: 12px; padding: 3px 8px; min-width: 28px; }

    #personalized-recommendations .recommendations-grid,
    #trending-properties .recommendations-grid,
    #top-rated-properties .recommendations-grid { gap: 10px !important; padding: 0 12px 16px !important; }
    .recommendations-grid .recommendation-card { min-width: 190px !important; max-width: 190px !important; }
    .recommendations-grid .recommendation-card img { height: 190px !important; }
}

/* ========================== RESPONSIVE - VERY SMALL PHONES ========================== */
@media (max-width: 375px) {
    .property-card { min-width: 170px; max-width: 170px; }
    .property-card-image-wrapper,
    .property-card-image-wrapper img,
    .property-card img { height: 170px; }
    .see-all-btn { min-width: 170px; max-width: 170px; height: 170px; font-size: 14px; }
    .city-card { width: 160px; }
    .city-card-img img { height: 130px; }

    .property-card .property-name { font-size: 13px; }
    .property-card .property-location { font-size: 12px; }
    .property-original-price { font-size: 10px; }
    .property-card .property-price { font-size: 13px; }
    .property-card .property-price .night { font-size: 11px; }

    .new-property-badge { font-size: 9px; padding: 4px 8px; }
    .rating-badge { padding: 4px 7px; }
    .rating-badge .rating-score { font-size: 13px; }
    .rating-badge .rating-text { font-size: 7px; }

    .featured-card { width: 280px; }
    .featured-card-image { height: 240px; }
    .featured-card-content { padding: 8px !important; }
    .featured-text-overlay { font-size: 10px; padding: 5px 10px; }

    .trust-banner { padding: 16px; }
    .trust-icon { width: 44px; height: 44px; }
    .trust-icon i { font-size: 22px; }
    .trust-title { font-size: 15px; }
    .trust-text { font-size: 12px; }
    .trust-badge-verification { padding: 8px 14px; }
    .trust-badge-verification i { font-size: 18px; }
    .trust-badge-verification span { font-size: 11px; }

    .support-dropdown { right: -20px; min-width: 280px; }
    .support-option-icon { width: 42px; height: 42px; }
    .support-option-icon i { font-size: 20px; }

    .cta-container { padding: 24px 20px; }
    .cta-icon { width: 52px; height: 52px; }
    .cta-icon i { font-size: 22px; }
    .cta-title { font-size: 20px; }
    .cta-description { font-size: 14px; }
    .cta-button { padding: 12px 24px; font-size: 14px; }

    .newsletter-section { padding: 40px 16px; }
    .newsletter-icon { width: 56px; height: 56px; }
    .newsletter-icon i { font-size: 24px; }
    .newsletter-title { font-size: 22px; }
    .newsletter-subtitle { font-size: 14px; }
    .newsletter-input { padding: 14px 18px 14px 46px; font-size: 14px; }
    .newsletter-submit { padding: 14px 28px; font-size: 14px; }
    .newsletter-success { font-size: 14px; padding: 14px 20px; }

    .property-type-filter { margin: 0 auto 14px; padding: 6px 10px; }
    .filter-tab { padding: 9px 14px; font-size: 12px; min-height: 38px; }
    .filter-tab-name { font-size: 12px; }
    .filter-tab-count { font-size: 11px; padding: 2px 6px; min-width: 24px; }

    .recommendations-grid .recommendation-card { min-width: 170px !important; max-width: 170px !important; }
    .recommendations-grid .recommendation-card img { height: 170px !important; }
}

/* ========================== RESPONSIVE - TABLET ========================== */
@media (min-width: 480px) and (max-width: 768px) {
    .trust-banner { padding: 16px; }
    .trust-icon { width: 44px; height: 44px; }
    .trust-title { font-size: 15px; }
    .trust-text { font-size: 12px; }

    .cta-container { padding: 24px 20px; }
    .cta-title { font-size: 20px; }
    .newsletter-section { padding: 40px 16px; }
    .newsletter-title { font-size: 22px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .trust-banner { padding: 20px 24px; }
    .trust-title { font-size: 17px; }
    .cta-container { padding: 28px 32px; }
    .cta-title { font-size: 24px; }
    .newsletter-title { font-size: 28px; }
    .property-type-filter { margin: 0 auto 20px; padding: 10px 16px; }
    .filter-tabs-scroll { justify-content: center; }
    .filter-tab { padding: 12px 20px; font-size: 14px; }
    .filter-tab-name { font-size: 14px; }
    .filter-tab-count { font-size: 12px; padding: 3px 8px; }
}

/* ========================== RESPONSIVE - DESKTOP ========================== */
@media (min-width: 769px) {
    .mobile-bottom-nav { display: none; }
    .whatsapp-float { bottom: 20px; }
    .slide-hint { display: none; }

    .scroll-row {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
        overflow-x: visible;
        padding: 0 16px 24px;
    }

    .property-card { min-width: auto; max-width: none; }
    .property-card-image-wrapper,
    .property-card-image-wrapper img,
    .property-card img { height: 220px; }
    .see-all-btn { min-width: auto; height: 220px; }

    .property-card .property-name { font-size: 16px; }
    .property-card .property-location { font-size: 15px; }
    .property-original-price { font-size: 13px; }
    .property-card .property-price { font-size: 16px; }
    .property-card .property-price .night { font-size: 14px; }

    .desktop-link { display: flex !important; }
    .mobile-only { display: none !important; }
    .mobile-menu-toggle { display: none !important; }

    .nav-links {
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .nav-links > a,
    .nav-links > .language-dropdown {
        border-bottom: none !important;
        padding: 0 !important;
        width: auto !important;
    }

    .language-dropdown { display: block !important; }

    #personalized-recommendations .recommendations-grid,
    #trending-properties .recommendations-grid,
    #top-rated-properties .recommendations-grid { gap: 16px !important; padding: 0 16px 24px !important; }
    .recommendations-grid .recommendation-card { min-width: 220px !important; max-width: 220px !important; }
    .recommendations-grid .recommendation-card img { height: 220px !important; }
}

@media (min-width: 1024px) {
    .featured-arrow { display: flex; }
    .property-type-filter { padding: 14px 20px; margin: 0 auto 28px; }
    .filter-tab { padding: 14px 26px; font-size: 16px; gap: 8px; }
    .filter-tab-name { font-size: 16px; }
    .filter-tab-count { font-size: 14px; padding: 5px 12px; min-width: 36px; }
}

@media (min-width: 1200px) {
    .filter-nav-arrow { display: flex; }
    .filter-tabs-scroll { flex-wrap: nowrap; justify-content: flex-start; }
}

@media (min-width: 1440px) {
    .property-type-filter { margin: 0 auto 32px; }
    .filter-tab { padding: 16px 30px; font-size: 17px; }
    .filter-tab-name { font-size: 17px; }
    .filter-tab-count { font-size: 15px; padding: 6px 14px; }
}

@media (max-width: 768px) {
    .desktop-link { display: none; }
    .nav-links.active .desktop-link {
        display: flex !important;
        width: 100%;
        padding: 18px 32px;
        border-bottom: 1px solid #EBEBEB;
    }
    .language-dropdown { display: none !important; }
    .mobile-only { display: block; }
}

/* ================================================================
   GoBook.ng — CATEGORY CARDS FIX (replaces previous version)
   Paste this at the BOTTOM of homepage.css
   ================================================================ */

/* ========================== CATEGORY CARDS — ALL SCREENS ========================== */

.category-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
    margin: 12px auto 20px;
    max-width: 1400px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 2px solid #1a7a4a;
    border-radius: 16px;
    padding: 18px 14px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
    min-height: 80px;
}

.category-card:active {
    background: #f0faf5;
    transform: scale(0.97);
}

.category-card-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.category-card-body {
    flex: 1;
    min-width: 0;
    display: block !important;   /* ALWAYS show — never hide */
}

.category-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a7a4a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-card-city {
    font-size: 12px;
    color: #666666;
    margin-top: 2px;
}

.category-card-count {
    text-align: right;
    flex-shrink: 0;
}

.category-count-number {
    font-size: 20px;
    font-weight: 700;
    color: #1a7a4a;
    line-height: 1;
}

.category-count-label {
    font-size: 11px;
    color: #888888;
    margin-top: 2px;
}

/* ========================== MOBILE — 376px to 768px ========================== */
@media (max-width: 768px) {
    .category-cards-container {
        gap: 10px;
        padding: 0 14px;
        margin: 10px auto 16px;
    }

    .category-card {
        padding: 16px 12px;
        gap: 10px;
        min-height: 74px;
        border-radius: 14px;
    }

    .category-card-icon {
        font-size: 24px;
    }

    .category-card-name {
        font-size: 14px;
    }

    .category-card-city {
        font-size: 11px;
    }

    .category-count-number {
        font-size: 18px;
    }

    .category-count-label {
        font-size: 10px;
    }
}

/* ========================== VERY SMALL PHONES — under 376px ========================== */
@media (max-width: 375px) {
    .category-cards-container {
        gap: 8px;
        padding: 0 12px;
    }

    .category-card {
        padding: 14px 10px;
        gap: 8px;
        min-height: 68px;
        border-radius: 12px;
    }

    .category-card-icon {
        font-size: 22px;
    }

    /* NEVER hide the body — just shrink it */
    .category-card-body {
        display: block !important;
        min-width: 0;
    }

    .category-card-name {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .category-card-city {
        font-size: 10px;
    }

    .category-count-number {
        font-size: 16px;
    }

    .category-count-label {
        font-size: 10px;
    }
}

/* ========================== FIRST STAY PROMPT ========================== */
.first-stay-prompt {
    font-size: 12px;
    color: #ff385c;
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 0;
    line-height: 1.2;
}

/* ========================== HOTEL ROOM BADGE ========================== */
.hotel-room-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #003B95;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 9;
    box-shadow: 0 2px 6px rgba(0,59,149,0.35);
    letter-spacing: 0.2px;
}

/* ========================== HOTEL ROOMS AVAILABLE ========================== */
.hotel-rooms-available {
    font-size: 12px;
    font-weight: 600;
    color: #28a745;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
}

.hotel-rooms-available i {
    font-size: 11px;
}

/* ========================== HOTEL ROOM BADGE ========================== */
.hotel-room-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #003B95;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 9;
    box-shadow: 0 2px 6px rgba(0,59,149,0.35);
    letter-spacing: 0.2px;
}

/* ========================== HOTEL ROOMS AVAILABLE ========================== */
.hotel-rooms-available {
    font-size: 12px;
    font-weight: 600;
    color: #28a745;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
}

.hotel-rooms-available i {
    font-size: 11px;
}

@media (max-width: 375px) {
    .hotel-room-badge { font-size: 10px; padding: 4px 8px; }
    .hotel-rooms-available { font-size: 11px; }
}

/* ========================== FEATURED PROPERTIES — FULL SCREEN MOBILE ========================== */

@media (max-width: 768px) {
    .featured-properties {
        padding: 0;
        margin: 20px 0;
    }

    .section-header-featured {
        padding: 0 16px;
    }

    .featured-scroll {
        gap: 0;
        padding: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .featured-card {
        width: 100vw;
        flex-shrink: 0;
        scroll-snap-align: start;
        border-radius: 0;
        box-shadow: none;
    }

    .featured-card-image {
        height: 420px;  /* tall and immersive */
        border-radius: 0;
    }

    .featured-card-image img {
        height: 420px;
        object-fit: cover;
    }

    .featured-card-content {
        padding: 14px 16px !important;
    }
}

@media (max-width: 375px) {
    .featured-card {
        width: 100vw;
    }

    .featured-card-image {
        height: 360px;
    }

    .featured-card-image img {
        height: 360px;
    }
}

/* ========================== FEATURED HEADER — MATCH SITE PINK ========================== */

.section-header-featured h2 {
    color: #FF385C;
}

.section-header-featured p {
    color: #717171;
}

/* ========================== CTA — COMPACT ON MOBILE ========================== */

@media (max-width: 768px) {
    .property-owner-cta {
        margin: 8px auto 12px;
        padding: 0 12px;
    }

    .cta-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .cta-content {
        flex-direction: row;
        gap: 8px;
        text-align: left;
    }

    .cta-icon {
        display: none;
    }

    .cta-title {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 0;
        color: #fff;
    }

    .cta-description {
        display: none;
    }

    .cta-button {
        font-size: 12px;
        padding: 8px 14px;
        border-radius: 20px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .cta-button i {
        display: none;
    }
}

@media (max-width: 375px) {
    .cta-container {
        padding: 8px 12px;
    }

    .cta-title {
        font-size: 12px;
    }

    .cta-button {
        font-size: 11px;
        padding: 7px 12px;
    }
}