﻿/* Contact Us Page Styles */
.contact-us-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: linear-gradient(135deg, #e6f0fa 0%, #d4e4f7 100%);
    padding-top: 20px;
    padding-bottom:10%;
}

.contact-container {
    width:90%;
    margin: 0 auto;
    padding: 10px 0px;
}

/* Hero Section */
.contact-hero {
    color: black;
    padding: 10px 0;
    text-align: center;
}

    .contact-hero h1 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .contact-hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

/* Main Content */
.contact-content {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info {
    flex: 1;
}

.contact-form-section {
    flex: 1;
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.4rem;
    color: black;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    color: black;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background-color: #e0f2fe;
    color: #2563eb;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-text h3 {
    color: black;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    color: black;
    margin-bottom: 0;
}

/* Social Links */
.social-links h3 {
    color: black;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border:solid 1px;
    border-radius: 10px;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background-color: #3498db;
        border-color:black;
        color: white;
        transform: translateY(-3px);
    }

/* Contact Form */
.contact-form-section h2 {
    font-size: 1.4rem;
    color: black;
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
    .contact-form i {
        color: #3498db;

    }
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: black;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control-contact {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

    .form-control-contact:focus {
        border-color: #2563eb;
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        background-color: white;
    }

textarea.form-control-contact {
    min-height: 150px;
    resize: vertical;
}

/* Submit Button */
.btn-submit-contact {
    width: 100%;
    padding: 16px;
    border: solid 1px;
    background-color: white;
    color: black;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

    .btn-submit-contact:hover {
        background-color: #3498db;
        border-color:black; 
        transform: translateY(-2px);
        color: white;
    }

    .btn-submit-contact:active {
        transform: translateY(0);
    }

/* Office Locations */
.office-locations {
    padding: 80px 0;
    background-color: #f8fafc;
    border-radius: 30px;
    margin-bottom: 60px;
}

    .office-locations h2 {
        font-size: 2.5rem;
        color: black;
        text-align: center;
        margin-bottom: 50px;
    }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .location-card:hover {
        transform: translateY(-10px);
    }

.location-icon {
    background-color: #e0f2fe;
    color: #2563eb;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.location-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-info p {
    color: #4a5568;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.location-info i {
    margin-right: 10px;
    color: #2563eb;
    width: 20px;
}

/* FAQ Section */
.faq-section h2 {
    font-size: 1.5rem;
    color: black;
    text-align: center;
    margin-bottom: 10px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background-color: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a365d;
}

    .faq-question:hover {
        background-color: #f1f5f9;
    }

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

    .faq-answer.active {
        padding: 20px 25px;
        max-height: 500px;
        background-color:white;
    }

    .faq-answer p {
        color: #4a5568;
        line-height: 1.6;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .office-locations h2,
    .faq-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
/*        padding: 70px 0;*/
    }

        .contact-hero h1 {
            font-size: 2.3rem;
        }

        .contact-hero p {
            font-size: 1rem;
        }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px;
    }

    .location-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 0 15px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
