/* =========================
   BASE
========================= */

.contact-clean{
    padding:120px 0;
    background:#151a22;
    color:#fff;
    font-family:system-ui, sans-serif;
}

.contact-clean-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
}

/* =========================
   LEFT SIDE
========================= */

.contact-badge{
    font-size:11px;
    letter-spacing:2px;
    color:#d60000;
    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 (FIXED DESIGN)
========================= */

.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(255,255,255,0.08);

    color:#fff;
    font-size:14px;

    outline:none;

    transition:.25s ease;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.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(214,0,0,0.55);
    background:rgba(255,255,255,0.05);
    box-shadow:0 0 0 3px rgba(214,0,0,0.12);
}

.contact-form textarea{
    resize:none;
}

/* privacy */

/* WRAPPER */
.privacy{
    display:flex;
    align-items:flex-start;
    gap:12px;

    margin-top:8px;
    padding:10px 12px;

    border-radius:12px;

    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.06);

    font-size:12px;
    line-height:1.5;
    color:rgba(255,255,255,0.65);

    cursor:pointer;
    transition:.25s ease;
}

/* hover efekt boxu */
.privacy:hover{
    border-color:rgba(214,0,0,0.25);
    background:rgba(214,0,0,0.03);
}

/* checkbox */
.privacy input{
    margin:0;
    margin-top:2px;

    width:16px;
    height:16px;

    flex-shrink:0;

    accent-color:#d60000;

    cursor:pointer;
}

/* text container */
.privacy span{
    display:block;
}

/* link */
.privacy-link{
    color:#d60000;
    font-weight:800;
    text-decoration:none;

    border-bottom:1px solid rgba(214,0,0,0.35);

    transition:.2s ease;
}

.privacy-link:hover{
    color:#ff2a2a;
    border-color:rgba(255,42,42,0.7);
}

/* submit */
.contact-btn.primary{
    height:52px;

    border:none;
    border-radius:14px;

    background:linear-gradient(135deg,#b80000,#ff2a2a);
    color:#fff;

    font-weight:900;
    letter-spacing:1px;

    cursor:pointer;

    transition:.3s ease;

    box-shadow:0 18px 40px rgba(214,0,0,0.25);
}

.contact-btn.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 25px 60px rgba(214,0,0,0.35);
}

/* =========================
   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(255,255,255,0.08);
}

.contact-info-box h3{
    font-size:12px;
    letter-spacing:2px;
    color:#d60000;
    margin-bottom:18px;
}

/* =========================
   CONTACT ITEMS (NEW)
========================= */

.contact-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,0.06);
}

.contact-item .label{
    font-size:13px;
    color:rgba(255,255,255,0.6);
}

/* ACTION BUTTON (IMPORTANT) */
.contact-action{
    padding:10px 14px;

    border-radius:10px;

    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.10);

    color:#fff;
    font-size:12px;
    font-weight:800;

    cursor:pointer;

    transition:.25s ease;
}

.contact-action:hover{
    background:rgba(214,0,0,0.15);
    border-color:rgba(214,0,0,0.35);
    transform:translateY(-2px);
}

/* ADDRESS */
.contact-address{
    margin-top:18px;
    padding-top:18px;

    border-top:1px solid rgba(255,255,255,0.06);

    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(255,255,255,0.06);
}

.opening-hours h4{
    font-size:12px;
    letter-spacing:2px;
    color:#8f98a3;
    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;
}

}