/* ============================================================
   Kontakt oss
   ============================================================ */
#info-contact {
    max-width: 820px;
    margin: 20px auto;
    padding: 40px 20px 40px;
    text-align: left;
}
#info-contact h1 {
    color: #111;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
}
#info-contact .info-divider {
    height: 2px;
    background: #b02626;
    margin: 24px 0 24px;
}
#info-contact .info-lead {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 30px;
}

.contact-form {
    background: #f3f4f6;
    border-radius: 6px;
    padding: 30px;
    box-sizing: border-box;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.contact-field {
    background: #fff;
    border-radius: 5px;
    padding: 16px 18px;
    margin-bottom: 18px;
}
.contact-grid .contact-field {
    margin-bottom: 0;
}
.contact-field label {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: #222;
    background: #fff;
    transition: border-color 0.15s ease;
}
.contact-field textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #b02626;
}

.contact-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.contact-result {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-result.success {
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    color: #064e3b;
}
.contact-result.error {
    background: #fef2f2;
    border-left: 4px solid #b02626;
    color: #7f1d1d;
}

/* Honeypot – skjult for ekte brukere */
.honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-direct {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}
.contact-direct h3 {
    color: #222;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.contact-direct a {
    color: #b02626;
    font-weight: 600;
    text-decoration: none;
}
.contact-direct a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 20px;
    }
}
