/* 
    EASYBOOST CONTACT FEATURES - THE TRUST VAULT
    Theme: Cyber Luxury / Holographic Display
    Prefix: cf- (Contact Features)
*/

.cf-wrapper {
    background-color: #010103 !important;
    padding: 60px 0 120px 0 !important;
    position: relative;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.cf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- THE HOLOGRAPHIC GRID --- */
.cf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cf-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

/* Moving Spotlight Hover */
.cf-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at var(--mx) var(--my), rgba(0, 194, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.cf-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.cf-card:hover::before {
    opacity: 1;
}

/* Content Styling */
.cf-icon-wrap {
    width: 50px; height: 50px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #00C2FF;
    margin-bottom: 25px;
    transition: 0.3s;
}

.cf-card:hover .cf-icon-wrap {
    color: #fff;
    border-color: #00C2FF;
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
}

.cf-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cf-card p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- THE LIVE METRIC (Hal-chal) --- */
.cf-metric {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cf-pulse {
    width: 8px; height: 8px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25d366;
    animation: cf-pulse-glow 2s infinite;
}

@keyframes cf-pulse-glow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.cf-metric-text {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .cf-grid { grid-template-columns: 1fr; gap: 20px; }
}