﻿
/* ===================================
   PAGE BANNER
=================================== */

.page-banner {
    position: relative;
    background: linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)), url('../images/banner/contact-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    overflow: hidden;
}

    .page-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( 135deg, rgba(25,155,67,.20), rgba(246,139,31,.15) );
    }

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

    .page-banner-content h1 {
        font-size: 54px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-banner-content p {
        max-width: 800px;
        margin: auto;
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255,255,255,.95);
    }

    /* Orange Underline */

    .page-banner-content h1::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: #F68B1F;
        margin: 15px auto 0;
        border-radius: 10px;
    }

/* ===================================
   CONTACT INFO SECTION
=================================== */

.contact-info-section {
    background: #f8faf9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.info-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .info-card:hover {
        transform: translateY(-8px);
    }

    .info-card i {
        font-size: 50px;
        color: #F68B1F;
        margin-bottom: 20px;
    }

    .info-card h3 {
        color: #199B43;
        margin-bottom: 15px;
    }

    .info-card p {
        color: #666;
        line-height: 1.8;
    }

/* ===================================
   CONTACT MAIN
=================================== */

.contact-main {
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===================================
   CONTACT FORM
=================================== */

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .contact-form-box h2 {
        color: #199B43;
        margin-bottom: 10px;
    }

    .contact-form-box p {
        color: #666;
        margin-bottom: 30px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px 18px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 15px;
        transition: .3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #199B43;
            box-shadow: 0 0 0 3px rgba(25,155,67,.10);
        }

    .form-group textarea {
        resize: none;
    }

.contact-form-box .btn-primary {
    background: #199B43;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .contact-form-box .btn-primary:hover {
        background: #F68B1F;
    }

/* ===================================
   CONTACT DETAILS
=================================== */

.contact-details-box {
    background: linear-gradient(135deg,#199B43,#10692E);
    color: #fff;
    padding: 35px;
    border-radius: 20px;
    position: sticky;
    top: 120px;
}

    .contact-details-box h2 {
        margin-bottom: 10px;
    }

    .contact-details-box p {
        color: rgba(255,255,255,.85);
        margin-bottom: 25px;
    }

    .contact-details-box ul {
        margin-bottom: 30px;
    }

        .contact-details-box ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            line-height: 1.8;
        }

            .contact-details-box ul li i {
                color: #F68B1F;
                margin-top: 4px;
            }

/* ===================================
   SOCIAL LINKS
=================================== */

.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        background: rgba(255,255,255,.15);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

        .social-links a:hover {
            background: #F68B1F;
            transform: translateY(-3px);
        }

/* ===================================
   GOOGLE MAP
=================================== */

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* ===================================
   FAQ SECTION
=================================== */

.contact-faq {
    background: #f8faf9;
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

    .faq-item h3 {
        color: #199B43;
        margin-bottom: 12px;
    }

    .faq-item p {
        color: #666;
        line-height: 1.8;
    }

/* ===================================
   CONTACT CTA
=================================== */

.contact-cta {
    background: linear-gradient(135deg,#199B43,#12692D);
    text-align: center;
    color: #fff;
    padding: 100px 20px;
}

    .contact-cta h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .contact-cta p {
        max-width: 700px;
        margin: auto;
        margin-bottom: 30px;
        font-size: 18px;
    }

    .contact-cta .btn-primary {
        display: inline-block;
        background: #F68B1F;
        color: #fff;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        transition: .3s;
    }

        .contact-cta .btn-primary:hover {
            background: #fff;
            color: #199B43;
        }

/* ===================================
   WHATSAPP BUTTON
=================================== */

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .whatsapp-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(37,211,102,.25);
    }

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px) {

    .contact-info-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-details-box {
        position: static;
    }
}

@media(max-width:768px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 25px;
    }

    .contact-cta h2 {
        font-size: 30px;
    }

    .map-section iframe {
        height: 350px;
    }


    .page-banner {
        padding: 80px 0;
    }

    .page-banner-content h1 {
        font-size: 34px;
    }

    .page-banner-content p {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 10px;
    }
}
