/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    margin-bottom: 2rem;
}

.contact-section h3 {
    font-family: 'Roboto Slab', serif;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Contact info banner */
.contact-info {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Social media links grid */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Contact methods (email, telegram, etc.) */
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h5 {
    margin: 0;
    color: var(--navy);
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Newsletter/subscription highlights */
.newsletter-highlight {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary);
}

/* Telegram icon sizing */
.telegram-icon {
    width: 2.5em;
    height: 2.5em;
    vertical-align: -0.125em;
    object-fit: contain;
    background: white;
}

.telegram-icon-small {
    width: 1.2em;
    height: 1.2em;
    vertical-align: -0.125em;
    object-fit: contain;
    background: white;
}
