/* ========================================
   PREMIUM TOURS SECTION STYLING
   ======================================== */

.premium-tours {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.premium-tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.premium-tours .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.premium-tours .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.premium-tours .section-header h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

.premium-tours .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
}

.premium-tours .section-header .subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Premium Tours Grid */
.premium-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Featured Card - Smaller Size */
.featured-card {
    max-width: 400px;
    margin: 0 auto;
}

.featured-card .tour-card-image {
    height: 120px;
}

.featured-card .tour-card-content {
    padding: 15px;
}

.featured-card .tour-card-content h3 {
    font-size: 1.1rem;
    min-height: auto;
}

.featured-card .tour-briefing {
    font-size: 0.8rem;
    min-height: auto;
    margin-bottom: 10px;
}

.featured-card .tour-highlights {
    gap: 8px;
    margin-bottom: 10px;
}

.featured-card .highlight-item {
    font-size: 0.7rem;
    padding: 6px 10px;
}

.featured-card .tour-pricing {
    padding: 10px;
    margin-bottom: 10px;
}

.featured-card .price-value {
    font-size: 1.3rem;
}

.featured-card .tour-actions {
    justify-content: center;
}

/* Premium Tour Card */
.premium-tour-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease backwards;
}

.premium-tour-card:nth-child(1) { animation-delay: 0.1s; }
.premium-tour-card:nth-child(2) { animation-delay: 0.2s; }
.premium-tour-card:nth-child(3) { animation-delay: 0.3s; }
.premium-tour-card:nth-child(4) { animation-delay: 0.4s; }
.premium-tour-card:nth-child(5) { animation-delay: 0.5s; }
.premium-tour-card:nth-child(6) { animation-delay: 0.6s; }
.premium-tour-card:nth-child(7) { animation-delay: 0.7s; }
.premium-tour-card:nth-child(8) { animation-delay: 0.8s; }
.premium-tour-card:nth-child(9) { animation-delay: 0.9s; }
.premium-tour-card:nth-child(10) { animation-delay: 1.0s; }
.premium-tour-card:nth-child(11) { animation-delay: 1.1s; }
.premium-tour-card:nth-child(12) { animation-delay: 1.2s; }

.premium-tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #FFD700;
}

.premium-tour-card:hover::before {
    transform: scaleX(1);
}

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

/* Tour Card Image */
.tour-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Tour Card Content */
.tour-card-content {
    padding: 30px;
}

.tour-destination {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-destination i {
    font-size: 1rem;
}

.tour-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 60px;
}

.tour-briefing {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 85px;
}

/* Tour Highlights */
.tour-highlights {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
}

.highlight-item i {
    color: #FFD700;
    font-size: 1rem;
}

.premium-tour-card:hover .highlight-item {
    background: linear-gradient(135deg, #fffef7 0%, #fff9e6 100%);
    border-color: #FFD700;
    transform: translateY(-2px);
}

/* Tour Pricing */
.tour-pricing {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
}

.price-unit {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.group-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
}

.group-pricing span {
    background: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.premium-tour-card:hover .group-pricing span {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-color: transparent;
}

/* Tour Actions */
.tour-actions {
    display: flex;
    gap: 15px;
}

.view-package-btn,
.book-now-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-package-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000;
    border: 2px solid #FFD700;
}

.view-package-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.book-now-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.view-package-btn i,
.book-now-btn i {
    transition: transform 0.3s ease;
}

.view-package-btn:hover i,
.book-now-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .premium-tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .premium-tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .tour-card-content {
        padding: 25px;
    }
    
    .tour-card-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .premium-tours {
        padding: 80px 0;
    }
    
    .premium-tours .section-header h2 {
        font-size: 2.2rem;
    }
    
    .premium-tours .section-header .subtitle {
        font-size: 1rem;
    }
    
    .premium-tours-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .tour-card-image {
        height: 200px;
    }
    
    .tour-card-content {
        padding: 20px;
    }
    
    .tour-card-content h3 {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .tour-briefing {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .tour-highlights {
        gap: 10px;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .tour-actions {
        flex-direction: column;
    }
    
    .view-package-btn,
    .book-now-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .premium-tours .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tour-card-image {
        height: 180px;
    }
    
    .tour-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .tour-card-content {
        padding: 15px;
    }
    
    .tour-destination {
        font-size: 0.8rem;
    }
    
    .tour-card-content h3 {
        font-size: 1.1rem;
    }
    
    .tour-briefing {
        font-size: 0.85rem;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .group-pricing {
        gap: 8px;
    }
    
    .group-pricing span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}
