/* =========================
   BASE (INSTALLATÉR STYLE)
========================= */

.contact-clean{
    padding:120px 0;
    background:#0f141c;
    color:#fff;
    font-family:system-ui, sans-serif;
}

/* =========================
   LAYOUT
========================= */

.contact-clean-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
}

/* =========================
   LEFT SIDE
========================= */

.contact-badge{
    font-size:11px;
    letter-spacing:2px;
    color:#2f7bdc;
    font-weight:800;
    margin-bottom:12px;
}

.contact-title{
    font-size:48px;
    font-weight:900;
    line-height:1.05;
}

.contact-text{
    margin-top:14px;
    color:rgba(255,255,255,0.65);
    max-width:520px;
    line-height:1.7;
}

/* =========================
   FORM
========================= */

.contact-form{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    padding:14px 16px;

    border-radius:14px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(47,123,220,0.12);

    color:#fff;
    font-size:14px;

    outline:none;

    transition:.25s ease;

    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:rgba(255,255,255,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:rgba(47,123,220,0.6);
    background:rgba(47,123,220,0.05);
    box-shadow:0 0 0 3px rgba(47,123,220,0.12);
}

/* textarea */
.contact-form textarea{
    resize:none;
}

/* =========================
   PRIVACY
========================= */

.privacy{
    display:flex;
    align-items:flex-start;
    gap:12px;

    margin-top:8px;
    padding:10px 12px;

    border-radius:12px;

    background:rgba(47,123,220,0.03);
    border:1px solid rgba(47,123,220,0.10);

    font-size:12px;
    line-height:1.5;
    color:rgba(255,255,255,0.65);

    cursor:pointer;
    transition:.25s ease;
}

.privacy:hover{
    border-color:rgba(47,123,220,0.35);
    background:rgba(47,123,220,0.06);
}

/* checkbox */
.privacy input{
    margin:0;
    margin-top:2px;

    width:16px;
    height:16px;

    flex-shrink:0;

    accent-color:#2f7bdc;
}

/* link */
.privacy-link{
    color:#2f7bdc;
    font-weight:800;
    text-decoration:none;

    border-bottom:1px solid rgba(47,123,220,0.35);

    transition:.2s ease;
}

.privacy-link:hover{
    color:#6aa6ff;
    border-color:rgba(106,166,255,0.7);
}

/* =========================
   BUTTON
========================= */

.contact-btn.primary{
    height:52px;

    border:none;
    border-radius:14px;

    background:linear-gradient(135deg,#1f5fa8,#2f7bdc);
    color:#fff;

    font-weight:900;
    letter-spacing:1px;

    cursor:pointer;

    transition:.3s ease;

    box-shadow:0 18px 40px rgba(47,123,220,0.18);
}

.contact-btn.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 25px 60px rgba(47,123,220,0.25);
}

/* =========================
   RIGHT SIDE
========================= */

.contact-clean-right{
    display:flex;
}

.contact-info-box{
    width:100%;
    padding:30px;

    border-radius:16px;

    background:rgba(255,255,255,0.02);
    border:1px solid rgba(47,123,220,0.10);
}

.contact-info-box h3{
    font-size:12px;
    letter-spacing:2px;
    color:#2f7bdc;
    margin-bottom:18px;
}

/* =========================
   CONTACT ITEMS
========================= */

.contact-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid rgba(47,123,220,0.08);
}

.contact-item .label{
    font-size:13px;
    color:rgba(255,255,255,0.6);
}

/* action */
.contact-action{
    padding:10px 14px;

    border-radius:10px;

    background:rgba(47,123,220,0.06);
    border:1px solid rgba(47,123,220,0.18);

    color:#fff;
    font-size:12px;
    font-weight:800;

    cursor:pointer;

    transition:.25s ease;
}

.contact-action:hover{
    background:rgba(47,123,220,0.15);
    border-color:rgba(47,123,220,0.4);
    transform:translateY(-2px);
}

/* =========================
   ADDRESS
========================= */

.contact-address{
    margin-top:18px;
    padding-top:18px;

    border-top:1px solid rgba(47,123,220,0.08);

    color:rgba(255,255,255,0.6);
    font-size:14px;
    line-height:1.6;
}

/* =========================
   OPENING HOURS
========================= */

.opening-hours{
    margin-top:25px;
    padding-top:20px;

    border-top:1px solid rgba(47,123,220,0.08);
}

.opening-hours h4{
    font-size:12px;
    letter-spacing:2px;
    color:#8fa6c7;
    margin-bottom:12px;
}

.hours-grid{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.hours-grid div{
    display:flex;
    justify-content:space-between;

    font-size:13px;
    color:rgba(255,255,255,0.6);
}

.hours-grid strong{
    color:#fff;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

.contact-clean-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.contact-title{
    font-size:34px;
}

}