:root {
    --brand: #146c94;
    --brand-dark: #0f4f6d;
    --accent: #fcbf49;
    --bg-soft: #f4f9fc;
}

body {
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(180deg, #eef6fb 0%, #ffffff 260px);
}

.hero {
    background: radial-gradient(circle at top right, rgba(252, 191, 73, 0.25), transparent 45%),
                linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    border-radius: 20px;
}

.hero-compact {
    background: radial-gradient(circle at top right, rgba(252, 191, 73, 0.18), transparent 45%),
                linear-gradient(135deg, #0f4f6d 0%, #1b7ca7 100%);
    color: #fff;
    border-radius: 22px;
}

.search-card {
    margin-top: -35px;
    border: 0;
    border-radius: 16px;
}

.hotel-card {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
}

.badge-rating {
    background: var(--accent);
    color: #1f1f1f;
}

.step-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
}

.info-panel {
    background: linear-gradient(135deg, rgba(20, 108, 148, 0.96), rgba(15, 79, 109, 0.96));
    color: #fff;
}

.info-panel .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-links a:hover {
    text-decoration: underline;
}

.contact-card {
    border: 0;
    border-radius: 18px;
}
