/*==================================
CONTACT HERO
==================================*/

.contact-hero{
    position:relative;
    min-height:650px;
    background:url("../images/contact/contact-hero.png") right center/cover no-repeat;
    overflow:hidden;
}

/* Overlay */

.contact-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.94) 22%,
        rgba(255,255,255,.75) 42%,
        rgba(255,255,255,.30) 60%,
        rgba(255,255,255,0) 78%
    );

    display:flex;
    align-items:center;
}

/* Hero Content */

.contact-hero-content{
    width:100%;
    max-width:1700px;
    margin:0 auto;
    padding-left:120px;
    padding-top:160px;

    display:flex;
    align-items:flex-start;

    min-height:650px;
}

/* Left Content */

.contact-left{
    width:48%;
    max-width:680px;
}

/* Hero Tag */

.hero-tag{
    color:#E31E24;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Heading */

.contact-left h1{
    font-size:64px;
    color:#123A80;
    line-height:1.1;
    margin:10px 0 40px;
}

/* Paragraph */

.contact-left p{
    max-width:620px;
    font-size:22px;
    color:#555;
    line-height:1.8;
    margin-bottom:40px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:40px;
    margin-top:10px;
}

.btn-message{
    background:#123A80;
    color:#fff;
    padding:18px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-message:hover{
    background:#0E2E69;
}

/* Phone */

.hero-phone{
    display:flex;
    align-items:center;
    gap:16px;
}

.hero-phone i{
    font-size:32px;
    color:#123A80;
}

.hero-phone span{

    display:block;

    color:#777;

    font-size:14px;

}


/* Contact Cards */

.contact-info{
    width:100%;
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.contact-info .container{
    width:92%;
    max-width:1400px;
    margin:auto;
}
.contact-item{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding:30px;
    min-height:220px; /* keeps all boxes the same height */
    position:relative;
}

.contact-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:25px;
}

.contact-header h3{
    margin:0;
    font-size:1.35rem;
    font-weight:700;
}

.contact-item p{
    margin:0 0 10px;
    line-height:1.8;
}
.contact-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:20px;
    bottom:20px;
    width:1px;
    background:#e6eaf2;
}
.info-grid{
    background:#fff;
    border-radius:24px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.info-card{

    padding:28px 28px;
    min-height:220px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    position:relative;

}

.info-card:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:40px;

    width:1px;

    height:180px;

    background:#E6E6E6;

}

.info-icon{

    width:52px;
    height:52px;

    font-size:24px;

    margin-bottom:20px;

    background:#EEF3FF;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#184A9C;

}

.info-card h3{

    font-size:20px;

    color:#163E87;

    margin-bottom:18px;

    font-weight:700;

}

.info-card p{

    font-size:15px;

    line-height:1.8;

    color:#555;
}
.info-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.info-header h3{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#123A80;
    line-height:1.2;

}

.info-icon i{
        transform:translateY(1px);

    font-size:24px;
    color:#2148B4;
    line-height:1;
}
/*==========================
CONTACT FORM
===========================*/

.contact-form-section{

    padding:80px 0 100px;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

}

.contact-form-box{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-form-box h2{

    color:#123A80;

    font-size:34px;

    margin-bottom:10px;

}

.red-line{

    width:70px;
    height:4px;

    background:#E31E24;

    border-radius:20px;

    margin-bottom:20px;

}

.contact-form-box p{

    color:#666;

    margin-bottom:30px;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:18px;

}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:15px;

    outline:none;

}

.contact-form-box textarea{

    resize:none;

    margin-top:18px;

}

.checkbox{

    display:flex;

    align-items:center;

    gap:10px;

    margin:20px 0;

    color:#555;

    font-size:15px;

}

.contact-form-box button{

    background:#123A80;

    color:#fff;

    border:none;

    padding:16px 35px;

    border-radius:10px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.contact-form-box button:hover{

    background:#E31E24;

}

.map-box{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;

    height:100%;

    min-height:620px;

    border:0;

}
.form-check{
    display:flex;
    align-items:center;
    gap:12px;
    margin:20px 0;
}

.form-check input[type="checkbox"]{
    width:18px;
    height:18px;
    margin:0;
    flex-shrink:0;
}

.form-check label{
    margin:0;
    font-size:15px;
    line-height:1.5;
    color:#555;
}

.form-check a{
    color:#123A80;
    text-decoration:none;
    font-weight:600;
}

.form-check a:hover{
    text-decoration:underline;
}
.success-message{
    max-width:1200px;
    margin:30px auto;
    padding:15px 20px;
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    border-radius:8px;
    font-weight:600;
}