/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    color: #2d5aa0;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #2d5aa0;
    line-height: 1.6;
}

.contact-details a {
    color: #2d5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1a365d;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    color: #6b7280 !important;
    font-style: italic;
}

.contact-form {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-intro {
    color: #4a5f7f;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    border-color: #ffd700;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.faq-icon i {
    color: #ffd700;
    font-size: 1.3rem;
}

.faq-item h3 {
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: #4a5f7f;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.map-placeholder i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.map-note {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-style: italic;
}

/* Social Media Links Large */
.social-links-large {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link-large:hover {
    background: #ffd700;
    color: #1a365d;
    transform: translateY(-5px);
    border-color: #ffd700;
}

.social-link-large i {
    font-size: 2rem;
}

.social-link-large span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* About CTA Section (Social Media) */
.about-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    text-align: center;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.about-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Media CTA Section */
.social-links-large {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link-large:hover {
    background: white;
    color: #1a365d;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link-large i {
    font-size: 1.5rem;
}

.social-link-large span {
    font-size: 1rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact-form {
        padding: 2rem;
    }

    .faq-grid {
        gap: 1.5rem;
    }

    .social-links-large {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-link-large {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
        padding: 1.2rem 1rem;
    }

    .map-placeholder {
        padding: 3rem 1.5rem;
    }

    .map-placeholder i {
        font-size: 3rem;
    }

    .contact-info {
        gap: 1.5rem;
    }
}