.hero-banner {
    width: 100%;
    min-height: 480px;
    background: linear-gradient(135deg, #f9fbff 0%, #ffffff 100%);
    border-radius: 1.75rem;
    padding: clamp(1.25rem, 2.5vw, 3rem);
    box-shadow: 0 20px 55px rgba(15,23,42,.06);
}
.hero-banner .row {
    --bs-gutter-x: clamp(1rem, 2vw, 2.25rem);
    margin-left: 0;
    margin-right: 0;
}
.hero-banner h1 {
    line-height: 1.05;
    font-size: clamp(1.9rem, 3vw, 3.2rem);
}
.hero-banner .badge { font-size: .85rem; letter-spacing: .05em; }
.hero-visual {
    width: 100%;
    max-width: 100%;
}
.hero-banner img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 1.75rem;
    box-shadow: 0 30px 75px rgba(15,23,42,.07);
}
@media (min-width: 1200px) {
    .hero-banner {
        width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
    }
}
@media (max-width: 991.98px) {
    .hero-banner {
        min-height: auto;
    }

    .hero-banner .col-lg-6 {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-banner {
        border-radius: 1.25rem;
        padding: 1.25rem;
    }
}
.feature-card { background: #ffffff; border-radius: 1.25rem; padding: 2rem; box-shadow: 0 20px 45px rgba(15,23,42,.06); transition: transform .3s ease, box-shadow .3s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 28px 65px rgba(15,23,42,.1); }
.card { transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 45px rgba(15, 23, 42, .08); }
.property-image-wrap { position: relative; }
.property-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}
.section-title { margin-bottom: 2rem; }
.section-title h2 { font-weight: 700; }
.text-muted small { color: #6c757d; }

/* Photo Gallery Section */
.photo-gallery-section {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.03) 0%, rgba(13, 110, 253, 0.01) 100%);
    padding: 2rem;
    border-radius: 1.5rem;
}

.photo-gallery-section .display-6 {
    background: linear-gradient(135deg, #0d6efd 0%, #0d47a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 280px;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(13, 71, 161, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    gap: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: #ffffff;
    font-size: 2.5rem;
    animation: pulse-icon 0.6s ease-in-out forwards;
}

.gallery-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 0 1rem;
}

@keyframes pulse-icon {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal Styling */
.modal-content {
    border-radius: 1rem !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.modal-header {
    padding: 1.5rem !important;
    backdrop-filter: blur(10px);
}

.modal-body {
    padding: 0 !important;
    overflow: hidden;
}

.modal-body img {
    border-radius: 0.5rem;
    max-height: 70vh;
    object-fit: cover;
}

.modal-footer {
    padding: 1.5rem !important;
    gap: 0.5rem;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 220px;
    }
}

/* Stats Section */
.stats-section .stat-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
}

.stats-section .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15,23,42,.1);
}

.stats-section .stat-card h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Why Choose Us Section */
.why-choose-us .card {
    border: none;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-choose-us .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15,23,42,.12);
}

.why-choose-us .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials .card {
    border: none;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.testimonials .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15,23,42,.12);
}

.testimonials .fa-quote-left {
    margin-bottom: 1rem;
}
