/* Explain: Component styles for the shipping and clearance website. - */
/* Removed custom glass effects in favor of the clean, flat look from the design */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}
.section-kicker-line {
    width: 2.5rem;
    height: 4px;
    background: var(--primary-color);
    margin-top: 0.5rem;
}

.service-card {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
}

.booking-form {
    border-radius: 1rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.form-status.success { color: #16A34A; }
.form-status.error { color: #DC2626; }

.mobile-book-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    border-top: 1px solid var(--border-color);
    background: #fff;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
}

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

.booking-overlay.is-open { display: block; }
.booking-overlay-panel {
    min-height: calc(100vh - 2rem);
    background: var(--background-color);
    border-radius: 1rem;
}