/* Contact Info Card Styles */
.contact-info-card {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.info-header {
    margin-bottom: 25px;
    text-align: right;
}

.info-header h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.info-header h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-method h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-method p {
    margin: 0 0 5px 0;
}

.contact-method a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-color);
}

/* For English version */
html[dir="ltr"] .info-header {
    text-align: left;
}

html[dir="ltr"] .info-header h3:after {
    right: auto;
    left: 0;
}

html[dir="ltr"] .contact-method i {
    margin-left: 0;
    margin-right: 15px;
}
