/* Modern Flashy Safari Template - Sense of Africa Style */

/* Flashy Hero */
.jps-hero-flashy {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jps-hero-img {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: scale(1.1);
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.jps-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.4) 0%, 
        rgba(44, 95, 45, 0.7) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.jps-hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200% 200%;
    animation: particlesMove 20s ease-in-out infinite;
    opacity: 0.3;
    z-index: 1;
}

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

.jps-hero-wrap {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    color: white;
    padding: 40px 20px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jps-hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.jps-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.jps-badge-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.9);
    }
}

.jps-badge-glow {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(44, 95, 45, 0.3));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.jps-hero-h1 {
    font-size: 72px;
    font-weight: 900;
    margin: 0 0 30px;
    line-height: 1.1;
    text-shadow: 
        0 4px 20px rgba(0,0,0,0.5),
        0 0 60px rgba(212, 175, 55, 0.3);
    letter-spacing: -2px;
}

.jps-hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
}

.jps-price-flashy {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.jps-price-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    padding: 25px 40px;
    border-radius: 20px;
    color: #2c5f2d;
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.3),
        inset 0 -3px 0 rgba(212, 175, 55, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.jps-price-label {
    font-size: 13px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.jps-price-big {
    font-size: 48px;
    font-weight: 900;
    margin: 8px 0;
    line-height: 1;
}

.jps-price-convert {
    font-size: 14px;
    opacity: 0.6;
    font-weight: 600;
}

.jps-cta-flashy {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #c19b2e 100%);
    color: white;
    padding: 22px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.5),
        inset 0 -3px 0 rgba(0,0,0,0.2);
    transition: all 0.3s;
    border: 3px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.jps-cta-flashy:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.7),
        inset 0 -3px 0 rgba(0,0,0,0.3);
}

.jps-cta-icon {
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.jps-cta-arrow {
    font-size: 20px;
    font-weight: 900;
}

.jps-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    animation: bounce 2s infinite;
}

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

.jps-scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
}

.jps-scroll-arrow {
    font-size: 32px;
}

/* Content Area */
.jps-content-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Sticky Tabs */
.jps-tabs-sticky {
    position: relative;
    margin: -100px 0 60px;
    z-index: 10;
}

.jps-tabs-sticky.jps-tabs-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 15px 0;
}

.jps-tabs-nav-modern {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.jps-tabs-fixed .jps-tabs-nav-modern {
    box-shadow: none;
    border-radius: 0;
}

.jps-tab-btn-modern {
    flex: 1;
    background: none;
    border: none;
    padding: 22px;
    font-size: 15px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jps-tab-btn-modern:hover {
    background: #f5f5f5;
    color: #2c5f2d;
}

.jps-tab-btn-modern.active {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-bottom-color: #d4af37;
    color: #2c5f2d;
}

.jps-tab-panel-modern {
    display: none;
    animation: fadeIn 0.5s;
}

.jps-tab-panel-modern.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Content Grid */
.jps-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.jps-main-content {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.jps-section-h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 35px;
    color: #2c5f2d;
    position: relative;
    padding-bottom: 15px;
}

.jps-section-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

/* Inclusions */
.jps-inclusions-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.jps-inc-card {
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.jps-inc-yes {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-left: 5px solid #2c5f2d;
}

.jps-inc-no {
    background: linear-gradient(135deg, #ffebee, #fce4ec);
    border-left: 5px solid #dc3545;
}

.jps-inc-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
}

.jps-inc-card ul {
    list-style: none;
    padding: 0;
}

.jps-inc-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 15px;
}

/* Sidebar */
.jps-book-box {
    background: linear-gradient(135deg, #2c5f2d, #1f4420);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.3);
}

.jps-book-box h3 {
    font-size: 24px;
    margin: 0 0 15px;
}

.jps-book-btn {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s;
}

.jps-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.jps-info-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.jps-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jps-info-icon {
    font-size: 32px;
}

.jps-info-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jps-info-value {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Packages Modern */
.jps-packages-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.jps-package-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.jps-package-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.jps-package-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.jps-package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.jps-package-modern:hover .jps-package-img img {
    transform: scale(1.1);
}

.jps-package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 95, 45, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
}

.jps-package-modern:hover .jps-package-overlay {
    opacity: 1;
}

.jps-package-info {
    padding: 30px;
}

.jps-package-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px;
}

.jps-package-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.jps-package-title a:hover {
    color: #2c5f2d;
}

.jps-package-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.jps-package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.jps-meta-item {
    font-size: 14px;
    color: #666;
}

.jps-meta-price {
    font-size: 20px;
    font-weight: 800;
    color: #d4af37;
}

.jps-package-btn {
    display: inline-block;
    background: #2c5f2d;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.jps-package-btn:hover {
    background: #1f4420;
    transform: translateX(5px);
}

/* Gallery Modern */
.jps-video-embed {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.jps-gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.jps-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.jps-gallery-item:hover {
    transform: scale(1.05);
}

.jps-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Map Modern */
.jps-map-modern {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* FAQ Modern */
.jps-faq-modern {
    max-width: 900px;
}

.jps-faq-box {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.jps-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: #333;
    transition: all 0.3s;
}

.jps-faq-q:hover {
    background: #f5f5f5;
}

.jps-faq-icon {
    font-size: 28px;
    color: #d4af37;
    font-weight: 300;
}

.jps-faq-a {
    display: none;
    padding: 0 30px 25px;
}

.jps-faq-a p {
    margin: 0;
    line-height: 1.7;
    color: #666;
}

/* Bottom CTA */
.jps-cta-bottom {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #2c5f2d, #1f4420);
    color: white;
    border-radius: 20px;
    margin: 80px 0 40px;
}

.jps-cta-bottom h2 {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 20px;
}

.jps-cta-bottom p {
    font-size: 20px;
    margin: 0 0 40px;
    opacity: 0.9;
}

.jps-cta-large {
    font-size: 20px;
    padding: 25px 55px;
}

.jps-no-data {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .jps-content-grid {
        grid-template-columns: 1fr;
    }
    
    .jps-packages-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .jps-hero-h1 {
        font-size: 42px;
    }
    
    .jps-hero-subtitle {
        font-size: 16px;
    }
    
    .jps-price-flashy {
        flex-direction: column;
    }
    
    .jps-tabs-nav-modern {
        flex-direction: column;
    }
    
    .jps-inclusions-modern,
    .jps-packages-modern,
    .jps-gallery-modern {
        grid-template-columns: 1fr;
    }
    
    .jps-section-h2 {
        font-size: 32px;
    }
}

/* ============================================
   ARCHIVE TEMPLATES - MODERN GRID LAYOUT
   ============================================ */

.jps-archive-modern {
    background: #fafafa;
}

/* Archive Hero */
.jps-archive-hero {
    position: relative;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4420 100%);
    color: white;
    overflow: hidden;
}

.jps-archive-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.jps-archive-hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.jps-breadcrumbs {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.jps-breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.jps-breadcrumbs a:hover {
    opacity: 0.7;
}

.jps-separator {
    margin: 0 10px;
    opacity: 0.5;
}

.jps-current {
    opacity: 0.7;
}

.jps-archive-title {
    font-size: 56px;
    font-weight: 900;
    margin: 0 0 20px;
    line-height: 1.2;
}

.jps-archive-desc {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Filter Bar */
.jps-filter-bar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.jps-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.jps-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jps-filter-group label {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jps-filter-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    min-width: 200px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.jps-filter-select:hover,
.jps-filter-select:focus {
    border-color: #2c5f2d;
    outline: none;
}

.jps-results-count {
    margin-left: auto;
    font-weight: 700;
    color: #2c5f2d;
    font-size: 16px;
}

/* Tours Grid */
.jps-tours-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.jps-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.jps-tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.jps-tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.jps-tour-card-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.jps-tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.jps-tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 95, 45, 0.95), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

.jps-tour-card:hover .jps-tour-card-overlay {
    opacity: 1;
}

.jps-view-journey {
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.jps-tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #c19b2e);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.jps-tour-card-content {
    padding: 30px;
}

.jps-tour-location {
    font-size: 14px;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 12px;
}

.jps-tour-card-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 15px;
    line-height: 1.3;
}

.jps-tour-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.jps-tour-card-title a:hover {
    color: #2c5f2d;
}

.jps-tour-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.jps-tour-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.jps-meta-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.jps-meta-duration svg {
    opacity: 0.7;
}

.jps-meta-price {
    font-size: 18px;
    font-weight: 800;
    color: #2c5f2d;
}

.jps-tour-card-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2c5f2d, #1f4420);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.jps-tour-card-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

/* Pagination */
.jps-pagination {
    text-align: center;
}

.jps-pagination ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.jps-pagination li {
    margin: 0;
}

.jps-pagination a,
.jps-pagination span {
    display: inline-block;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.jps-pagination a:hover {
    background: #2c5f2d;
    color: white;
    border-color: #2c5f2d;
}

.jps-pagination .current {
    background: #2c5f2d;
    color: white;
    border-color: #2c5f2d;
}

/* No Tours */
.jps-no-tours {
    text-align: center;
    padding: 100px 20px;
}

.jps-no-tours h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin: 0 0 15px;
}

.jps-no-tours p {
    font-size: 18px;
    color: #666;
}

.jps-no-tours a {
    color: #2c5f2d;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
    .jps-tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .jps-archive-title {
        font-size: 36px;
    }
    
    .jps-filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .jps-filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .jps-filter-select {
        width: 100%;
    }
    
    .jps-results-count {
        margin-left: 0;
        text-align: center;
    }
    
    .jps-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .jps-tour-card-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}
