/* =================================================
   UNIFIED HOME PAGE STYLES
   Minimal CSS - Bootstrap handles layout, spacing, flex
   ================================================= */

/* =================================================
   UNIFIED CARD SYSTEM
   Used for statistics, values, and why-us sections
   ================================================= */
.unified-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(199, 21, 133, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.unified-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-magenta);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.unified-card:hover {
    background: rgba(199, 21, 133, 0.1);
    border-color: var(--magenta);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(199, 21, 133, 0.2);
}

.unified-card:hover::before {
    transform: scaleX(1);
}

/* Light theme cards (why-us section) */
.why-us-section .unified-card {
    background: var(--primary-white);
    border-color: var(--border-light);
}

.why-us-section .unified-card:hover {
    background: linear-gradient(180deg, var(--primary-white) 0%, var(--magenta-ultra-light) 100%);
}

/* =================================================
   RESPONSIVE - Mobile First Approach
   ================================================= */

/* Tablet Landscape (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .unified-card {
        min-height: 280px;
        padding: 1.75rem;
    }
}

/* Tablet Portrait (max-width: 767.98px) */
@media (max-width: 767.98px) {
    .unified-card {
        min-height: 280px;
        padding: 1.5rem;
        border-radius: 16px;
    }
}

/* Mobile (< 576px) */
@media (max-width: 575.98px) {
    .unified-card {
        min-height: 260px;
        padding: 1.5rem;
        border-radius: 16px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479.98px) {
    .unified-card {
        min-height: 240px;
        padding: 1.25rem;
    }
}
