* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
}

/* --- HEADER SECTION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 22px;
    color: #111;
}

.logo-box {
    background-color: #ffcc00;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a.active, nav a:hover {
    color: #d4a017;
}

.directory-badge {
    background-color: #d4a017;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: super;
    margin-left: 2px;
}

.quote-btn {
    background-color: #ffcc00;
    color: #111;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.quote-btn:hover {
    background-color: #e6b800;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
    min-height: 90vh;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    max-width: 650px;
}

.subtitle {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero h1 span {
    color: #ffcc00;
}

.filter-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    max-width: 950px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fff;
    color: #555;
    outline: none;
}

.range-inputs {
    display: flex;
    gap: 10px;
}

.slider-track {
    grid-column: span 2;
    height: 4px;
    background: #ddd;
    position: relative;
    margin: 10px 0;
}

.slider-track::before {
    content: '';
    position: absolute;
    left: 0;
    width: 70%;
    height: 100%;
    background: #ffcc00;
}

.slider-thumb {
    position: absolute;
    top: -6px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #ffcc00;
    border-radius: 50%;
}

.slider-thumb.left { left: 0%; }
.slider-thumb.right { left: 70%; }

.apply-btn {
    grid-column: span 2;
    background-color: #ffcc00;
    border: none;
    padding: 14px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    color: #111;
    transition: background 0.3s;
}

.apply-btn:hover {
    background-color: #e6b800;
}

/* Completed Dials / Stats Box (Fixed on Laptop Right Side) */
.stats-box {
    position: absolute;
    right: 80px;
    bottom: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    color: #111;
}

.stats-list {
    list-style: none;
    font-size: 12px;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.stats-list li::before {
    content: "•";
    color: #111;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
}

.stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stats-number {
    font-size: 22px;
    font-weight: bold;
    color: #111;
}

.progress-bar-container {
    width: 100%;
    background: #cbd5e1;
    height: 6px;
    border-radius: 3px;
    margin-top: 8px;
}

.progress-bar-fill {
    width: 78%;
    background: #0f172a;
    height: 100%;
    border-radius: 3px;
}

.progress-percentage {
    font-size: 12px;
    color: #333;
    font-weight: 600;
}

/* --- LATEST LISTINGS SECTION --- */
.section-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.section-subtitle span {
    color: #0f172a;
    font-weight: 600;
}

.filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    align-items: center;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #64748b;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: #0f172a;
    color: #ffffff;
}

.tab-btn:hover:not(.active) {
    color: #0f172a;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.listing-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card-img-container {
    position: relative;
    height: 220px;
    width: 100%;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.card-top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
}

.card-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background-color: #e2e8f0;
    color: #475569;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.card-address {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.card-footer {
    display: flex;
    gap: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-top: auto;
    font-size: 13px;
    color: #64748b;
}

.card-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- EXCLUSIVE ACCESS SECTION --- */
.exclusive-section {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px;
    max-width: 1200px;
    margin: 80px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 50px;
}

.exclusive-content {
    flex: 1;
}

.exclusive-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.exclusive-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.exclusive-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 320px;
}

.exclusive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- TESTIMONIAL & CONSULTATION CARDS SECTION --- */
.main-container-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 80px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.testimonial-section {
    text-align: center;
    max-width: 750px;
}

.testimonial-text {
    font-size: 18px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 25px;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.client-title {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.arrow-btn {
    background-color: #f59e0b;
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.arrow-btn:hover {
    background-color: #d97706;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.action-card {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f1f5f9;
}

.card-content {
    flex: 1;
}

.card-tag {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.card-link {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.card-link:hover {
    color: #f59e0b;
}

.card-image-box {
    width: 140px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- FOOTER SECTION --- */
footer {
    background-color: #ffffff;
    padding: 60px 80px 30px 80px;
    width: 100%;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.02);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #475569;
    font-size: 16px;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffcc00;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #64748b;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #0f172a;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
}

.contact-list li a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.3s;
}

.contact-list li a:hover {
    color: #0f172a;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom span {
    color: #0f172a;
    font-weight: 500;
}

/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    background-color: #ffcc00;
    color: #111;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.float-btn:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

/* --- RESPONSIVE MEDIA QUERIES (MOBILE VIEW ONLY) --- */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }
    nav {
        display: none; 
    }
    .hero {
        padding: 40px 20px;
    }
    .stats-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
        width: 100%;
    }
    .listings-grid, .cards-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .exclusive-section {
        flex-direction: column;
        padding: 30px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .filter-box {
        grid-template-columns: 1fr;
    }
    .apply-btn, .slider-track, .form-group {
        grid-column: span 1;
    }
}