@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #c38665;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    --radius: 20px;
    --transition: all 0.25s ease;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.property-section {
    padding: 80px 0px;
    background: #000
}

.property-section .icon-small svg {
    width: 24px
}

.property-section h3.title {
    font-family: 'Raleway'
}

.property-section .detail-label, .property-section .detail-value {
    font-family: 'Poppins'
}

.property-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.property-wrapper h2 {
    text-align: center;
    color: #fff;
    font-size: 68px;
    font-family: 'Cormorant Garamond';
    margin-bottom: 24px;
    text-transform: uppercase
}

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

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp .6s ease forwards;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-small {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 28px;
    left: 28px;
    font-size: 26px;
}

.property-num {
    position: absolute;
    top: 28px;
    right: 28px;
    text-align: right;
}

.property-num .id {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.property-num .label {
    opacity: 0.7;
    font-size: 1rem;
}

.property-img {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    margin-top: 80px
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 25px;
    color: #fff;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
}

.comment-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.comment-row .detail-value {
    text-align: left
}

.detail-label {
    opacity: 0.75;
}

.detail-value {
    color: var(--primary);
    font-weight: 600;
    text-align: right
}

.card-buttons {
    margin-top: auto;
    display: flex;
    gap: 12px;
}

.btn {
    align-items: center;
    display: flex;
    justify-content: center;
    flex: 1;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.btn:hover {
    text-decoration: none
}

.btn-quote {
    background: var(--primary);
    color: #000;
}

.btn-quote:hover {
    background: #d59a7a;
    color: #000
}

.btn-call {
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.btn-call:hover {
    background: var(--primary);
    color: #000;
}

.btn-call svg {
    width: 32px;
    height: 32px;
    transition: var(--transition)
}

.btn path {
    fill: var(--primary)
}

.btn:hover path {
    fill: #000
}

@media(max-width:600px) {
    .card {
        padding: 30px;
        min-height: 280px;
    }

    .detail-row {
        font-size: 1.15rem;
    }

    .btn {
        font-size: 1.2rem;
        padding: 10px 0;
    }
}