/* Tour listing pages (section pages). Copied from destination-tours.php so the design matches. */
:root {
    --primary-gold: #d4af37;
    --gold-light: #f0d587;
    --gold-dark: #b8962e;
    --nile-blue: #1e5a96;
    --text-dark: #1a1a1a;
    --text-muted: #5c5c5c;
    --border-light: #e8e4dc;
    --bg-warm: #faf8f5;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.06);
    --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
}

.evaya-tours-hero {
    position: relative;
    min-height: 65vh;
    min-height: 65dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050a15;
    margin-top: 0;
    padding: 0;
}

.evaya-tours-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.evaya-tours-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s ease-in-out, transform 8s ease-in-out;
    will-change: transform, opacity;
}

.evaya-tours-hero-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: heroZoom 8s ease-in-out infinite;
}

@keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.evaya-tours-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(5, 10, 21, 0.75) 0%, rgba(5, 10, 21, 0.35) 30%, rgba(5, 10, 21, 0.15) 50%, rgba(5, 10, 21, 0.35) 70%, rgba(5, 10, 21, 0.75) 100%);
}

.evaya-tours-hero-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.evaya-tours-hero-glow::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: glowFloat 6s ease-in-out infinite;
}

.evaya-tours-hero-glow::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    animation: glowFloat 6s ease-in-out infinite 3s;
}

@keyframes glowFloat {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
    50% { transform: scale(1.15) translateY(-20px); opacity: 1; }
}

.evaya-tours-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    padding: 40px 60px;
    text-align: center;
    animation: contentRise 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes contentRise {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.evaya-tours-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 28px 8px 22px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: badgeGlide 1s ease 0.3s backwards;
}

@keyframes badgeGlide {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.evaya-tours-hero-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.badge-dot-gold {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
    display: inline-block;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
    animation: dotPulseGold 2s ease-in-out infinite;
}

@keyframes dotPulseGold {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.3; }
}

.evaya-tours-hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -2px;
    color: #ffffff;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.3);
    animation: titleReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s backwards;
}

@keyframes titleReveal {
    0% { opacity: 0; transform: translateY(30px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.evaya-tours-hero-title .highlight {
    background: linear-gradient(135deg, #f0e6b0 0%, #d4af37 20%, #f0d96f 45%, #d4af37 65%, #b8941e 85%, #f0e6b0 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldFlow 8s ease-in-out infinite;
}

@keyframes goldFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.evaya-tours-hero-subtitle {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    animation: subtitleFade 1s ease 0.6s backwards;
}

@keyframes subtitleFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.evaya-tours-hero-subtitle strong {
    color: #f0d96f;
    font-weight: 500;
}

.evaya-tours-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: statsRise 1s ease 1s backwards;
}

@keyframes statsRise {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.evaya-tours-hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.evaya-tours-hero-stat:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.evaya-tours-hero-stat i {
    color: #d4af37;
    font-size: 18px;
}

.evaya-tours-hero-stat strong {
    color: #ffffff;
    font-weight: 700;
}

.evaya-tours-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.evaya-tours-hero-scroll .scroll-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.evaya-tours-hero-scroll .scroll-line {
    width: 1.5px;
    height: 32px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.evaya-tours-hero-scroll .scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #d4af37;
    border-radius: 2px;
    animation: scrollDotMove 2s ease-in-out infinite;
}

@keyframes scrollDotMove {
    0%, 100% { top: 0; }
    50% { top: 60%; }
}

.tours-container {
    padding: 56px 0 80px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #f5f2ed 50%, var(--bg-warm) 100%);
}

.container-lg { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.sidebar-filters {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 4px solid var(--primary-gold);
}

.filters-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.filters-title i {
    color: var(--primary-gold);
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 12px;
}

.filter-group { margin-bottom: 24px; }
.filter-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 14px;
}
.filter-input {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    background: #fff;
}
.filter-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    outline: none;
}
.btn-filter-search {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: #1a1a1a;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    font-size: 15px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}
.btn-filter-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}
.filter-info {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.08) 100%);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 20px;
}
.filter-info p { margin: 0; font-size: 14px; color: var(--text-dark); }
.filter-info strong { color: var(--primary-gold); font-size: 18px; font-weight: 800; }

/* ===== TOUR CARD ===== */
.evaya-tour-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.evaya-tour-card:hover {
    transform: translateY(-16px) scale(1.01);
    box-shadow: 0 32px 80px rgba(212, 175, 55, 0.12), 0 8px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 175, 55, 0.15);
}

.evaya-tour-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8, #f0f0f0);
    flex-shrink: 0;
}

.evaya-tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.evaya-tour-card:hover .evaya-tour-card-image img {
    transform: scale(1.1);
}

.evaya-tour-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.evaya-tour-card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.evaya-tour-card-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.evaya-tour-card-badge-gold {
    background: linear-gradient(135deg, #d4af37, #f0d96f);
    color: #1a1a1a;
}

.evaya-tour-card-badge-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
}

.evaya-tour-card-badge-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.evaya-tour-card-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.evaya-tour-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
    min-height: 54px;
}

.evaya-tour-card:hover .evaya-tour-card-title {
    color: #d4af37;
}

.evaya-tour-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.evaya-tour-card-rating-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 14px;
}

.evaya-tour-card-rating-text {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.evaya-tour-card-rating-text strong {
    color: #1a1a1a;
}

.evaya-tour-card-info-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.evaya-tour-card-info-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 14px;
    min-height: 64px;
    text-align: center;
}

.evaya-tour-card-info-pill i {
    color: #d4af37;
    font-size: 13px;
    margin-bottom: 4px;
}

.evaya-tour-card-info-pill .label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7a7a7a;
    margin-bottom: 2px;
}

.evaya-tour-card-info-pill .value {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.evaya-tour-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.evaya-tour-card-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #d4af37;
    transition: all 0.3s ease;
}

.evaya-tour-card-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.evaya-tour-card-price-current {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.evaya-tour-card-price-current .currency {
    font-size: 18px;
    color: #d4af37;
}

.evaya-tour-card-price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.evaya-tour-card-price-discount {
    font-size: 13px;
    font-weight: 700;
    color: #10b981;
    margin-left: auto;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.evaya-tour-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    margin-top: auto;
    background: linear-gradient(135deg, #d4af37 0%, #b48a1f 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.evaya-tour-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
    color: #1a1a1a;
}

.evaya-tour-card-btn i {
    transition: transform 0.3s ease;
}

.evaya-tour-card-btn:hover i {
    transform: translateX(4px);
}

.pagination-section {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination-section a, .pagination-section span {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease;
}

.pagination-section a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.pagination-section span {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    border-color: var(--primary-gold);
    color: #1a1a1a;
}

.no-results {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.no-results i { font-size: 96px; color: var(--primary-gold); margin-bottom: 24px; opacity: 0.7; }
.no-results h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 12px; color: var(--text-dark); }

@media (max-width: 992px) {
    .sidebar-filters { position: static; margin-bottom: 30px; }
    .tours-container { padding: 40px 0 60px; }
    .evaya-tours-hero { min-height: 50vh; }
    .evaya-tours-hero-content { padding: 30px 40px; }
    .evaya-tours-hero-title { font-size: clamp(2.4rem, 7vw, 4.2rem); }
}

@media (max-width: 768px) {
    .evaya-tours-hero { min-height: 45vh; }
    .evaya-tours-hero-content { padding: 20px 24px; }
    .evaya-tours-hero-title { font-size: clamp(1.8rem, 8vw, 3rem); letter-spacing: -1px; }
    .evaya-tours-hero-subtitle { font-size: 0.95rem; padding: 0 10px; margin-bottom: 28px; }
    .evaya-tours-hero-stats { gap: 20px; padding-top: 20px; flex-wrap: wrap; }
    .evaya-tours-hero-stat { font-size: 12px; gap: 8px; }
    .evaya-tours-hero-badge { font-size: 10px; padding: 6px 18px 6px 14px; gap: 10px; margin-bottom: 20px; }
    .evaya-tours-hero-scroll { display: none; }
    .evaya-tour-card-image { height: 220px; }
    .evaya-tour-card-content { padding: 20px 20px 24px; }
    .evaya-tour-card-title { font-size: 18px; }
    .evaya-tour-card-price-current { font-size: 24px; }
}

@media (max-width: 480px) {
    .evaya-tours-hero { min-height: 40vh; }
    .evaya-tours-hero-content { padding: 16px; }
    .evaya-tours-hero-title { font-size: 1.6rem; letter-spacing: -0.5px; }
    .evaya-tours-hero-subtitle { font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }
    .evaya-tours-hero-stats { gap: 14px; padding-top: 16px; }
    .evaya-tours-hero-stat { font-size: 11px; gap: 6px; }
    .evaya-tours-hero-stat i { font-size: 14px; }
    .evaya-tour-card-image { height: 200px; }
    .evaya-tour-card-content { padding: 16px 16px 20px; }
    .evaya-tour-card-title { font-size: 16px; min-height: 44px; }
    .evaya-tour-card-price-current { font-size: 20px; }
    .evaya-tour-card-price-old { font-size: 14px; }
    .evaya-tour-card-btn { font-size: 13px; padding: 12px 20px; }
    .evaya-tour-card-info-pill { min-height: 54px; padding: 8px 6px; }
    .evaya-tour-card-info-pill .value { font-size: 12px; }
    .evaya-tour-card-info-pill .label { font-size: 9px; }
    .badge-dot-gold { width: 5px; height: 5px; }
}
