/* Explain: Component styles for Bitmar's corporate and legal consulting site. - */
.site-header {
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--accent-color);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-kicker::before {
    display: inline-block;
    width: 2.4rem;
    height: 2px;
    background: var(--accent-color);
    content: "";
}

.glass-panel {
    border: 1px solid var(--glass-border);
    background: var(--surface-color);
    box-shadow: var(--shadow-soft);
}

.image-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--surface-color);
    box-shadow: var(--shadow-soft);
    border-radius: 1.5rem;
}

.image-frame-large {
    height: min(70vh, 650px);
    min-height: 500px;
}

.image-frame-medium {
    height: 550px;
    max-width: 500px;
}

.service-card {
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: transform 300ms ease, box-shadow 300ms ease;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    transform: translateY(-6px);
}

.booking-form,
.booking-overlay-panel {
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--text-color);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-status.success {
    color: #10b981;
}

.form-status.error {
    color: #ef4444;
}

.mobile-book-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    border-top: 1px solid var(--glass-border);
    background: var(--nav-bg);
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    backdrop-filter: blur(18px);
}

.booking-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    overflow-y: auto;
    background: rgba(15, 23, 42, 0.4);
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.booking-overlay.is-open {
    display: block;
}

.booking-overlay-panel {
    min-height: calc(100vh - 2rem);
    background: var(--background-color);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.2);
}

@media (max-width: 767px) {
    .section-kicker::before {
        width: 1.6rem;
    }

    .image-frame-large,
    .image-frame-medium {
        height: 400px;
        min-height: 0;
    }
}