/* --- COLOR PALETTE & VARIABLES --- */
:root {
    --bg-olive: #f4f6f0;         /* Very Light Premium Olive for main background */
    --primary-olive: #556b2f;    /* Dark Olive Green for structural elements */
    --mehrum: #800020;           /* Premium Burgundy / Mehrum for primary buttons/highlights */
    --mehrum-hover: #600018;
    --text-black: #1a1a1a;       /* Clean sharp dark text */
    --text-gray: #666666;
    --white: #ffffff;
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box; /* Fixed: 'box-style: border-box' syntax error corrected */
}

body {
    background-color: var(--bg-olive);
    color: var(--text-black);
    padding-bottom: 70px; /* Space for mobile nav bar */
    overflow-x: hidden;  /* Structural lock to prevent horizontal scroll buggy jumps */
    width: 100%;
}

/* --- TYPOGRAPHY & BUTTONS --- */
h2, h3, h4 {
    color: var(--text-black);
    font-weight: 700;
    word-break: break-word; /* Safety measure for text truncation on minor scales */
}

.btn-mehrum {
    background-color: var(--mehrum);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-mehrum:hover {
    background-color: var(--mehrum-hover);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--mehrum);
    color: var(--mehrum);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* --- DESKTOP HEADER --- */
.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-olive);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.desktop-header .logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.desktop-header .header-center a {
    color: #e2e8f0;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.desktop-header .header-center a.active, 
.desktop-header .header-center a:hover {
    color: var(--white);
    border-bottom: 2px solid var(--white);
    padding-bottom: 4px;
}

.profile-dp img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

/* --- CONTENT CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

/* --- SEARCH SECTION --- */
.search-section {
    margin: 20px 0;
    width: 100%;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100%;
    box-sizing: border-box;
}

.search-icon {
    color: var(--text-gray);
    margin-right: 10px;
    font-size: 18px;
}

#search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px;
    min-width: 0; /* Important: prevents input fields from breaking parent flex bounds */
}

.voice-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--mehrum);
    cursor: pointer;
    margin-right: 15px;
    flex-shrink: 0;
}

/* --- BANNER SLIDER --- */
.banner-section {
    margin-bottom: 30px;
    width: 100%;
}

.slider {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
}

.slide-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
}

.slide-content p {
    color: #f0f0f0;
    font-size: 16px;
}

/* --- CATEGORIES --- */
.categories-section h3, .listings-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.category-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    width: 100%;
    -webkit-overflow-scrolling: touch; /* Extra smoothness for native touch scrolling on iOS */
}

.category-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for clean app view */
}

.category-card {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    flex-shrink: 0; /* Crucial: stops boxes from squeezing/shrinking down in horizontal flex flow */
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.3s;
}

.category-card i {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-olive);
}

.category-card span {
    font-size: 12px;
    font-weight: 600;
}

.category-card.active {
    background-color: var(--mehrum);
}

.category-card.active i, .category-card.active span {
    color: var(--white);
}

/* --- PROPERTY CARDS --- */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 15px;
    width: 100%;
}

.property-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.image-container {
    position: relative;
    width: 100%;
    height: 200px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--mehrum);
    color: var(--white);
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 1;
}

.card-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap; /* Prevents text colliding if currencies/digits scale large */
}

.mrp {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 14px;
}

.final-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
}

.saved-text {
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    background: #e8f5e9;
    padding: 2px 6px;
    border-radius: 4px;
}

.property-name {
    font-size: 16px;
    margin-bottom: 6px;
}

.rating-row {
    color: #ffb300;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rating-row .review-count {
    color: var(--text-gray);
    font-weight: 400;
}

.location-text {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 4px;
}

.map-link {
    color: var(--primary-olive);
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.facilities {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.facilities span {
    background: #f0f2f5;
    padding: 4px 8px;
    border-radius: 6px;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto; /* Aligns buttons at the very bottom uniformly */
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-bottom-nav {
    display: none; /* Desktop side default hide */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 500;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

.nav-item.active {
    color: var(--mehrum);
}

/* --- FILTER MODAL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    padding: 15px; /* Keeps modal inside device screen edge padding */
}

.modal-content {
    background-color: var(--white);
    padding: 20px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.close-modal {
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    padding: 20px 0;
}

.w-100 {
    width: 100%;
}

/* --- BREAKPOINTS & RESPONSIVENESS (NATIVE APP FEEL) --- */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px; /* Space for Mobile Nav */
    }

    .container {
        padding: 15px 12px; /* Responsive safe spacing bounds */
    }

    /* Hide Top Desktop Header Navbar Links */
    .desktop-header {
        padding: 12px 15px;
    }
    .desktop-header .header-center {
        display: none;
    }
    
    /* Display Mobile Bottom Bar */
    .mobile-bottom-nav {
        display: flex;
    }

    /* Slider Native Mobile Scale Correction */
    .slider {
        height: 160px;
        border-radius: 12px;
    }

    .slide {
        padding: 0 20px; /* Compress slide layout internally */
    }

    .slide-content h2 {
        font-size: 22px;
    }

    .slide-content p {
        font-size: 13px;
    }

    /* Smooth auto scale for property cards on lower screen sizes */
    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }

    .card-details {
        padding: 15px;
    }
}

@media (max-width: 360px) {
    /* Action Button Stack handling for extremely tight viewports */
    .card-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
/* प्लेसहोल्डर का डिफ़ॉल्ट ट्रांजिशन */
#search-input::placeholder {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

/* जब कीवर्ड बदलेगा तब यह इफेक्ट काम करेगा (ऊपर जाते हुए हाइड होना) */
#search-input.placeholder-fade::placeholder {
    opacity: 0;
    transform: translateY(-10px); /* टेक्स्ट थोड़ा ऊपर की तरफ जाएगा */
}

/* Mobile Filter Modal Structure */
#filter-modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: flex-end; /* Mobile mein niche se slide hoga */
}

.modal-content {
    background: white;
    width: 100%;
    max-height: 85vh; /* Screen ka 85% cover karega */
    border-radius: 20px 20px 0 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-body {
    overflow-y: auto; /* Scrollable filter list */
    padding-right: 5px;
}

/* Modal ke andar scrollbar ko hidden rakhein */
.modal-body::-webkit-scrollbar {
    width: 4px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* Close Button style */
.close-modal {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Mobile par Button fix karne ke liye */
.w-100 {
    width: 100%;
    padding: 14px;
    background: var(--mehrum);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

/* Mobile trigger button jo aapne pehle hi banaya hai */
#filter-btn {
    display: none; /* Desktop par hidden */
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* पॉपअप का मुख्य कंटेनर - अब यह ऊपर (Top) रहेगा */
.property-popup-bubble {
    position: fixed;
    top: -120px; /* शुरुआत में हेडर के ऊपर छुपा रहेगा */
    right: 20px; /* डेस्कटॉप पर दाईं तरफ */
    z-index: 11000; /* हेडर के ऊपर दिखने के लिए हाई z-index */
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    
    /* slow and smooth transition (0.8 सेकंड का स्मूथ इफ़ेक्ट) */
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    
    max-width: 320px;
    width: calc(100% - 40px);
    opacity: 0;
    pointer-events: none;
    border: 1px solid #e2e8f0;
}

/* जब नोटिस एक्टिव होगा - धीरे से नीचे आएगा */
.property-popup-bubble.show {
    top: 85px; /* हेडर के ठीक नीचे आकर रुकेगा */
    opacity: 1;
    pointer-events: auto;
}

/* मैसेज लेआउट संरचना */
.popup-message-content {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    position: relative;
    gap: 12px;
}

/* बात करता हुआ लोगो/अवतार */
.popup-avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f4f8;
    border: 2px solid #ff385c;
    object-fit: cover;
}

/* मैसेज टेक्स्ट एरिया */
.popup-bubble-text {
    flex: 1;
}

.popup-bubble-text p {
    margin: 0 0 6px 0;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

/* 'List Your Property' का बटन स्टाइल */
.popup-action-btn {
    display: inline-flex;
    align-items: center;
    background: #ff385c;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.popup-action-btn:hover {
    background: #e31c5f;
}

/* चमकदार हरा 'FREE' बैज */
.popup-free-badge {
    background: #28a745;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: 0.5px;
}

/* क्लोज (X) बटन */
.popup-close-x {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #a0aec0;
    cursor: pointer;
    line-height: 1;
    padding: 2px;
}

/* मोबाइल रिस्पॉन्सिविटी (ताकि मोबाइल पर भी हेडर के पास बीच में या सही दिखे) */
@media (max-width: 768px) {
    .property-popup-bubble {
        right: 20px;
        left: 20px;
        width: auto;
    }
    .property-popup-bubble.show {
        top: 75px; /* मोबाइल हेडर की हाइट के अनुसार एडजस्टेड */
    }
}


/* --- CSS VARIABLES (Apni website ke main colors yahan set karein) --- */
/* --- CSS VARIABLES (Apni website ke main colors yahan set karein) --- */
:root {
    --theme-primary-color: #808000; /* Isko humne Olive color code de diya hai */
    --theme-text-dark: #0b2240;      /* Dark text color */
    --theme-scam-red: #d93025;       /* Warning text color */
}
/* --- MODAL OVERLAY STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px); /* Background soft blur effect */
    z-index: 10000; /* Taaki modal website ke har element ke upar dikhe */
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    font-family: inherit; /* Aapki site ka font capture karega */
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Image se matched badge design */
.alert-icon-wrapper {
    position: relative;
    display: inline-block;
}
.phone-icon {
    font-size: 2.5rem;
    color: #a0aec0;
}
.bell-badge {
    position: absolute;
    top: 5px;
    left: -15px;
    background: var(--theme-scam-red);
    color: white;
    border-radius: 50%;
    padding: 6px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.modal-header h2 {
    color: var(--theme-text-dark);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
}

.modal-divider {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 15px 0;
}

.scam-warning {
    color: var(--theme-scam-red);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.scam-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.scam-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.cross-icon {
    color: var(--theme-scam-red);
    font-size: 1.1rem;
}

.modal-primary-btn {
    background-color: var(--theme-primary-color);
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.modal-primary-btn:hover {
    filter: brightness(0.9);
}
.modal-primary-btn:active {
    transform: scale(0.98);
}

/* --- LOCATION BUTTON WITH HOVER TOOLTIP STYLES --- */
.location-btn-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Tooltip Default Hide State */
.location-btn-wrapper .tooltip-text {
    visibility: hidden;
    width: 110px;
    background-color: #2d3748;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    padding: 6px 0;
    position: absolute;
    z-index: 10;
    bottom: 130%; /* Search bar ke thik upar pop hoga */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease, bottom 0.2s ease;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Tooltip Triangle Arrow */
.location-btn-wrapper .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2d3748 transparent transparent transparent;
}

/* Hover over Button Trigger */
.location-btn-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    bottom: 145%; /* Smooth upward motion effect */
}

/* --- Full Width Hero Viewport Container --- */
.hero-viewport-container {
    position: relative;
    width: 100vw;              
    left: 50%;
    right: 50%;
    margin-left: -50vw;        
    margin-right: -50vw;
    height: 380px;             
    margin-bottom: 70px;       
    background-color: #111827;
    transition: height 0.3s ease;
}

/* --- Floating Search Card Matrix --- */
.search-card-wrapper {
    position: absolute;
    bottom: -35px;             
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 920px;          
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 5;
    box-sizing: border-box;
    overflow: hidden;
}

/* --- Search Controls Row --- */
.search-bar-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: #ffffff;
}

.search-input-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.main-search-icon {
    color: #6b778c;
    margin-right: 12px;
    font-size: 16px;
}

.search-input-container input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    color: #091e42;
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
}

.action-icon-btn {
    background: #f4f5f7;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #800020;            /* महरून कलर */
    font-size: 15px;
    transition: background 0.2s ease;
}

.action-icon-btn:hover {
    background: #ebecf0;
}

/* Desktop पर मोबाइल फ़िल्टर बटन छुपा रहेगा */
.mobile-filter-btn {
    display: none;
}

.search-maroon-btn {
    background-color: #800020; 
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-maroon-btn:hover {
    background-color: #600018;
}

/* 📱 MOBILE RESPONSIVE MATRIX */
@media (max-width: 767px) {
    .hero-viewport-container {
        height: auto;          
        aspect-ratio: 16 / 9;  /* मोबाइल बैनर कटना बंद */
        margin-bottom: 110px;  
    }
    .search-card-wrapper {
        bottom: -90px;         
        width: 92%;
    }
    .search-bar-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
    }
    .search-actions {
        justify-content: space-between;
        margin-left: 0;
    }
    /* मोबाइल पर फ़िल्टर बटन दिखेगा */
    .mobile-filter-btn {
        display: flex;
    }
    .search-maroon-btn {
        flex-grow: 1;
        text-align: center;
    }
}
/* Google Font Setup (Optional but recommended for clean look) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

.hero-banner {
  font-family: 'Inter', sans-serif;
  background-color: #e3f2fd; /* Light greenish-blue premium background tint */
  background: linear-gradient(135deg, #eaf6f0 0%, #dbeee4 100%); /* Smooth gradient like the image */
  border-radius: 12px;
  margin: 20px auto;
  max-width: 1140px;
  overflow: hidden;
  padding: 0 40px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Content Styles */
.banner-content {
  flex: 1;
  min-width: 300px;
  padding: 40px 0;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0c2340; /* Dark Navy Blue */
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.banner-subtitle {
  font-size: 1.1rem;
  color: #536479;
  margin: 0 0 30px 0;
}

/* Primary Button Styles */
.btn-primary {
  display: inline-block;
  background-color: #0078db; /* WhatsApp/Property Blue Color */
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 120, 219, 0.2);
}

.btn-primary:hover {
  background-color: #005fa3;
}

/* WhatsApp Link Styles */
.whatsapp-link-container {
  margin-top: 15px;
}

.whatsapp-link {
  font-size: 1rem;
  font-weight: 700;
  color: #0c2340;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

/* Right Image Styles */
.banner-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: 20px; /* Adjust based on image cuts */
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
  .hero-banner {
    padding: 20px;
    margin: 10px;
  }
  
  .banner-container {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-title {
    font-size: 1.8rem;
  }
  
  .banner-image {
    justify-content: center;
    width: 100%;
  }
  
  .banner-image img {
    max-height: 250px;
  }
}