/* ============================================
   Visa Services & Contact Page Styles
   ============================================ */

/* Visa Process Card */
.visa-process-card {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    color: var(--white);
}

.visa-process-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.visa-process-list {
    padding-left: 1.25rem;
}

.visa-process-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Visa Country Cards */
.visa-country-card {
    display: block;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.visa-country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.visa-country-flag {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.visa-country-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.visa-country-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1E40AF;
}

.visa-country-card p {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0 0 0.5rem;
}

.visa-country-cta {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1E40AF;
}

.visa-country-card:hover .visa-country-cta {
    color: #1E3A8A;
}

/* Requirements Card */
.requirements-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.requirements-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.requirements-card ul {
    margin-bottom: 1rem;
}

.requirements-card ul li {
    margin-bottom: 0.5rem;
}

.requirements-card-accent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-info-whatsapp .contact-info-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

/* Contact Form */
.contact-form-wrapper {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.2);
}

/* Map Section */
.contact-map {
    position: relative;
}

.contact-map iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.map-overlay-content {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.map-overlay-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-overlay-content p {
    font-size: 0.875rem;
    color: var(--text-light);
}
