:root {
    --primary-color: #0d6efd;
    --dark-color: #1f2937;
    --muted-color: #6b7280;
    --soft-bg: #f8fafc;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark-color);
    background-color: #ffffff;
}

.navbar {
    padding: 14px 0;
}

.navbar .nav-link {
    font-weight: 500;
    color: #374151;
    margin: 0 6px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color);
}

.hero-section {
    padding-top: 80px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted-color);
    max-width: 560px;
}

.hero-search {
    max-width: 680px;
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
}

.floating-card {
    position: absolute;
    left: 0;
    bottom: 70px;
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 18px;
}

.floating-icon {
    width: 45px;
    height: 45px;
    background-color: #e7f1ff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.section-heading p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.category-card,
.feature-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: 0.3s ease;
    height: 100%;
}

.category-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
}

.category-icon,
.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #e7f1ff;
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto;
}

.property-card {
    transition: 0.3s ease;
}

.property-card:hover {
    transform: translateY(-6px);
}

.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.property-meta {
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    padding: 12px 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-section {
        padding-top: 110px;
    }

    .hero-image {
        height: 420px;
    }

    .floating-card {
        left: 30px;
        bottom: 50px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        height: 320px;
    }

    .floating-card {
        position: static;
        margin-top: 16px;
    }
}
.page-header-section,
.detail-header-section {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.page-title,
.detail-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.page-subtitle {
    color: var(--muted-color);
    font-size: 18px;
    max-width: 680px;
}

.filter-box .form-control,
.filter-box .form-select {
    min-height: 46px;
}

.empty-state {
    min-height: 300px;
}

.detail-image-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    height: 100%;
}

.spec-icon {
    width: 46px;
    height: 46px;
    background-color: #e7f1ff;
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list span {
    color: var(--muted-color);
}

.related-image {
    height: 150px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb a {
    text-decoration: none;
}

.pagination {
    justify-content: center;
}

@media (max-width: 991px) {
    .page-title,
    .detail-title {
        font-size: 34px;
    }

    .detail-image-card img {
        height: 360px;
    }

    .sticky-sidebar {
        position: static;
    }
}

@media (max-width: 575px) {
    .page-header-section,
    .detail-header-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .page-title,
    .detail-title {
        font-size: 30px;
    }

    .detail-image-card img {
        height: 260px;
    }
}
.auth-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.auth-card {
    border: 1px solid #eef2f7;
}

.auth-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
}

.auth-card .form-control {
    min-height: 46px;
}

.dashboard-section {
    padding-top: 130px;
    padding-bottom: 70px;
    min-height: 100vh;
    background: #f8fafc;
}

.user-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: #e7f1ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
}

.dashboard-stat-card {
    height: 100%;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.purchase-property-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.request-list-item {
    padding: 18px 0;
    border-bottom: 1px solid #eef2f7;
}

.request-list-item:last-child {
    border-bottom: none;
}

.request-property-image {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
}

.info-box {
    padding: 16px;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    height: 100%;
    background-color: #ffffff;
}

.dashboard-request-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #eef2f7;
}

.dashboard-request-item:last-child {
    border-bottom: none;
}

@media (max-width: 991px) {
    .request-property-image {
        height: 180px;
    }

    .dashboard-request-item {
        flex-direction: column;
    }

    .dashboard-request-item .text-end {
        text-align: left !important;
    }
}
.design-choice-card {
    border: 2px solid #eef2f7;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    height: 100%;
    transition: 0.25s ease;
}

.design-choice-card:hover {
    transform: translateY(-4px);
    border-color: #b6d4fe;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.design-choice-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.18);
}

.design-choice-image {
    height: 180px;
    overflow: hidden;
}

.design-choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.design-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.design-specs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
