/* HERO */

.contact-hero{
    padding:120px 0;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url("../images/contact-banner.jpg");

    background-size:cover;
    background-position:center;
    color:#fff;
}

.contact-tag{
    background:#2e7d32;
    padding:10px 25px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.contact-hero h1{
    font-size:60px;
    font-weight:800;
}

.contact-hero p{
    max-width:700px;
    margin:20px auto 0;
}

/* CONTACT */

.contact-section{
    padding:100px 0;
    background:#f8f9fa;
}

.contact-info h3{
    color:#1b5e20;
    font-weight:700;
    margin-bottom:20px;
}

.info-box{
    margin-top:25px;
}

.info-box h5{
    color:#1b5e20;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-control{
    padding:14px;
    border-radius:10px;
}

.contact-btn{
    background:#2e7d32;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#1b5e20;

}
/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding: 80px 0;
    background: #f8fbff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}

.contact-info{
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #dbeafe;
    height: 100%;
}

.contact-info h3{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.contact-info > p{
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.8;
}

.info-box{
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.info-box:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

.info-box h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e3a8a;
}

.info-box p{
    margin: 0;
    color: #475569;
    line-height: 1.8;
}

/* =========================
   FORM BOX
========================= */

.contact-form-box{
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #dbeafe;
    box-shadow: 0 4px 20px rgba(59,130,246,0.06);
}

.form-control{
    height: 55px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 0 15px;
    font-size: 15px;
    box-shadow: none !important;
}

.form-control:focus{
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12) !important;
}

textarea.form-control{
    height: auto;
    padding: 15px;
    resize: none;
}

/* =========================
   BUTTON
========================= */

.contact-btn{
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover{
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){

    .contact-info,
    .contact-form-box{
        padding: 30px;
    }

    .contact-section{
        padding: 60px 0;
    }

    .contact-info h3{
        font-size: 28px;
    }
}

@media (max-width: 768px){

    .contact-info,
    .contact-form-box{
        padding: 25px;
        border-radius: 16px;
    }

    .contact-info h3{
        font-size: 24px;
    }

    .contact-btn{
        width: 100%;
    }
}

/* MAP */

.map-section iframe {
    width: 100%;
    height: 500px;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    display: block;
    box-shadow:
        0 0 0 4px rgba(59, 130, 246, 0.05),
        0 4px 15px rgba(0, 0, 0, 0.05);
}

/* MOBILE */

@media(max-width:768px){

    .contact-hero h1{
        font-size:38px;
    }

    .contact-form-box{
        padding:25px;
    }

}

/* =========================
   MAP SECTION
========================= */
.map-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 20px;
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
    .map-section {
        padding: 0 20px;
    }

    .map-section iframe {
        height: 400px;
        border-radius: 18px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .map-section {
        padding: 0 15px;
        margin: 30px auto;
    }

    .map-section iframe {
        height: 300px;
        border-radius: 15px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .map-section {
        padding: 0 10px;
    }

    .map-section iframe {
        height: 250px;
        border-radius: 12px;
    }
}