/* Pricing Highlight Styles */
.satvik-pricing {
    margin: 25px 0;
}

.price-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #9B773B, #b8864a);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(155, 119, 59, 0.3);
    position: relative;
    overflow: hidden;
}

.price-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.price-highlight:hover::before {
    left: 100%;
}

.price-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.floor-plans-pricing {
    margin: 30px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .satvik-pricing,
    .floor-plans-pricing {
        text-align: center;
        margin: 20px 0;
    }
    
    .price-highlight {
        padding: 12px 20px;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
}