/* =========================================================================
   CONTACT INFO WIDGET — Premium Professional Design
========================================================================= */

.eci-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.eci-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.eci-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.eci-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
}

.eci-header-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.eci-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: eciFadeUp 0.8s ease backwards;
}

.eci-card:nth-child(2) { animation-delay: 0.2s; }
.eci-card:nth-child(3) { animation-delay: 0.4s; }

.eci-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 167, 100, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.eci-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(201, 167, 100, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.eci-card:hover .eci-icon-box {
    transform: scale(1.1) rotate(10deg);
    background: rgba(201, 167, 100, 0.2);
}

.eci-icon {
    color: #c9a764;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eci-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.eci-value {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
}

/* ── ANIMATIONS ── */
@keyframes eciFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .eci-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .eci-grid {
        grid-template-columns: 1fr;
    }
    .eci-card {
        padding: 30px 20px;
    }
}
