/* Tours listing page */

/* Hero */
.page-hero { background: #f8f9fa; padding: 120px 0 48px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; right: 0; width: 35%; height: 100%; background: linear-gradient(to left, rgba(151,242,243,.18), transparent); pointer-events: none; }
.page-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 36px; }
.page-hero-left { max-width: 560px; }
.page-hero-badge { display: inline-block; background: #ffdad6; color: #8c1617; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 20px; }
.page-hero-title { font-family: 'Poppins', sans-serif; font-size: 64px; font-weight: 800; color: #111; line-height: 1; letter-spacing: -.02em; margin-bottom: 16px; padding-bottom: 0; }
.page-hero-title em { color: #006760; font-style: italic; }
.page-hero-subtitle { font-size: 17px; color: #555; line-height: 1.6; max-width: 480px; }
.page-hero-search { flex: 0 0 380px; }
.page-hero-search-wrap { position: relative; }
.page-hero-search-wrap .material-symbols-outlined { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #999; font-size: 20px; pointer-events: none; }
.tours-search { width: 100%; padding: 14px 18px 14px 48px; border: none; border-radius: 12px; background: #e7e8e9; font: inherit; font-size: 15px; color: #111; outline: none; transition: box-shadow .2s; }
.tours-search:focus { box-shadow: 0 0 0 3px rgba(0,103,96,.2); }

/* Filter pills */
.tours-groups { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 8px; }
.tours-group-btn { padding: 9px 20px; border: 1.5px solid rgba(0,0,0,.1); background: #fff; color: #555; border-radius: 999px; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; }
.tours-group-btn:hover { border-color: #006760; color: #006760; }
.tours-group-btn.active { background: #006760; border-color: #006760; color: #fff; box-shadow: 0 4px 12px rgba(0,103,96,.2); }

/* Grid */
.immersive-section { padding: 48px 0 80px; background: #f8f9fa; }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.tour-entry[hidden] { display: none; }

/* Stagger middle column */
.tour-entry:nth-child(3n+2) { margin-top: 48px; }

.tour-entry { position: relative; display: block; border-radius: 20px; overflow: hidden; text-decoration: none; color: #fff; background: #111; transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.tour-entry:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.15); color: #fff; }
.tour-thumb { position: relative; height: 380px; overflow: hidden; }
.tour-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); display: block; }
.tour-entry:hover .tour-thumb img { transform: scale(1.07); }
.tour-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 50%, transparent 100%); }
.tour-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px; }
.tour-info h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 10px; padding-bottom: 0; }
.tour-meta-row { display: flex; gap: 16px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85); }
.tour-meta-row span { display: flex; align-items: center; gap: 4px; }
.tour-meta-row .material-symbols-outlined { font-size: 14px; }
.tour-info p, .tour-duration { display: none; }
.tours-empty { text-align: center; padding: 40px 0; color: #666; font-size: 18px; }

/* Pagination */
.tours-pagination[hidden] { display: none; }
.tours-pagination { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.tours-page-list { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.tours-page-btn { padding: 10px 18px; border: 1.5px solid rgba(0,0,0,.1); background: #fff; color: #555; border-radius: 999px; font: inherit; font-weight: 600; cursor: pointer; transition: all .2s; }
.tours-page-btn:hover:not(:disabled) { border-color: #006760; color: #006760; }
.tours-page-btn.active { background: #006760; border-color: #006760; color: #fff; }
.tours-page-btn:disabled { opacity: .4; cursor: not-allowed; }
.tours-page-list .tours-page-btn { padding: 8px 14px; min-width: 40px; }

/* Load more */
.tours-load-more { text-align: center; margin-top: 48px; }
.tours-load-more[hidden] { display: none; }
.tours-load-more-btn { display: inline-flex; align-items: center; gap: 8px; background: #006760; color: #fff; padding: 16px 40px; border-radius: 12px; border: none; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: opacity .2s, transform .2s; }
.tours-load-more-btn:hover { opacity: .88; transform: translateY(-2px); }


/* Responsive */
@media (max-width: 1024px) { .page-hero-inner { flex-direction: column; align-items: flex-start; } .page-hero-search { flex: none; width: 100%; max-width: 480px; } .page-hero-title { font-size: 48px; } .tour-grid { grid-template-columns: repeat(2, 1fr); } .tour-entry:nth-child(3n+2) { margin-top: 0; } }
@media (max-width: 768px) { .tour-grid { grid-template-columns: 1fr; } .page-hero-title { font-size: 36px; } .tour-thumb { height: 280px; } }
