

/* moved from contact.php inline */
.hero--mini { padding: calc(var(--header-height) + 20px) 0 40px; min-height: auto; }
.hero--mini .hero__title { font-size: clamp(2rem, 5vw, 3.5rem); }
.hero--mini .hero__subtitle { max-width: 600px; margin: 0 auto; color: var(--text-muted); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.contact-card {
    display: flex; gap: 16px; align-items: center;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 18px 20px;
    transition: all 0.3s;
}
.contact-card:hover { border-color: var(--red-primary); transform: translateX(4px); }
.contact-card__icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px; color: #fff;
}
.contact-card__body h4 { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
.contact-card__body a, .contact-card__body p { font-size: 14px; color: var(--text-primary); text-decoration: none; margin: 0; }
.contact-card__body a:hover { color: var(--red-primary); }
.contact-form-wrap {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.contact-form .form-control {
    width: 100%; padding: 12px 14px; font-size: 14px;
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: var(--text-primary);
    transition: border-color 0.3s;
    font-family: var(--font-body);
    box-sizing: border-box;
}
.contact-form .form-control:focus { outline: none; border-color: var(--red-primary); }
.contact-form select.form-control { appearance: none; cursor: pointer; }
.contact-form textarea.form-control { resize: vertical; min-height: 100px; }
.btn--full { width: 100%; justify-content: center; }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover, .faq-item.open { border-color: var(--red-primary); }
.faq-item__question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px; background: none; border: none; cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--text-primary);
    font-family: var(--font-heading); text-align: left;
}
.faq-item__question i { transition: transform 0.3s; color: var(--red-primary); font-size: 13px; }
.faq-item.open .faq-item__question i { transform: rotate(180deg); }
.faq-item__answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-item__answer { max-height: 300px; padding: 0 20px 18px; }
.faq-item__answer p { color: var(--text-muted); line-height: 1.7; font-size: 14px; margin: 0; }
.faq-item__answer a { color: var(--red-primary); }
