.off-plan-grid-32a88d90 {
    width: 100%;
}

.off-plan-grid-container-32a88d90 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.off-plan-card-32a88d90 {
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.off-plan-card-32a88d90:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Gradient line at the top */
.off-plan-card-32a88d90::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff512f 0%, #dd2476 100%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.off-plan-card-header-32a88d90 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.off-plan-icon-wrapper-32a88d90 {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff0ec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.off-plan-icon-wrapper-32a88d90 i {
    font-size: 24px;
    color: #ff512f;
}

.off-plan-icon-wrapper-32a88d90 svg {
    width: 24px;
    height: 24px;
    fill: #ff512f;
}

.off-plan-header-text-32a88d90 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.off-plan-number-32a88d90 {
    font-size: 32px;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
}

.off-plan-card-title-32a88d90 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.off-plan-card-body-32a88d90 {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
}

.off-plan-card-body-32a88d90 p {
    margin: 0 0 1em 0;
}

.off-plan-card-body-32a88d90 p:last-child {
    margin-bottom: 0;
}

.off-plan-card-body-32a88d90 strong {
    color: #0f172a;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .off-plan-grid-container-32a88d90 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .off-plan-grid-container-32a88d90 {
        grid-template-columns: 1fr;
    }
    .off-plan-card-header-32a88d90 {
        flex-direction: row;
        align-items: center;
    }
}
