/* Simple & Clean Contact Page Styles */

.contact-hero {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(78, 70, 229, 0.7) 100%), url('../images/illustrations/feeding.jpg') no-repeat center center;
    background-size: cover;
    background-position: center 25%;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin-top: -16px;
}

.contact-hero h1 {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 60px 0 80px;
    background-color: #f8f9fa;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.contact-card-title {
    font-family: var(--font-brand);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #6366F1;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.contact-info-item:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.info-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eef2ff;
    color: #6366F1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.phone-numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.phone-link:hover {
    background: #e0e7ff;
    color: #4338ca;
}

.phone-link i {
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.phone-link:hover i {
    opacity: 1;
}

.contact-info-item a.email-link {
    color: #6366F1;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.contact-info-item a.email-link:hover {
    color: #4338ca;
    text-decoration: underline;
}

.contact-text-content {
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}
