.property-hero {
    padding: 150px 0 88px;
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.property-hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.property-title {
    color: #fff;
    margin: 1rem 0 0.4rem;
    font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.property-subtitle {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1rem;
}

.property-price {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.4rem;
}

.property-hero .section-badge {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.property-hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.property-section {
    padding: 70px 0;
    background: var(--bg-white);
}

.property-section-light {
    background: var(--bg-light);
}

.property-highlights {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    padding: 1.3rem;
}

.property-highlight {
    text-align: center;
}

.property-highlight span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.property-highlight small {
    color: var(--text-light);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.property-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 1.8rem;
}

.property-card h2 {
    margin-bottom: 0.8rem;
}

.property-note {
    color: var(--text-light);
    margin-top: 0.8rem;
}

.property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.property-tags span {
    background: rgba(4, 30, 66, 0.08);
    color: #041e42;
    border-radius: 999px;
    font-size: 0.92rem;
    padding: 0.42rem 0.8rem;
}

.property-video-card {
    max-width: 1020px;
    margin: 0 auto;
}

.property-video {
    display: block;
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    background: #000;
}

.property-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.property-gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #f2f4f7;
    border: 1px solid #e8ebef;
}

.property-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.22s ease;
}

.property-gallery-item:hover img {
    transform: scale(1.03);
}

.property-booking-card {
    max-width: 980px;
    margin: 0 auto;
}

.property-booking-copy {
    margin-bottom: 1.4rem;
}

.property-cta {
    background: var(--bg-white);
    padding: 0 0 90px;
}

.property-cta-card {
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 2rem;
}

.property-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.property-listing-hero {
    padding: 130px 0 60px;
    background: linear-gradient(140deg, #041e42, #0b376f);
    color: #fff;
}

.property-listing-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.property-listing-head h1 {
    color: #fff;
    margin-top: 0.8rem;
}

.property-listing-head p {
    color: rgba(255, 255, 255, 0.86);
}

.property-listing-hero .section-badge {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.property-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.property-listing-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8ebef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-listing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.property-listing-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.property-listing-content {
    padding: 1rem;
    color: var(--text-dark);
}

.property-listing-content h2 {
    margin: 0.4rem 0;
    font-size: 1.16rem;
}

.property-listing-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.property-listing-type {
    display: inline-block;
    color: #041e42;
    background: rgba(4, 30, 66, 0.08);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.84rem;
}

@media (max-width: 980px) {
    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .property-hero {
        padding: 120px 0 72px;
    }

    .property-gallery {
        grid-template-columns: 1fr;
    }

    .property-card {
        padding: 1.25rem;
    }

    .property-cta-actions {
        width: 100%;
    }

    .property-cta-actions .btn {
        width: 100%;
        text-align: center;
    }
}
