/* CONTACT PAGE STYLING */
.contact-full-page {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px; 
}

.contact-hero {
    text-align: center;
    padding: 60px 20px 40px;
}

.contact-accent-text {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
}

.contact-text-gradient {
    background: linear-gradient(90deg, #0f172a 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-intro {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* 1. CONTACT CARDS */
.contact-cards-section {
    padding: 0 20px;
    margin-bottom: 80px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.info-card svg {
    color: #00d4ff;
    margin: 0 auto 15px;
}

.card-title {
    font-size: 1.2rem;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-value {
    color: #64748b;
    text-decoration: none;
    font-size: 1rem;
}

/* 2. CONTACT FORM STYLING */
.contact-form-section {
    padding: 40px 20px;
    background: #f1f5f9;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Centrare Titluri peste Formular */
.form-heading,
.form-subheading {
    max-width: 600px; 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.form-heading {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.form-subheading {
    color: #64748b;
    margin-bottom: 30px;
}

/* --- CF7 SPECIFIC STYLING (The Cyber Look) --- */

/* Centrare Formular Wrapper */
.custodia-cf7-form-wrapper form.wpcf7-form {
    max-width: 600px; 
    margin: 0 auto; 
}

/* Regula principala pentru câmpuri (input, textarea, select) */
.custodia-cf7-form-wrapper input:not([type="submit"]),
.custodia-cf7-form-wrapper textarea,
.custodia-cf7-form-wrapper select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.3s;
    font-family: 'Segoe UI', sans-serif;
}

/* Efectul de FOCUS (Cyan Glow) */
.custodia-cf7-form-wrapper input:focus,
.custodia-cf7-form-wrapper textarea:focus,
.custodia-cf7-form-wrapper select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* Submit Button Styling (Butonul final) */
.custodia-cf7-form-wrapper input[type="submit"] {
    background: #00d4ff;
    color: #0f172a;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%; 
}

.custodia-cf7-form-wrapper input[type="submit"]:hover {
    background: #0f172a;
    color: #00d4ff;
}

@media(max-width: 768px) {
    .contact-title { font-size: 2rem; }
    .card-grid { grid-template-columns: 1fr; }
}