/**
 * Contact Form Styles
 *
 * Simple single-page contact form.
 * Brand colors: #00073F (navy), #E85D26 (orange), #F59E0B (amber)
 */

/* === Fixed header clearance ===
   Astra theme already offsets .site-content ~80px for the fixed header.
   We only add a small top padding to guarantee clearance. */
.site-content {
    padding-top: 16px !important;
}

@media (max-width: 768px) {
    .site-content {
        padding-top: 8px !important;
    }
}

.eko-kontakt {
    max-width: 640px;
    margin: 32px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e293b;
}

.eko-kontakt__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 7, 63, 0.08);
    padding: 40px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 640px) {
    .eko-kontakt__card {
        padding: 24px 16px;
        border-radius: 8px;
    }
}

.eko-kontakt__header {
    text-align: center;
    margin-bottom: 32px;
}

.eko-kontakt__header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #00073F;
    margin: 0 0 8px;
}

.eko-kontakt__header p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* === Form Layout === */
.eko-kontakt__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .eko-kontakt__row {
        grid-template-columns: 1fr;
    }
}

.eko-kontakt__field {
    margin-bottom: 20px;
}

.eko-kontakt__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.eko-required {
    color: #E85D26;
}

.eko-kontakt__field input[type="text"],
.eko-kontakt__field input[type="email"],
.eko-kontakt__field input[type="tel"],
.eko-kontakt__field select,
.eko-kontakt__field textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: #1e293b;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.eko-kontakt__field input:focus,
.eko-kontakt__field select:focus,
.eko-kontakt__field textarea:focus {
    outline: none;
    border-color: #00073F;
    box-shadow: 0 0 0 3px rgba(0, 7, 63, 0.1);
    background: #fff;
}

.eko-kontakt__field textarea {
    resize: vertical;
    min-height: 100px;
}

.eko-kontakt__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* === GDPR Checkbox === */
.eko-kontakt__gdpr {
    margin-top: 4px;
}

.eko-kontakt__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.5;
}

.eko-kontakt__checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #00073F;
    cursor: pointer;
}

.eko-kontakt__checkbox-label a {
    color: #E85D26;
    text-decoration: underline;
}

.eko-kontakt__checkbox-label a:hover {
    color: #00073F;
}

/* === Submit Button === */
.eko-kontakt__submit {
    margin-top: 24px;
    text-align: center;
}

.eko-kontakt__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #00073F 0%, #1a1a5e 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    min-width: 200px;
}

.eko-kontakt__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 7, 63, 0.25);
}

.eko-kontakt__button:active {
    transform: translateY(0);
}

.eko-kontakt__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.eko-kontakt__btn-spinner {
    display: inline-flex;
    align-items: center;
}

/* === Message === */
.eko-kontakt__message {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.eko-kontakt__message--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.eko-kontakt__message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
