.heroImage {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
}

.heroImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 0 2rem;
    color: #fff;
}

.property-detail-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.location {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.contentContainer {
    margin-top: -3rem;
    /* Overlap effect */
    position: relative;
    z-index: 10;
}

.propertyDetailGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.property-detail-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.propertyDetailSectionHeader {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.statItem {
    display: flex;
    flex-direction: column;
}

.statLabel {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.statValue {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
}

.propertyDetailDescription {
    line-height: 1.8;
    color: var(--text-secondary);
}

.rightColumn {
    position: sticky;
    top: 100px;
    /* Below header */
    height: fit-content;
}

.contactCard {
    background: var(--color-navy);
    color: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contactCard h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.contactCard p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.agentInfo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agentAvatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.agentName {
    font-weight: 600;
    color: #fff;
}

.agentTitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .propertyDetailGrid {
        grid-template-columns: 1fr;
    }
}

.amenitiesList {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.amenityItem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.checkIcon {
    color: var(--color-gold);
    font-weight: bold;
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.galleryImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-medium);
    cursor: pointer;
}

.galleryImage:hover {
    transform: scale(1.03);
}