@charset "utf-8";

/* ==========================================================================
   1. VARIABLES & BASE SETUP
   ========================================================================== */
:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    
    /* Category Colors */
    --badge-res: #10b981;
    --badge-com: #f59e0b;
    --badge-vac: #8b5cf6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. NAVIGATION & HEADERS
   ========================================================================== */
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.main-nav {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border);
}

.nav-cta-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    background-color: var(--primary);
    color: white;
}

.site-header {
    background-color: var(--card-bg);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.site-header h1 {
    font-size: 2.6rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 800;
}

.site-header p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Top Logo Header for Sub-Pages */
.detail-header-top {
    padding: 20px 0;
    text-align: left; 
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

/* ==========================================================================
   3. HOMEPAGE & SEARCH
   ========================================================================== */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

#location-search {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 1.1rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    outline: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#location-search:focus {
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Property Grid & Cards */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    position: relative;
    height: 220px;
    width: 100%;
    background-color: var(--border);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge.residential { background-color: var(--badge-res); }
.badge.commercial { background-color: var(--badge-com); }
.badge.vacation { background-color: var(--badge-vac); }

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-specs {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.view-details-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--bg-color); 
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 10px 0;
    margin-top: 20px; 
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Landlord CTA Banner (Homepage) */
.cta-banner {
    margin-top: 20px;
    margin-bottom: 40px;
}

.cta-banner-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.cta-banner-content h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.cta-banner-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-content .cta-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
}

/* ==========================================================================
   4. PROPERTY DETAIL PAGE
   ========================================================================== */
.property-page {
    min-height: 60vh;
}

.loading-message, .error-message {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

@media (max-width: 900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.detail-header h1 {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.2;
}

.detail-location {
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.detail-sidebar {
    position: sticky;
    top: 30px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.sidebar-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary);
}

.cta-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.cta-btn:hover {
    background-color: var(--primary-hover);
}

/* Bottom Navigation (Back Links) */
.bottom-nav {
    padding: 40px 0;
    margin-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center; 
}

.back-link {
    display: inline-block;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: var(--bg-color);
}

/* ==========================================================================
   5. SUBMIT PAGE
   ========================================================================== */
.page-content {
    padding: 40px 20px 80px 20px;
}

.submit-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 900px) {
    .submit-layout {
        grid-template-columns: 1fr;
    }
}

.submit-guidelines h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.guideline-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.guideline-box h3 {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.2rem;
}

.guideline-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guideline-list li {
    position: relative;
    padding-left: 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.guideline-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
}

.guideline-list li strong {
    color: var(--text-main);
}

.contact-support p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-support a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-support a:hover {
    text-decoration: underline;
}

.submit-form-container {
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-height: 800px;
}

/* ==========================================================================
   6. ABOUT & CONTACT PAGES
   ========================================================================== */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.how-it-works {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .how-it-works {
        grid-template-columns: 1fr;
    }
}

.works-column h2 {
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.step-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-card h3 {
    margin-bottom: 5px;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 850px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.faq-item strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    color: var(--text-main);
}

/* ==========================================================================
   7. GLOBAL FOOTER
   ========================================================================== */
.site-footer {
    background-color: #0f172a; 
    color: #e2e8f0;
    padding: 60px 0 20px 0;
    margin-top: 60px;
    border-top: 4px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2.5fr; 
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr; 
    }
}

.brand-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.brand-info p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* --- Fresh Footer Links --- */
.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    color: #e2e8f0 !important; 
    text-decoration: none !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: transparent !important;
}

.footer-nav-link:hover {
    color: #2563eb !important; 
    text-decoration: none !important;
    text-underline-offset: 4px;
}
.disclaimer-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-box h4 {
    color: #f87171; 
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-box p {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.85rem;
}
/* --- Verified Owner Badge --- */
.verified-badge {
    display: inline-flex;
    align-items: center;
    background-color: #d1fae5; /* Soft emerald background */
    color: #059669; /* Deep emerald text */
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.1);
}
/* --- Highlight Entire Verified Card --- */
.verified-card {
    border: 2px solid #10b981; /* Premium emerald border */
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15); /* Soft green glow */
    background-color: #fcfdfd; /* Very subtle tint to make it pop */
}

/* Ensure the hover effect remains smooth but keeps the green glow */
.verified-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
    border-color: #059669;
}
/* --- Quick Contact Buttons --- */
.quick-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.whatsapp-btn {
    background-color: #25D366; /* Official WhatsApp Green */
    color: white;
    border: 2px solid #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
}

.call-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Form Divider --- */
.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.form-divider span {
    padding: 0 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}
/* --- Faint Form Placeholders --- */
::placeholder {
    color: #94a3b8; /* A clean, faint slate grey */
    opacity: 1; /* Required because Firefox lowers opacity by default */
    font-weight: 400; /* Ensures it looks lighter than typed text */
}

/* Fallbacks for older browsers */
:-ms-input-placeholder { color: #94a3b8; }
::-ms-input-placeholder { color: #94a3b8; }
/* --- Native Form Styling --- */
.native-form-wrapper {
    padding: 0; /* Resets padding so the header sits flush */
}

.form-header {
    background-color: var(--bg-color); /* Slightly offset background for the header */
    padding: 30px 40px;
    border-bottom: 1px solid var(--border);
}

.form-header h2 {
    color: var(--text-main);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.custom-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr; /* Stacks to 1 column on mobile */
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.required {
    color: #ef4444; /* Red asterisk */
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--text-main);
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); /* Subtle blue glow */
    background-color: var(--card-bg);
}

.section-divider {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

/* Custom Checkbox for Upsell */
.verification-upsell {
    background-color: rgba(16, 185, 129, 0.05); /* Very light green */
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.checkbox-container input {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    cursor: pointer;
}

.upsell-text {
    display: flex;
    flex-direction: column;
}

.upsell-text strong {
    color: #059669; /* Emerald */
    font-size: 1.05rem;
}

.upsell-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.15rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}
/* --- Property Feature Tags --- */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.feature-tag {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nearby-list {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
    padding-left: 20px;
}
.filter-dropdown {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background-color: var(--card-bg);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    appearance: auto; /* Keeps the native dropdown arrow but styles the box */
}

.filter-dropdown:hover, .filter-dropdown:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
/* --- NoBroker Style Detail Components --- */
.financial-bar {
    display: flex;
    justify-content: space-between;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.finance-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid var(--border);
}

.finance-item:last-child {
    border-right: none;
}

.finance-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.finance-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.overview-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.overview-icon {
    font-size: 1.5rem;
    background: #f3f4f6;
    padding: 10px;
    border-radius: 50%;
    color: var(--primary);
}

.overview-text-group {
    display: flex;
    flex-direction: column;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}
/* --- Amenities Checkbox Grid Fix --- */
.amenities-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card-bg);
    margin-top: 10px;
}

.amenity-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    cursor: pointer;
    font-weight: 500 !important;
    margin: 0 !important;
}

/* This stops the global CSS from stretching the checkbox */
.amenity-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    flex-shrink: 0;
}

/* --- Multiple Image Slider --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px; /* Same height as your current image */
    overflow: hidden;
    border-radius: 8px 8px 0 0; /* Matches your detail card */
    background-color: #f3f4f6;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.slider-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.slider-btn.prev { left: 15px; }
.slider-btn.next { right: 15px; }

/* Image count indicator */
.slider-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10;
}
.dynamic-section {
    display: none !important; 
}