:root {
    --vetter-blue: #1d4ed8;
    --dark: #1a1a1a; 
    --gray: #f4f4f5; 
    --accent: #e31e24; 
    --border: #e5e7eb;
    }
body { }

/* CONTACT SECTION */
.page--contact { 
    /*font-family: 'Inter', sans-serif; */
    margin: 0; 
    color: var(--dark); 
    line-height: 1.6; 
    background-color: #fff; 
}
.contact-section { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }

/* H1 TITLU PAGINA */
.contact-section h1.page-title {
    text-align: center; 
    font-size: 42px; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 10px; 
    letter-spacing: -1px; 
    line-height: 1.6; 
}

.company-legal { text-align: center; margin-bottom: 50px; }
.company-legal h2 { 
    font-size: 24px; 
    margin-bottom: 10px; 
    color: #444; 
    font-weight: 600;
    }

.legal-details { color: #777; font-size: 14px; margin-bottom: 40px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
        
.cta-list { display: flex; flex-direction: column; gap: 15px; }
.cta-card { padding: 20px; border-radius: 12px; background: var(--gray); display: flex; align-items: center; gap: 15px; }
.cta-card i { color: var(--dark); font-size: 18px; background: #fff; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.cta-card p { margin: 0; font-size: 14px; }

/* FORMULAR */
label[for="customer_contact__agree_terms"] {
    font-size: 14px;
}

form#customer_contact button#customer_contact__submit {
    background: var(--dark); 
    color: #fff; 
    border: none; 
    padding: 15px 30px; 
    border-radius: 8px; 
    font-weight: bold; 
    cursor: pointer; 
    width: 100%; 
    transition: 0.3s;
    display: block;
}
form#customer_contact button#customer_contact__submit:hover { background: var(--accent); }

form#customer_contact a#customer_contact__cancel { display: none; }


.contact-form { background: #fff; border: 1px solid var(--border); padding: 30px; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.03); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; color: #555; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; box-sizing: border-box; }

        /* MAP */
.map-container { height: 400px; width: 100%; border: none; margin-top: 50px; filter: grayscale(1); transition: 0.5s; }
.map-container:hover { filter: grayscale(0); }

        /* LOCATIONS GRID */
.locations-section { padding: 80px 5%; background: #fdfdfd; border-top: 1px solid #eee; }
.locations-section a { text-decoration: none; color: var(--dark); }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.loc-card { border: 1px solid #eee; padding: 25px; border-radius: 12px; background: #fff; transition: 0.3s; }
.loc-card:hover { border-color: var(--dark); transform: translateY(-3px); }
.loc-card h3 { margin: 0 0 10px; font-size: 15px; font-weight: 700; color: var(--dark); }
.loc-card p { font-size: 13px; color: #666; margin: 0; }

@media (max-width: 850px) {
    .contact-grid { grid-template-columns: 1fr; } 
    .page-title { font-size: 32px; } 
}
