/* ============================================
   KONTAKT PAGE STYLES
   ============================================ */

.contact-hero {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 190px 0 150px;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(3, 114, 188, 0.75), rgba(3, 114, 188, 0.55)), url('images/services/care.jpg') center/cover no-repeat;
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 17, 34, 0.6) 0%, rgba(0, 17, 34, 0.35) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 999px;
    font-family: var(--font-family-subheadings);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 26px;
}

.page-hero-title {
    font-size: clamp(44px, 6vw, 70px);
    font-weight: 300;
    margin-bottom: 22px;
    line-height: 1.1;
}

.page-hero-decoration {
    display: inline-block;
    width: 110px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 26px;
}

.page-hero-subtitle {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 36px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.page-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contact-highlights {
    padding: 110px 0 80px;
    background: var(--bg-white);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.highlight-card {
    background: var(--bg-light);
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.highlight-card:hover,
.highlight-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(3, 114, 188, 0.08), rgba(246, 139, 39, 0.08));
    color: var(--primary-color);
    margin-bottom: 8px;
}

.highlight-icon svg {
    width: 28px;
    height: 28px;
}

.highlight-card h2 {
    font-size: 24px;
    font-family: var(--font-family-headings);
}

.highlight-card p {
    font-size: 18px;
    color: var(--text-dark);
}

.highlight-card a {
    color: var(--primary-dark);
    font-weight: 600;
}

.highlight-card small {
    font-size: 14px;
    color: var(--text-lighter);
}

.highlight-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
}

.social-chip svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-chip--whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-chip--instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.social-chip--facebook {
    background: linear-gradient(135deg, #1877f2, #0f5aca);
}

.social-chip:hover,
.social-chip:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    color: #ffffff;
}

.contact-form-section {
    padding: 80px 0 120px;
    background: var(--bg-light);
}

.form-wrapper {
    background: white;
    border-radius: 36px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 60px;
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.form-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(3, 114, 188, 0.08);
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.form-info h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin: 22px 0 18px;
}

.form-info p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.form-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 14px;
    font-size: 16px;
}

.form-benefits li {
    position: relative;
    padding-left: 26px;
    color: var(--text-dark);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label {
    font-weight: 600;
    font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 18px;
    font-size: 16px;
    background: rgba(248, 249, 250, 0.8);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    outline: none;
    border-color: rgba(3, 114, 188, 0.4);
    box-shadow: 0 0 0 4px rgba(3, 114, 188, 0.15);
    background: white;
}

.form-field textarea {
    resize: vertical;
}

.form-consent {
    font-size: 14px;
    color: var(--text-light);
}

.form-consent-link {
    color: var(--accent-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    font-weight: 600;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.checkbox input {
    margin-top: 4px;
}

.form-notice {
    font-size: 13px;
    color: var(--text-lighter);
    margin: -4px 0 0;
}

.contact-map-section {
    padding: 110px 0;
    background: var(--bg-white);
}

.map-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 50px;
    align-items: center;
    background: white;
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.map-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(3, 114, 188, 0.08);
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.map-info h2 {
    font-size: clamp(32px, 4vw, 46px);
    margin: 22px 0 20px;
}

.map-highlights {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.map-embed {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info a {
    align-self: flex-start;
}

.travel-tips-section {
    padding: 90px 0 120px;
    background: var(--bg-light);
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.travel-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 16px;
    color: var(--text-light);
}

.travel-card h3 {
    font-size: 22px;
    color: var(--text-dark);
}

.travel-link {
    font-weight: 600;
    color: var(--primary-dark);
}

.footer-newsletter .newsletter-input-group {
    display: flex;
    gap: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
}

.footer-newsletter .newsletter-input {
    border-radius: 999px;
    border: none;
    padding: 12px 16px;
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.footer-newsletter .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .newsletter-submit {
    border-radius: 999px;
    border: none;
    padding: 12px 20px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.footer-newsletter .newsletter-submit:hover,
.footer-newsletter .newsletter-submit:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Responsive */
@media (max-width: 1200px) {
    .highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .travel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding-top: 140px;
    }

    .highlight-grid,
    .travel-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 40px 28px;
        gap: 32px;
    }

    .map-embed {
        aspect-ratio: 1 / 1;
    }

    .map-wrapper {
        padding: 28px;
    }
}

