.contact-section {
    background: #ffffff;
    direction: rtl;
    text-align: right;
}

/* =========================
   HERO (FIXED)
========================= */

.contact-hero {
    min-height: 260px;
    padding: 70px 0;
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 40px 0;
        min-height: auto;
    }
}

.hero-title {
    font-size: 2rem;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 2;
}

/* =========================
   CONTACT CARD
========================= */

.contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 25px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: #0d6efd;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

/* =========================
   ICONS
========================= */

.icon-box {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.icon-box i {
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box i {
    transform: scale(1.15);
}

/* COLORS */
.phone {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.email {
    background: rgba(102, 16, 242, 0.1);
    color: #6610f2;
}

.location {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.bale {
    background: rgba(0, 170, 90, 0.1);
    color: #00aa5a;
}

/* =========================
   LINKS (FIXED OVERFLOW)
========================= */

.contact-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-block;
    max-width: 100%;

    /* FIX overflow better than break-word */
    overflow-wrap: anywhere;
}

.contact-link:hover {
    color: #0d6efd;
}

.email-text {
    font-size: 0.95rem;
}

/* =========================
   WORK HOURS
========================= */

.work-hours {
    background: #f8fafc;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid #eef2f7;
}

.hours-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .contact-card {
        border-radius: 20px;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 22px 15px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .contact-link {
        font-size: 0.92rem;
    }

    .work-hours {
        padding: 18px 15px;
    }
}

/* =========================
   360px ICON FIX (NEW)
========================= */

@media (max-width: 380px) {
    .icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* =========================
   DISABLE HOVER ON TOUCH
========================= */

@media (hover: none) and (pointer: coarse) {
    .contact-card:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    }
}

