*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#f4f4f4;
    color:#111;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

.coming-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:clamp(25px,5vw,60px);
}

.coming-container{
    width:100%;
    max-width:1400px;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    background:#fff;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

/* =========================
   LEFT PANEL
========================= */

.left-panel{
    background:#ffffff;
    padding:clamp(35px,6vw,90px);
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
}

.left-panel::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('../images/lady-justice.jpg') no-repeat center center;
    background-size:cover;
    opacity:0.08;
}

.logo{
    width:clamp(220px,32vw,420px);
    max-width:100%;
    margin:0 auto 45px;
    display:block;
    position:relative;
    z-index:2;
}

.left-panel h1{
    font-size:clamp(34px,5vw,62px);
    font-weight:800;
    line-height:1;
    margin-bottom:25px;
    color:#111;
    position:relative;
    z-index:2;
}

.left-panel h1 span{
    color:#1d1dbf;
}

.left-panel p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    max-width:650px;
    margin:0 auto 45px;
    position:relative;
    z-index:2;
}

.highlight-text{
    color:#d80000;
    font-weight:700;
}

/* =========================
   INFO GRID
========================= */

.info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

.info-card{
    background:#fafafa;
    border-left:4px solid #1d1dbf;
    padding:25px;
    text-align:left;
}

.info-card h4{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
    color:#111;
}

.info-card p,
.info-card a{
    font-size:15px;
    color:#555;
    line-height:1.7;
    text-decoration:none;
}

/* =========================
   RIGHT PANEL
========================= */

.right-panel{
    background:#111a48;
    padding:clamp(35px,6vw,90px);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.form-title{
    margin-bottom:40px;
}

.form-title h2{
    font-size:clamp(30px,4vw,46px);
    font-weight:800;
    margin-bottom:15px;
}

.form-title p{
    color:#d0d0d0;
    line-height:1.8;
    font-size:16px;
}

.gold-line{
    width:90px;
    height:4px;
    background:#d80000;
    margin-top:20px;
}

.contact-form{
    margin-top:20px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px 22px;
    border:none;
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-size:15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#d0d0d0;
}

.contact-form textarea{
    height:180px;
    resize:none;
    margin-bottom:25px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    background:rgba(255,255,255,0.12);
}

.submit-btn{
    background:#d80000;
    color:#fff;
    border:none;
    padding:18px 45px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#ffffff;
    color:#111a48;
}

.bottom-note{
    margin-top:50px;
    color:#cfcfcf;
    line-height:1.8;
    font-size:14px;
}

.bottom-note strong{
    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .coming-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .coming-wrapper{
        padding:0;
    }

    .coming-container{
        box-shadow:none;
    }

    .info-grid,
    .form-grid{
        grid-template-columns:1fr;
    }

    .left-panel,
    .right-panel{
        padding:45px 25px;
    }

}

@media(max-width:480px){

    .left-panel,
    .right-panel{
        padding:35px 20px;
    }

    .submit-btn{
        width:100%;
    }

    .contact-form input,
    .contact-form textarea{
        font-size:14px;
        padding:16px;
    }

}