:root {
    --primary-dark: #0d1b2a;
    --primary-light: #1b4965;
    --accent-sky: #62b6cb;
    --accent-orange: #f39c12;
    --light-bg: #ffffff;
    --dark-text: #333333;
}

/* Hero Section Modern */
.destinations-hero-modern {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(98, 182, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-badge-modern {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(98, 182, 203, 0.2);
    border: 2px solid rgba(98, 182, 203, 0.5);
    border-radius: 50px;
    color: var(--accent-sky);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-modern {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-modern-item {
    text-align: center;
}

.stat-modern-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-sky);
    margin-bottom: 5px;
}

.stat-modern-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Filters Section Modern */
.destinations-filters-modern {
    padding: 60px 0;
    background: white;
}

.filter-form-modern {
    max-width: 1000px;
    margin: 0 auto;
}

.filter-header {
    margin-bottom: 40px;
}

.filter-header h3 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.filter-header p {
    color: #666;
    margin: 0;
}

.filter-buttons-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.filter-btn-modern {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.filter-btn-modern input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.filter-btn-content i {
    font-size: 2rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.filter-btn-content span {
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.filter-btn-modern:hover .filter-btn-content {
    border-color: var(--accent-sky);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filter-btn-modern.active .filter-btn-content,
.filter-btn-modern input[type="radio"]:checked + .filter-btn-content {
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    border-color: var(--accent-sky);
    box-shadow: 0 10px 30px rgba(98, 182, 203, 0.3);
}

.filter-btn-modern.active .filter-btn-content i,
.filter-btn-modern input[type="radio"]:checked + .filter-btn-content i,
.filter-btn-modern.active .filter-btn-content span,
.filter-btn-modern input[type="radio"]:checked + .filter-btn-content span {
    color: white;
}

.filter-btn-offer.active .filter-btn-content,
.filter-btn-offer input[type="radio"]:checked + .filter-btn-content {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
}

.filter-btn-activity.active .filter-btn-content,
.filter-btn-activity input[type="radio"]:checked + .filter-btn-content {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-color: #2ecc71;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.filter-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-filter-apply {
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(98, 182, 203, 0.3);
}

.btn-filter-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(98, 182, 203, 0.4);
}

.btn-filter-reset {
    padding: 12px 35px;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-filter-reset:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

/* Destinations Grid Modern */
.destinations-grid-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.results-header {
    text-align: center;
    margin-bottom: 50px;
}

.results-header h3 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-number {
    color: var(--accent-sky);
}

.results-header p {
    color: #666;
    margin: 0;
}

/* Trip Card Modern */
.trip-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trip-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.trip-card-modern.has-offer {
    border: 2px solid var(--accent-orange);
}

/* ===== Activity Card Styling ===== */
.trip-card-modern.activity-card {
    border: 2px solid rgba(46, 204, 113, 0.3);
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.02) 0%, white 100%);
}

.trip-card-modern.activity-card:hover {
    border-color: rgba(46, 204, 113, 0.6);
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.2);
}

.trip-card-modern.activity-card .trip-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.trip-card-modern.activity-card .trip-category-badge-modern.activity {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.trip-card-modern.activity-card .btn-book-trip-modern {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.trip-card-modern.activity-card .btn-book-trip-modern:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

.trip-card-modern.activity-card .price-value-modern .price-amount {
    color: #2ecc71;
}

.trip-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trip-card-modern:hover .trip-card-image img {
    transform: scale(1.1);
}

.trip-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trip-card-modern:hover .trip-card-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 12px 30px;
    background: white;
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--accent-sky);
    color: white;
    transform: scale(1.05);
}

.trip-offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    animation: pulse 2s infinite;
}

.discount-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.discount-label {
    display: block;
    font-size: 0.8rem;
    margin-top: 3px;
}

.trip-category-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 20px;
    background: rgba(243, 156, 18, 0.95);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.trip-category-badge.internal {
    background: rgba(27, 73, 101, 0.95);
}

.trip-category-badge.honeymoon {
    background: rgba(231, 76, 60, 0.95);
}

.trip-category-badge.adventure {
    background: rgba(46, 204, 113, 0.95);
}

.trip-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trip-card-header h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.trip-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.trip-location i {
    color: var(--accent-sky);
    margin-left: 5px;
}

.trip-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.trip-offer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.offer-type {
    color: var(--accent-orange);
    font-weight: 600;
}

.offer-expiry {
    color: #e74c3c;
    font-weight: 600;
}

.trip-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.trip-price-section {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 5px;
}

.price-old del {
    color: #999;
}

.price-new {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.price-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-sky);
}

.price-value small,
.price-new small {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-book-trip {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-book-trip:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    transform: translateX(-5px);
    color: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(98, 182, 203, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.empty-state-icon i {
    font-size: 3rem;
    color: var(--accent-sky);
}

.empty-state h3 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.empty-state p {
    color: #666;
    margin-bottom: 30px;
}

/* Pagination Modern */
.pagination-modern {
    margin-top: 60px;
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    list-style: none;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: white;
    color: var(--primary-dark);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: var(--accent-sky);
    color: white;
    border-color: var(--accent-sky);
    transform: translateY(-3px);
}

.pagination-link.active {
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border-color: var(--accent-sky);
    box-shadow: 0 5px 20px rgba(98, 182, 203, 0.3);
}

.pagination-prev,
.pagination-next {
    gap: 8px;
}

.pagination-dots {
    color: #999;
    padding: 0 10px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES - DESTINATIONS
   ======================================== */

/* Nest Hub Max (1280x800) */
@media (min-width: 1200px) and (max-width: 1366px) and (max-height: 850px) {
    .destinations-hero-modern {
        padding: 70px 0 50px;
    }

    .hero-title-modern {
        font-size: 2.2rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    .hero-stats-modern {
        gap: 25px;
    }

    .stat-modern-item h3 {
        font-size: 1.8rem;
    }

    .stat-modern-item p {
        font-size: 0.85rem;
    }

    .destinations-filters-modern {
        padding: 40px 0;
    }

    .filter-buttons-modern {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }

    .filter-btn-content {
        padding: 18px 15px;
        gap: 8px;
    }

    .filter-btn-content i {
        font-size: 1.5rem;
    }

    .filter-btn-content span {
        font-size: 0.8rem;
    }

    .destinations-grid-modern {
        padding: 50px 0;
    }

    .trip-card-image {
        height: 220px;
    }

    .trip-card-body {
        padding: 18px;
    }

    .trip-card-header h4 {
        font-size: 1.1rem;
    }

    .trip-meta-info .meta-item {
        font-size: 0.75rem;
    }

    .trip-description {
        font-size: 0.85rem;
    }

    .price-new-modern .price-amount,
    .price-value-modern .price-amount {
        font-size: 1.5rem;
    }

    .btn-book-trip-modern {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title-modern {
        font-size: 2.8rem;
    }

    .hero-stats-modern {
        gap: 35px;
    }

    .stat-modern-item h3 {
        font-size: 2.2rem;
    }

    .filter-buttons-modern {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }

    .trip-card-image {
        height: 250px;
    }
}

/* iPad Pro & Tablets (768px - 991px) */
@media (max-width: 991px) {
    .destinations-hero-modern {
        padding: 90px 0 60px;
    }

    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-description-modern {
        font-size: 1.05rem;
    }

    .hero-stats-modern {
        gap: 30px;
    }

    .stat-modern-item h3 {
        font-size: 2rem;
    }

    .stat-modern-item p {
        font-size: 0.9rem;
    }

    .destinations-filters-modern {
        padding: 50px 0;
    }

    .filter-buttons-modern {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .filter-btn-content {
        padding: 20px 15px;
    }

    .filter-btn-content i {
        font-size: 1.7rem;
    }

    .destinations-grid-modern {
        padding: 60px 0;
    }

    .trip-card-image {
        height: 240px;
    }
}

/* Nest Hub & Landscape Tablets (768px - 1024px, height ≤ 900px) */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 900px) {
    .destinations-hero-modern {
        padding: 60px 0 40px;
    }

    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-description-modern {
        font-size: 0.95rem;
    }

    .hero-stats-modern {
        gap: 20px;
    }

    .stat-modern-item h3 {
        font-size: 1.7rem;
    }

    .stat-modern-item p {
        font-size: 0.8rem;
    }

    .destinations-filters-modern {
        padding: 35px 0;
    }

    .filter-header h3 {
        font-size: 1.3rem;
    }

    .filter-buttons-modern {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }

    .filter-btn-content {
        padding: 15px 12px;
        gap: 8px;
    }

    .filter-btn-content i {
        font-size: 1.4rem;
    }

    .filter-btn-content span {
        font-size: 0.75rem;
    }

    .btn-filter-apply,
    .btn-filter-reset {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .destinations-grid-modern {
        padding: 45px 0;
    }

    .results-header h3 {
        font-size: 1.3rem;
    }

    .trip-card-image {
        height: 200px;
    }

    .trip-card-body {
        padding: 18px;
    }

    .trip-card-header h4 {
        font-size: 1.1rem;
    }

    .trip-meta-info {
        gap: 10px;
    }

    .trip-meta-info .meta-item {
        font-size: 0.75rem;
    }

    .trip-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .trip-offer-info-modern {
        padding: 12px;
        margin-bottom: 15px;
    }

    .offer-type-modern,
    .offer-expiry-modern {
        font-size: 0.75rem;
    }

    .price-new-modern .price-amount,
    .price-value-modern .price-amount {
        font-size: 1.4rem;
    }

    .btn-book-trip-modern {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Nest Hub (1024x600) */
@media (min-width: 1000px) and (max-width: 1100px) and (max-height: 650px) {
    .destinations-hero-modern {
        padding: 50px 0 35px;
    }

    .hero-badge-modern {
        padding: 6px 18px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .hero-title-modern {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-description-modern {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-stats-modern {
        gap: 18px;
    }

    .stat-modern-item h3 {
        font-size: 1.5rem;
    }

    .stat-modern-item p {
        font-size: 0.75rem;
    }

    .destinations-filters-modern {
        padding: 30px 0;
    }

    .filter-header {
        margin-bottom: 25px;
    }

    .filter-header h3 {
        font-size: 1.2rem;
    }

    .filter-header p {
        font-size: 0.85rem;
    }

    .filter-buttons-modern {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
        margin-bottom: 20px;
    }

    .filter-btn-content {
        padding: 12px 10px;
        gap: 6px;
    }

    .filter-btn-content i {
        font-size: 1.2rem;
    }

    .filter-btn-content span {
        font-size: 0.7rem;
    }

    .filter-actions {
        gap: 10px;
    }

    .btn-filter-apply,
    .btn-filter-reset {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .destinations-grid-modern {
        padding: 40px 0;
    }

    .results-header {
        margin-bottom: 30px;
    }

    .results-header h3 {
        font-size: 1.2rem;
    }

    .results-header p {
        font-size: 0.85rem;
    }

    .trip-card-image {
        height: 180px;
    }

    .trip-offer-badge-modern {
        padding: 6px 10px;
        top: 10px;
        right: 10px;
    }

    .trip-offer-badge-modern .discount-value {
        font-size: 0.8rem;
    }

    .featured-badge-modern {
        padding: 5px 10px;
        top: 10px;
        left: 10px;
    }

    .featured-badge-modern span {
        font-size: 0.7rem;
    }

    .trip-category-badge-modern {
        padding: 5px 10px;
        bottom: 10px;
        right: 10px;
        font-size: 0.7rem;
    }

    .trip-card-body {
        padding: 15px;
    }

    .trip-card-header h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .trip-meta-info {
        gap: 8px;
        margin-top: 8px;
    }

    .trip-meta-info .meta-item {
        font-size: 0.7rem;
    }

    .trip-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .trip-offer-info-modern {
        padding: 10px;
        margin-bottom: 12px;
    }

    .offer-type-modern,
    .offer-expiry-modern {
        font-size: 0.7rem;
    }

    .trip-card-footer {
        padding-top: 12px;
    }

    .price-old-modern {
        font-size: 0.75rem;
    }

    .price-new-modern .price-amount,
    .price-value-modern .price-amount {
        font-size: 1.2rem;
    }

    .price-new-modern .price-currency,
    .price-value-modern .price-currency {
        font-size: 0.85rem;
    }

    .price-savings {
        font-size: 0.7rem;
    }

    .btn-book-trip-modern {
        padding: 8px 15px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .pagination-modern {
        margin-top: 40px;
    }

    .pagination-link {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* Mobile & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    .destinations-hero-modern {
        padding: 70px 0 50px;
    }

    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    .hero-stats-modern {
        gap: 20px;
        flex-direction: column;
    }

    .stat-modern-item h3 {
        font-size: 1.8rem;
    }

    .destinations-filters-modern {
        padding: 40px 0;
    }

    .filter-buttons-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filter-actions {
        flex-direction: column;
    }

    .btn-filter-apply,
    .btn-filter-reset {
        width: 100%;
    }

    .destinations-grid-modern {
        padding: 50px 0;
    }

    .trip-card-image {
        height: 220px;
    }

    .trip-meta-info {
        flex-direction: column;
        gap: 8px;
    }

    .trip-offer-info-modern .offer-details {
        flex-direction: column;
        gap: 10px;
    }

    .trip-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .btn-book-trip-modern {
        width: 100%;
    }
}

/* Mobile Phones (< 576px) */
@media (max-width: 575px) {
    .destinations-hero-modern {
        padding: 60px 0 40px;
    }

    .hero-badge-modern {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .hero-title-modern {
        font-size: 1.8rem;
    }

    .hero-description-modern {
        font-size: 0.95rem;
    }

    .stat-modern-item h3 {
        font-size: 1.6rem;
    }

    .stat-modern-item p {
        font-size: 0.85rem;
    }

    .filter-btn-content {
        padding: 18px 15px;
    }

    .trip-offer-badge-modern .badge-icon {
        display: none;
    }

    .trip-card-header h4 {
        font-size: 1.15rem;
    }

    .price-new-modern .price-amount,
    .price-value-modern .price-amount {
        font-size: 1.4rem;
    }
}

/* Extra Small Phones (< 400px) */
@media (max-width: 399px) {
    .hero-title-modern {
        font-size: 1.6rem;
    }

    .hero-description-modern {
        font-size: 0.9rem;
    }

    .stat-modern-item h3 {
        font-size: 1.5rem;
    }

    .filter-btn-content i {
        font-size: 1.5rem;
    }

    .filter-btn-content span {
        font-size: 0.85rem;
    }

    .trip-card-header h4 {
        font-size: 1.05rem;
    }
}


/* ===== Trip Offer Badge Modern ===== */
.trip-offer-badge-modern {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    z-index: 5;
    animation: pulse-badge 2s infinite;
}

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

.trip-offer-badge-modern .badge-icon {
    font-size: 1.1rem;
    color: white;
    animation: fire-flicker 1.5s infinite;
}

@keyframes fire-flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.trip-offer-badge-modern .badge-content {
    display: flex;
    flex-direction: column;
}

.trip-offer-badge-modern .discount-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Featured Badge Modern */
.featured-badge-modern {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    z-index: 5;
}

.featured-badge-modern i {
    font-size: 0.9rem;
    color: white;
}

.featured-badge-modern span {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

/* Category Badge Modern */
.trip-category-badge-modern {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.trip-category-badge-modern i {
    font-size: 0.85rem;
    color: var(--accent-sky);
}

.trip-category-badge-modern {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

/* Trip Meta Info */
.trip-meta-info {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.trip-meta-info .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
}

.trip-meta-info .meta-item i {
    font-size: 0.9rem;
    color: var(--accent-sky);
}

/* Trip Offer Info Modern */
.trip-offer-info-modern {
    padding: 15px;
    background: linear-gradient(135deg, rgba(98, 182, 203, 0.05), rgba(243, 156, 18, 0.05));
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(98, 182, 203, 0.2);
}

.trip-offer-info-modern .offer-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.offer-type-modern,
.offer-expiry-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.offer-type-modern {
    color: var(--primary-dark);
    font-weight: 600;
}

.offer-type-modern i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.offer-expiry-modern {
    color: #e74c3c;
    font-weight: 600;
}

.offer-expiry-modern i {
    color: #e74c3c;
    font-size: 1rem;
}

/* Trip Price Section Modern */
.trip-price-section-modern {
    flex: 1;
}

.price-container-offer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-old-modern {
    font-size: 0.9rem;
    color: #999;
}

.price-old-modern del {
    color: #999;
}

.price-new-modern {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-new-modern .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.price-new-modern .price-currency {
    font-size: 1rem;
    color: #666;
}

.price-savings {
    font-size: 0.85rem;
    color: var(--success-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-savings::before {
    content: '✓';
    font-weight: 700;
}

.price-container-normal {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label-modern {
    font-size: 0.85rem;
    color: #666;
}

.price-value-modern {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-value-modern .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-value-modern .price-currency {
    font-size: 1rem;
    color: #666;
}

/* Button Book Trip Modern */
.btn-book-trip-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(98, 182, 203, 0.3);
}

.btn-book-trip-modern:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(98, 182, 203, 0.4);
    color: white;
}

.btn-book-trip-modern i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-book-trip-modern:hover i {
    transform: translateX(-5px);
}

/* Trip Card Has Offer Enhancement */
.trip-card-modern.has-offer {
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.trip-card-modern.has-offer:hover {
    border-color: rgba(231, 76, 60, 0.4);
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.15);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .trip-offer-badge-modern {
        padding: 8px 12px;
        top: 10px;
        right: 10px;
    }
    
    .trip-offer-badge-modern .discount-value {
        font-size: 0.85rem;
    }
    
    .featured-badge-modern {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
    }
    
    .trip-category-badge-modern {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
    }
    
    .trip-meta-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .trip-offer-info-modern .offer-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-new-modern .price-amount,
    .price-value-modern .price-amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .trip-offer-badge-modern .badge-icon {
        display: none;
    }
    
    .btn-book-trip-modern {
        width: 100%;
    }
}
