﻿/*=========================================================
                    CONTACT PAGE BANNER
=========================================================*/



/*=========================================================
                    CONTACT SECTION
=========================================================*/

.contact-main {
    padding: 100px 0;
    background: #f8f9fc;
}

.contact-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

/*=========================================================
                    CONTACT INFORMATION
=========================================================*/

.contact-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .contact-card h2 {
        color: #0d47a1;
        font-size: 32px;
        margin-bottom: 25px;
    }

    .contact-card p {
        color: #666;
        line-height: 1.9;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .contact-card strong {
        color: #0d47a1;
    }

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #0d47a1;
    margin-bottom: 6px;
    font-size: 20px;
}

.contact-text p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/*=========================================================
                    CONTACT FORM
=========================================================*/

.contact-form {
    background: #ffffff;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .contact-form h2 {
        color: #0d47a1;
        margin-bottom: 30px;
        font-size: 34px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: .3s;
    margin-bottom: 20px;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #0d47a1;
        box-shadow: 0 0 10px rgba(13,71,161,.15);
    }

.contact-form textarea {
    resize: none;
    min-height: 180px;
}

.contact-form button {
    width: 100%;
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
}

    .contact-form button:hover {
        background: #ff7a00;
        transform: translateY(-3px);
    }
/*=========================================================
                    INFO CARDS
=========================================================*/

.info-section {
    background: #ffffff;
    padding: 100px 0;
}

.info-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.info-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.info-icon {
    width: 80px;
    height: 80px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
}

.info-card h3 {
    color: #0d47a1;
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

/*=========================================================
                    BUSINESS HOURS
=========================================================*/

.business-hours {
    padding: 100px 0;
    background: #f8f9fc;
}

.hours-box {
    width: 90%;
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .hours-box h2 {
        color: #0d47a1;
        text-align: center;
        margin-bottom: 30px;
        font-size: 36px;
    }

.hours-list {
    list-style: none;
}

    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        color: #555;
        font-size: 17px;
    }

        .hours-list li:last-child {
            border-bottom: none;
        }

    .hours-list span {
        color: #0d47a1;
        font-weight: 600;
    }

/*=========================================================
                    SOCIAL MEDIA
=========================================================*/

.social-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

    .social-section h2 {
        color: #0d47a1;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .social-section p {
        color: #666;
        margin-bottom: 35px;
        font-size: 18px;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .social-icons a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #0d47a1;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        transition: .35s;
    }

        .social-icons a:hover {
            background: #ff9800;
            transform: translateY(-6px);
        }

/*=========================================================
                    GOOGLE MAP
=========================================================*/

.map-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.map-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

    .map-container iframe {
        width: 100%;
        height: 500px;
        border: none;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }
/*=========================================================
                    FAQ SECTION
=========================================================*/

.faq-section {
    background: #ffffff;
    padding: 100px 0;
}

.faq-container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
}

    .faq-item:hover {
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

.faq-question {
    background: #0d47a1;
    color: #fff;
    padding: 22px 30px;
    font-size: 20px;
    font-weight: 600;
}

.faq-answer {
    padding: 25px 30px;
    color: #666;
    line-height: 1.9;
    background: #fff;
}

/*=========================================================
                    CONTACT CTA
=========================================================*/

.contact-cta {
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

    .contact-cta h2 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .contact-cta p {
        max-width: 850px;
        margin: 0 auto 35px;
        color: #dfe8ff;
        font-size: 18px;
        line-height: 1.8;
    }

    .contact-cta .btn {
        margin-top: 10px;
    }

/*=========================================================
                    CONTACT FORM SUCCESS
=========================================================*/

.success-message {
    display: none;
    margin-top: 20px;
    padding: 18px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 12px;
    border: 1px solid #81c784;
    font-weight: 600;
    text-align: center;
}

.error-message {
    display: none;
    margin-top: 20px;
    padding: 18px;
    background: #ffebee;
    color: #c62828;
    border-radius: 12px;
    border: 1px solid #ef9a9a;
    font-weight: 600;
    text-align: center;
}

/*=========================================================
                    RESPONSIVE
=========================================================*/

@media(max-width:992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-card,
    .contact-form {
        padding: 35px;
    }

    .map-container iframe {
        height: 400px;
    }
}

@media(max-width:768px) {

    .page-banner {
        padding: 100px 20px;
    }

        .page-banner h1 {
            font-size: 40px;
        }

        .page-banner p {
            font-size: 16px;
        }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hours-box {
        padding: 35px 25px;
    }

        .hours-box h2 {
            font-size: 30px;
        }

    .hours-list li {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .social-section h2 {
        font-size: 32px;
    }

    .contact-form h2 {
        font-size: 30px;
    }

    .contact-card h2 {
        font-size: 28px;
    }

    .contact-cta {
        padding: 80px 20px;
    }

        .contact-cta h2 {
            font-size: 34px;
        }

    .map-container iframe {
        height: 320px;
    }
}

@media(max-width:480px) {

    .page-banner h1 {
        font-size: 30px;
    }

    .page-banner p {
        font-size: 15px;
    }

    .contact-card,
    .contact-form {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        margin-bottom: 10px;
    }

    .social-icons {
        gap: 15px;
    }

        .social-icons a {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }

    .contact-cta h2 {
        font-size: 28px;
    }

    .contact-cta p {
        font-size: 16px;
    }

    .map-container iframe {
        height: 260px;
    }
}

/*=========================================================
                    END OF CONTACT.CSS
=========================================================*/