/* ===========================
   KAPCSOLAT OLDAL STÍLUSOK
   =========================== */

/* Hero */
.contact-hero {
    background: linear-gradient(135deg, #0d3b6e 0%, #1a6b9a 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.contact-hero-content .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-content h1 .highlight {
    color: #4fc3f7;
}

.contact-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto;
}

/* Gyors elérhetőség kártyák */
.quick-contact {
    background: #f8fafc;
    padding: 60px 20px;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.quick-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.quick-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.quick-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d3b6e;
    margin-bottom: 8px;
}

.quick-card p {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.5;
}

.quick-link {
    display: inline-block;
    color: #1a6b9a;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.quick-link:hover {
    color: #0d3b6e;
}

.quick-link.urgent {
    color: #e53e3e;
    background: #fff5f5;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #fed7d7;
}

.quick-link.urgent:hover {
    background: #fed7d7;
}

/* Fő kapcsolat szekció */
.contact-main {
    padding: 80px 20px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
/* Checkbox */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #1a6b9a;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #1a6b9a;
    text-decoration: underline;
}

/* Submit gomb */
.btn-submit {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: "Inter", sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 62, 62, 0.35);
}



/* Info wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d3b6e;
    margin-bottom: 14px;
}

/* Munkaidő táblázat */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}

.hours-table td {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #e2e8f0;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #0d3b6e;
}

.hours-note {
    font-size: 0.82rem;
    color: #e53e3e;
    font-weight: 600;
    margin-top: 8px;
}

/* Területi tagek */
.territory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag {
    background: #e8f4fd;
    color: #1a6b9a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Social */
.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.social-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn.linkedin {
    background: #0a66c2;
    color: white;
}

/* GYIK szekció */
.faq-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* CTA sáv */
.contact-cta {
    background: linear-gradient(135deg, #0d3b6e, #1a6b9a);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 1.05rem;
    opacity: 0.88;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* RESZPONZÍV */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .quick-cards {
        grid-template-columns: 1fr 1fr;
    }

    .contact-hero {
        padding: 100px 16px 60px;
    }
}

@media (max-width: 400px) {
    .quick-cards {
        grid-template-columns: 1fr;
    }
}
