/* Homepage */
.hero { position: relative; height: 80vh; background: url('../images/hero-bg.jpg') no-repeat center/cover; display:flex; justify-content:center; align-items:center; }
.hero-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(2,6,23,0.7), rgba(2,6,23,0.4)); }
.search-card { position:relative; z-index:2; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border:1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 20px; text-align: center; color: #fff; max-width: 800px; width: 92%; animation: fadeInUp 0.7s ease; }
.search-card h2 { margin: 0; font-size: 1.6rem; font-weight: 700; }
.search-fields { display:flex; flex-wrap: wrap; gap:10px; margin-top:15px; }
.search-fields select, .search-fields input, .search-fields button { flex:1; padding: 12px; border-radius: 10px; border: none; }
.search-btn { background: linear-gradient(135deg, #0084ff, #00c6ff); color:#fff; font-weight:700; cursor:pointer; }
.search-btn:hover { background: linear-gradient(135deg, #00c6ff, #0084ff); }

.section { padding: 40px 20px; }
.section h3 { margin: 0 0 20px; font-size: 1.4rem; }
.card, .offer-card { background:#fff; padding:18px; margin:10px; border-radius:14px; box-shadow: 0 4px 12px rgba(15,23,42,0.08); transition: transform .25s ease, box-shadow .25s ease; cursor:pointer; }
.card:hover, .offer-card:hover { transform: translateY(-6px); box-shadow: 0 10px 22px rgba(15,23,42,0.12); }
.card-carousel { display:flex; overflow-x:auto; gap:10px; scroll-snap-type:x mandatory; }
.card-carousel .card, .card-carousel .offer-card { min-width:220px; scroll-snap-align:start; }
.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; }

.bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; display:flex; justify-content: space-around; border-top: 1px solid #ddd; padding: 8px 0; z-index: 60; }
.bottom-bar a { text-decoration: none; color:#334155; font-size: .8rem; display:flex; flex-direction: column; align-items: center; }
.bottom-bar img { width: 20px; height: 20px; margin-bottom: 4px; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px){ .search-fields { flex-direction: column; } }
