/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/


.row{
display:flex;
gap:20px;
}

.row .col{
flex:1;
}

.form-red input,
.form-red textarea {
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(255,255,255,0.5);
    color:#fff;
}

.form-red input::placeholder,
.form-red textarea::placeholder {
    color:rgba(255,255,255,0.7);
}

.form-red input:focus,
.form-red textarea:focus {
    border-bottom-color:#fff;
}

.form-light input,
.form-light textarea {
    background:transparent;
    border:none;
    border-bottom:1px solid #ccc;
    color:#333;
}

.form-light input::placeholder,
.form-light textarea::placeholder {
    color:#888;
}

.form-light input:focus,
.form-light textarea:focus {
    border-bottom-color:#b30000;
}

@media(max-width:768px){
.row{
flex-direction:column;
}
}.fleet-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 0;
  padding: 0;
}

.fleet-list li {
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #ffffff;
  padding-left: 16px;
  border-left: 3px solid #ffffff;
}

@media (max-width: 480px) {
  .fleet-list {
    grid-template-columns: 1fr;
  }
}


.footer-sedi{
    display:flex;
	flex-direction: column;
	gap:30px;
}

.footer-sede{
    display:flex;
    flex-direction:column;
}

.footer-sede-label{
    font-size:20px;
    font-weight:600;
    color:#8B1E24 !important;
    margin-bottom:8px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-sede-text{
    font-size:16px;
    color:#555;
    line-height:1.5;
}

@media(max-width:768px){
    .footer-sedi{
        grid-template-columns:1fr;
        gap:20px;
    }
}


.footer-recapiti{
    display:flex;
    flex-direction:column;
}

.footer-recapiti-label{
    font-size:20px;
    font-weight:600;
    color:#8B1E24 !important;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-recapiti-row{
    font-size:16px;
    line-height:1.6;
    margin-bottom:6px;
}

.footer-recapiti-row a{
    color:#555;
    text-decoration:none;
    transition:all 0.2s ease;
}

.footer-recapiti-row a:hover{
    color:#8B1E24;
}

.footer-orari{
    display:flex;
    flex-direction:column;
}

.footer-orari h4{
    font-size:20px;
    font-weight:600;
    color:#8B1E24;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-orari-row{
    display:flex;
    justify-content:space-between; /* separa giorno e orario */
    font-size:16px;
    line-height:1.6;
    margin-bottom:6px;
    color:#555;
}


.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.article-card{
    display:flex;
    flex-direction:column;
    align-items:center; /* centra tutto */
    justify-content:center;
    text-align:center;
    padding:30px 20px;
    border:1px solid #eee;
    background:#fff;
    transition:all 0.2s ease;
}

.article-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transform:translateY(-3px);
}

.article-card h3{
    font-size:24px; /* più grande */
    font-weight:600;
    margin-bottom:20px;
    color:#222;
}

.btn-4{
    display:inline-block;
    background:#8B1E24;
    color:#fff;
    padding:10px 18px;
    text-decoration:none;
    border:1px solid #8B1E24;
    transition:all 0.2s ease;
}

.btn-4:hover{
    background:#6e171c;
    border-color:#6e171c;
    color:#fff !important;
}



.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-wrapper-white .form-field{
    margin-bottom:20px;
}

.form-wrapper-white .form-field input,
.form-wrapper-white .form-field textarea,
.form-wrapper-white .cv-upload input[type="file"]{
    width:100%;
    font-size:16px;
    color:#555;
    padding:7px 8px;
    border:none;
    border-bottom:1px solid #ddd;
    background:#fff;
    box-sizing:border-box;
    transition:all 0.2s ease;
}

.form-wrapper-white .form-field input:focus,
.form-wrapper-white .form-field textarea:focus,
.form-wrapper-white .cv-upload input[type="file"]:focus{
    outline:none;
    border-bottom-color:#8B1E24;
}

.form-wrapper-white .form-field textarea{
    min-height:140px;
    resize:vertical;
}

.form-wrapper-white .form-field input::placeholder,
.form-wrapper-white .form-field textarea::placeholder{
    color:#999;
}

.form-wrapper-white .cv-upload{
    margin-bottom:20px;
}

.form-wrapper-white .cv-label{
    font-size:16px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
}

.form-wrapper-white .cv-upload small{
    display:block;
    margin-top:8px;
    font-size:13px;
    color:#777;
}

.form-wrapper-white .wpcf7-submit,
.form-wrapper-white .btn-primary{
    display:inline-block;
    background:#8B1E24;
    color:#fff;
    padding:12px 24px;
    border:1px solid #8B1E24;
    text-decoration:none;
    cursor:pointer;
    transition:all 0.2s ease;
}

.form-wrapper-white .wpcf7-submit:hover,
.form-wrapper-white .btn-primary:hover{
    background:#6e171c;
    border-color:#6e171c;
    color:#fff;
}

@media(max-width:768px){
    .form-wrapper-white{
        padding:20px;
    }

    .form-wrapper-white .form-row{
        grid-template-columns:1fr;
        gap:0;
    }
}


.form-wrapper-red .form-field{
    margin-bottom:20px;
}

.form-wrapper-red .form-field input,
.form-wrapper-red .form-field textarea{
    width:100%;
    font-size:16px;
    color:#fff;
    padding:7px 8px;
    border:none;
    border-bottom:1px solid rgba(255,255,255,0.6);
    background:transparent;
    box-sizing:border-box;
    transition:all 0.2s ease;
}

.form-wrapper-red .form-field input:focus,
.form-wrapper-red .form-field textarea:focus{
    outline:none;
    border-bottom-color:#fff;
}

.form-wrapper-red .form-field textarea{
    min-height:140px;
    resize:vertical;
}

.form-wrapper-red .form-field input::placeholder,
.form-wrapper-red .form-field textarea::placeholder{
    color:rgba(255,255,255,0.7);
}

@media(max-width:768px){
    .form-wrapper-red .form-row{
        grid-template-columns:1fr;
        gap:0;
    }
}


.form-wrapper-red .btn-3{
    display:inline-block !important;
    padding:12px 24px !important;
    font-size:14px !important;
    font-weight:500 !important;
    color:#fff;
    background:transparent !important;
    border:1px solid #fff !important;
    text-decoration:none !important;
    cursor:pointer !important;
    transition:all 0.25s ease !important;
    border-radius:3px !important;
    letter-spacing:0.5px !important;
}

.form-wrapper-red .btn-3:hover{
    background:#fff !important;
    color:#8B1E24 !important;
    border-color:#fff !important;
}


.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* separatori */
.contact-info-row{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding-bottom:15px;
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.contact-info-row:last-child{
    border-bottom:none;
}

/* icona senza box */
.contact-info-icon{
    width:24px;
    height:24px;
    min-width:24px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-info-icon svg{
    width:20px;
    height:20px;
   
}

.contact-info-text{
    display:flex;
    flex-direction:column;
    gap:4px;
    font-size:16px;
    color:#fff;
}

.contact-info-label{
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    color:rgba(255,255,255,0.7);
    margin-bottom:4px;
}

.contact-info-text a{
    color:#fff;
    text-decoration:none;
    transition:opacity 0.2s ease;
}

.contact-info-text a:hover{
        color:#420303 !important;

}