
.contact-box{
    width: 670px;
    height: 900px;
    margin-right: 10px;
    margin-top: 150px;
    
    
}



.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1rem;
    margin-top: 70px;
    text-transform: uppercase;
    font-size: 30px;
    

}

.cutiile {
    display: flex;
    justify-content: center; /* Centrare pe orizontală */
    gap: 50px; /* Spațiu între casete */

}


/* Titlu secțiune - stil similar cu cel din secțiunea de servicii */
.cont-form h1 {
    color: rgba(255, 255, 255, 0);
    background: transparent;
    font-weight: 700;
    line-height: 2;
    width: 100%;
    text-align: center;
    margin-top: 30px; /* Asigură că este separat de celelalte elemente */
}

/* Adăugarea unui titlu personalizat deasupra formularului de contact */
.cont-form .form-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #f9f9f9;
    margin-bottom: 40px;
    letter-spacing: 0.1rem;
    padding-top: 40px;
    padding-bottom: 30px;
    text-transform: uppercase;
    background: none; /* Nu dorim fundal pentru titlu */
}



.cont-form{
    /*height: 100vh;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
   /* background-image: linear-gradient(to bottom, #1f064e, rgb(32, 15, 96), #432f9f, #593c87, #8851b5);*/
    /*padding: 50px 20px;*/
    box-sizing: border-box;
   /* border: 5px solid red;*/
     
}

.cont-form form{ /*asta este rama contact form-ului*/
    width: 670px;
    height: 600px;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    background: rgba(225, 225, 225, 0.1);
    backdrop-filter: blur(30px);
    flex-wrap: wrap;
    box-shadow: 0 10px 55px rgba(0, 0, 0, 0.3);
}

.cont-form h1{
    color: #fff;
    font-weight: 700;
    line-height: 2;
    margin-top: 20px;
    width: 500px;
    text-align: center;
}

.cont-form input{
    width: 300px;
    height: 50px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 20px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid #fff;
    color: #fff;
}

.cont-form input::placeholder{
    color: #fff;
}

/*.cont-form form #nume,
.cont-form form #telefon{
    margin-left: 20px;

}*/

.cont-form form h4{
    color: #fff;
    font-weight: 300;
    width: 600px;
    margin-top: 20px;
}

/*.cont-form form textarea{
    background: none;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-weight: 200px;
    font-size: 20px;
    padding: 10px;
    outline: none;
    min-height: 90px;
    max-height: 90px;
    min-width: 620px;
    max-width: 620px;
}*/

.cont-form form h4{
    font-size: 20px;
}

.cont-form #button{
    border: none;
    background: rgba(100, 100, 100, 0);
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.438);
    width: 140px;
    height: 50px;
    padding: 0;
    margin-bottom: 30px;
    transition: 0.3s;
     /* Creăm border-ul fals */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3); /* Border semi-transparent */
    border-radius: 5px; /* Colțuri rotunjite, opțional */
    transition: box-shadow 0.3s ease-in-out; /* Animăm la hover */
    backdrop-filter: blur(20px);
}

.cont-form #button:hover{
    background: rgba(157, 75, 193, 0.316);
    color: #fff;
    transition: 0.5s ease-in-out;
}


/*-----------------*/

.cont-form form textarea {
    background: rgba(255, 255, 255, 0.1); /* Fundal semi-transparent */
    border: none; /* Eliminăm border-ul implicit */
    color: #fff; /* Text alb */
    font-weight: 200; /* Ajustăm greutatea fontului */
    font-size: 20px;
    padding: 10px;
    outline: none;
    min-height: 90px;
    max-height: 90px;
    min-width: 620px;
    max-width: 620px;

    /* Creăm border-ul fals */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3); /* Border semi-transparent */
    border-radius: 5px; /* Colțuri rotunjite, opțional */
    transition: box-shadow 0.3s ease-in-out; /* Animăm la hover */
}

/* Efect la hover pentru a intensifica border-ul */
.cont-form form textarea:hover,
.cont-form form textarea:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6); /* Intensificăm transparența */
}


/*-------------------*/

/* Caseta din stânga */
.info-box {
    width: 670px;
    height: 600px;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    background: rgba(225, 225, 225, 0.1);
    backdrop-filter: blur(30px);
    flex-wrap: wrap;
    margin-right: 50px; /* Spațiu între casete */
    padding: 20px; /* Spațiu interior */
    position: relative;
    margin-top: 150px;
    box-shadow: 0 10px 55px rgba(0, 0, 0, 0.3);
    
}

.info-box h1 {
    color: #fff;
    font-weight: 700;
    line-height: 2;
    margin-top: 2px;
    width: 100%;
    text-align: center;
}

.info-box input,
.info-box textarea {
    width: 620px; /* Lățimea pentru câmpurile principale */
    height: 50px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 20px;
    margin-bottom: 0px;
    background: none;
    border-bottom: 2px solid #fff;
    color: #fff;
}

.info-box .contact-details {
    display: flex;
    gap: 10px; /* Spațiu între cele două câmpuri */
    width: 100%;
    justify-content: space-between;
    
}

.info-box .contact-details input {
    width: 300px; /* Lățime pentru câmpurile telefon și email */
    
   
}

.info-box textarea {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    /*border-bottom: 2px solid #fff;*/
    color: #fff;
    font-weight: 200;
    font-size: 20px;
    padding: 10px;
    min-height: 90px;
    max-height: 90px;
    width: 100%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin-bottom: 105px;
    margin-top: 80px;
}

.info-box input[readonly],
.info-box textarea[readonly] {
    /*background: rgba(255, 255, 255, 0);*/
    color: #fff;
    cursor: default;
    z-index: 50;
}



.info-box input{
    width: 300px;
    height: 50px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 20px;
    margin-bottom: 0px;
    background: none;
    border-bottom: 2px solid rgb(226, 226, 226);
    color: rgb(255, 255, 255);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); /* Border semi-transparent */
    border-radius: 0px; /* Colțuri rotunjite, opțional */
    transition: box-shadow 0.3s ease-in-out;
}







/* Responsivitate pentru ecrane mai mici */
