/* OqtaneLibrary.ContactMe – offentlig kontaktskjema */
.contactme-module {
    --beo-accent: #2563eb;
    --beo-accent-dark: #1d4ed8;
    --beo-accent-soft: rgba(37, 99, 235, 0.12);
    --beo-bg: #ffffff;
    --beo-text: #0f172a;
    --beo-text-muted: #64748b;
    --beo-border: #e2e8f0;
    --beo-card-bg: #ffffff;
    --beo-radius: 0.75rem;
    --beo-shadow: 0 0.25rem 1rem rgba(15, 23, 42, 0.08);
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem 0 2rem;
    color: var(--beo-text);
}

.contactme-module .beo-panel {
    background: var(--beo-card-bg);
    border: 1px solid var(--beo-border);
    border-radius: var(--beo-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--beo-shadow);
}

.contactme-module .beo-panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contactme-module .beo-panel-lead {
    color: var(--beo-text-muted);
    margin-bottom: 1.5rem;
}

.contactme-module .beo-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.contactme-module .beo-contact-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--beo-border);
    font-size: 0.95rem;
    color: var(--beo-text-muted);
}

.contactme-module .beo-contact-info p {
    margin-bottom: 0.35rem;
}

.contactme-module .beo-contact-booking {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--beo-border);
}

.contactme-module .beo-contact-booking-lead {
    color: var(--beo-text-muted);
    margin-bottom: 1rem;
}

.contactme-module .beo-form-group {
    margin-bottom: 1rem;
}

.contactme-module .beo-form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.contactme-module .beo-form-control {
    display: block;
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 1rem;
    border: 1px solid var(--beo-border);
    border-radius: 0.5rem;
    background: var(--beo-bg);
    color: var(--beo-text);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.contactme-module .beo-form-control:focus {
    outline: none;
    border-color: var(--beo-accent);
    box-shadow: 0 0 0 3px var(--beo-accent-soft);
}

.contactme-module .beo-panel-actions {
    margin-top: 0.5rem;
}

.contactme-module .beo-btn {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    text-align: center;
}

.contactme-module .beo-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.contactme-module .beo-btn--primary {
    background: linear-gradient(135deg, var(--beo-accent) 0%, var(--beo-accent-dark) 100%);
    color: #fff !important;
    border-color: transparent;
}

.contactme-module .beo-btn--primary:hover {
    box-shadow: 0 0.35rem 1rem rgba(37, 99, 235, 0.35);
    color: #fff;
}

.contactme-module .beo-btn--outline {
    background: transparent;
    color: var(--beo-accent) !important;
    border-color: var(--beo-accent);
}

.contactme-module .beo-btn--outline:hover {
    background: var(--beo-accent-soft);
    color: var(--beo-accent-dark);
}

.contactme-module .beo-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
