body {
    background-color: #f3f4f6;
    color: #111827;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Brand colours */
.text-indigo {
    color: #4f46e5;
}
.bg-indigo-soft {
    background-color: #e0e7ff;
}
.text-emerald {
    color: #6ee7b7;
}
.btn-indigo {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    border: none;
}
.btn-indigo:hover {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    color: #ffffff;
}
.btn-outline-indigo {
    border-color: #4f46e5;
    color: #4f46e5;
}
.btn-outline-indigo:hover {
    background-color: #4f46e5;
    color: #ffffff;
}

/* Hero gradient */
.hero-gradient {
    background: radial-gradient(circle at top left, #eef2ff 0, #fdf2f8 35%, #ffffff 70%);
}

/* Search card */
.search-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.search-card .card-body {
    padding: 1.5rem;
}
.search-card .card-accent {
    height: 6px;
    background: linear-gradient(90deg, #4f46e5, #ec4899, #f59e0b);
}

/* Insight tiles */
.insight-tile {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.insight-indigo {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}
.insight-amber {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* Park cards */
.park-card {
    border-radius: 16px;
    overflow: hidden;
}
.park-card .card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.card-header-strip {
    height: 6px;
}
.park-dlp .card-header-strip {
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
}
.park-merlin .card-header-strip {
    background: linear-gradient(90deg, #6366f1, #0ea5e9);
}
.park-portaventura .card-header-strip {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}
.park-europa .card-header-strip {
    background: linear-gradient(90deg, #0ea5e9, #22c55e);
}

/* Trust icons */
.trust-icon {
    font-size: 1.8rem;
    color: #4f46e5;
}

/* Footer accent */
.footer-accent {
    border-top: 3px solid #4f46e5;
}
footer small {
    font-size: 0.8rem;
}
.footer-simple {
    background: #f8f9fb; /* soft, trustworthy grey */
    border-top: 1px solid #e2e6ea;
    padding: 32px 0;
}

.footer-simple p {
    margin: 0 0 8px;
    color: #6c757d; /* muted but readable */
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-simple p:last-child {
    margin-bottom: 0;
}

/* SUMMARY CARD */
.summary-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}
.summary-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
}
.summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* MAIN HOTEL / RESULT CARD */
.hotel-result-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Hotel name */
.hotel-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

/* PRICE BOX */
.price-box {
    background: #eef2ff;
    border-radius: 16px;
    border-left: 4px solid #4b4ded;
}

/* FRESHNESS BADGE */
.freshness-badge {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: white;
    font-size: 0.85rem;
}
.fresh {
    background: #10b981;
}
.stale {
    background: #f59e0b;
}

/* INSIGHT CARD (BEST VALUE) */
.best-value-card {
    background: linear-gradient(135deg, #fef3c7, #fce7f3);
    border-radius: 16px;
    border: 1px solid #fcd34d;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* SAVING BADGE (FLOATING) */
.badge-saving {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
    padding: 6px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    z-index: 10;
}

/* KEYS */
.key-icon {
    font-size: 1.2rem;
    margin-right: 2px;
}

/* PERKS */
.hotel-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

/* IMAGE WRAPPER */
.hotel-image-wrapper img {
    height: 200px;
    object-fit: cover;
}

/* REFINE FORM */
.results-refine-form {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* Small tweaks */
.results-refine-form .form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6b7280;
}
.results-refine-form .form-select,
.results-refine-form .form-control {
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .hotel-perks {
        grid-template-columns: 1fr;
    }
    .hotel-image-wrapper img {
        height: 180px;
    }
}

.card-img-top {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
