/* ========================================
   DESTINATIONS PAGE - COMPLETE STYLES
   ======================================== */

/* ========== HERO SECTION ========== */
.hero-section {
    background: #03834a;
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    
}
@media (min-width:992px){
    .hero-section{
        margin-top:30px;
    }
}
/* Animated floating shapes */
.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -100px;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-section h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section p {
    font-size: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== FILTERS SECTION ========== */
.filters-section {
    background: white;
    padding: 40px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filters-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Search Bar */
.search-bar {
    margin-bottom: 30px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.search-bar input:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.search-bar::after {
    content: '🔍';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 25px;
}

.filter-group h3 {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
}

/* Reset Button */
.reset-filters-btn {
    padding: 10px 24px;
    background: #03834a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.reset-filters-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Results Counter */
.results-counter {
    background: #f9fafb;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #374151;
    margin-bottom: 30px;
}

/* ========== DESTINATIONS SECTION ========== */
.destinations-section {
    padding: 60px 20px;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

/* ========== DESTINATIONS GRID ========== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* ========== DESTINATION CARD ========== */
.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #45C98E 0%, #03834a 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========== IMAGE SECTION ========== */
.destination-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #e5e7eb;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-image img {
    transform: scale(1.15) rotate(2deg);
}

/* Region Tag on Image */
.region-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 5;
}

/* ========== CARD CONTENT ========== */
.destination-content {
    padding: 25px;
}

.destination-name {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.destination-region {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
}

.destination-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Best Time to Visit */
.best-time {
    background: #f0fdf4;
    color: #15803d;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

/* Price Display */
.price-tag {
    font-weight: 700;
    color: #16a34a;
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}

.price-tag small {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

/* ========== EXPLORE BUTTON ========== */
.explore-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

/* ========== NO RESULTS MESSAGE ========== */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.no-results h3 {
    font-size: 32px;
    color: #9ca3af;
    margin-bottom: 15px;
    font-weight: 700;
}

.no-results p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 25px;
}

.no-results button {
    padding: 12px 28px;
    background: #16a34a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.no-results button:hover {
    background: #15803d;
    transform: translateY(-2px);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #45C98E 0%, #03834a 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #16a34a;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.cta-btn:hover {
    background: #15803d;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filters-section {
        position: relative;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 20px 50px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .destination-name {
        font-size: 22px;
    }

    .filter-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* ========== LOADING ANIMATION ========== */
.destination-card.loading {
    animation: pulse-loading 1.5s ease-in-out infinite;
}

@keyframes pulse-loading {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========== SMOOTH SCROLLING ========== */
html {
    scroll-behavior: smooth;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #16a34a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #15803d;
}
.trip-count-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #16a34a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.no-trips-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin: 10px 0;
}

.price-tag {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-tag small {
    color: #6b7280;
    font-size: 12px;
}

.price-tag strong {
    color: #16a34a;
    font-size: 22px;
    font-weight: 700;
}