/* ============================================
   TOUR PACKAGES - COMPLETE CSS
   WIDTH: 1600px | PREMIUM DESIGN
   ============================================ */

/* ---------- GLOBAL CONTAINER ---------- */
.tour-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ---------- SECTION 1: HERO ---------- */
.tour-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 40%, #2d1b4e 100%);
    overflow: hidden;
}

.tour-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(46,196,182,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(255,107,53,0.10) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(247,197,159,0.05) 0%, transparent 40%);
    z-index: 0;
}

.tour-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #f8f9fa, transparent);
    z-index: 1;
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.tour-hero-badge {
    display: inline-block;
    padding: 8px 28px;
    background: rgba(46,196,182,0.15);
    border: 1px solid rgba(46,196,182,0.3);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2EC4B6;
    margin-bottom: 20px;
}

.tour-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.tour-hero-content h1 span {
    background: linear-gradient(135deg, #2EC4B6, #F7C59F, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: tourGradient 6s ease-in-out infinite;
}

@keyframes tourGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tour-hero-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.tour-hero-search {
    display: flex;
    max-width: 550px;
    margin: 0 auto 25px;
    background: rgba(255,255,255,0.08);
    border-radius: 60px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tour-hero-search input {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 15px;
    outline: none;
}

.tour-hero-search input::placeholder {
    color: rgba(255,255,255,0.4);
}

.tour-hero-search button {
    padding: 14px 32px;
    background: linear-gradient(135deg, #2EC4B6, #004E89);
    border: none;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-hero-search button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(46,196,182,0.3);
}

.tour-hero-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-hero-tags span {
    padding: 6px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-hero-tags span:hover {
    background: rgba(46,196,182,0.15);
    border-color: #2EC4B6;
    color: #2EC4B6;
    transform: translateY(-2px);
}

/* ---------- SECTION 2: FEATURED PACKAGES ---------- */
.tour-featured {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.tour-header {
    text-align: center;
    margin-bottom: 45px;
}

.tour-badge {
    display: inline-block;
    padding: 5px 20px;
    background: linear-gradient(135deg, #2EC4B6, #004E89);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tour-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
}

.tour-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-header p {
    color: #666;
    font-size: 16px;
    margin-top: 4px;
}

/* ---------- TOUR CARD GRID ---------- */
.tour-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46,196,182,0.10);
    border-color: #2EC4B6;
}

.tour-card-featured {
    border-color: #FF6B35;
    position: relative;
}

.tour-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #2EC4B6);
    z-index: 2;
}

.tour-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.06);
}

.tour-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 16px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.tour-card-days {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 4px 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.tour-card-body {
    padding: 20px 22px 22px;
}

.tour-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #888;
}

.tour-card-meta span:last-child {
    color: #FFD700;
    font-weight: 600;
}

.tour-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.tour-card-body > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.tour-card-includes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.tour-card-includes span {
    padding: 3px 12px;
    background: #f0f7f6;
    border-radius: 50px;
    font-size: 12px;
    color: #2EC4B6;
    font-weight: 500;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.tour-card-price {
    font-size: 22px;
    font-weight: 800;
    color: #004E89;
}

.tour-card-price small {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.tour-card-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #2EC4B6, #004E89);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-card-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(46,196,182,0.3);
    color: white;
}

/* ---------- SECTION 3: CATEGORIES ---------- */
.tour-categories {
    padding: 60px 0 70px;
    background: white;
}

.tour-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tour-category {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.tour-category:hover {
    background: white;
    border-color: #2EC4B6;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(46,196,182,0.06);
}

.tour-category-icon {
    font-size: 38px;
    display: block;
    margin-bottom: 8px;
}

.tour-category h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.tour-category p {
    color: #888;
    font-size: 13px;
    margin-bottom: 6px;
}

.tour-category-count {
    display: inline-block;
    padding: 2px 14px;
    background: rgba(46,196,182,0.1);
    border-radius: 50px;
    font-size: 11px;
    color: #2EC4B6;
    font-weight: 600;
}

/* ---------- SECTION 4: WHY US ---------- */
.tour-why {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tour-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tour-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.tour-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.tour-why-item span {
    font-size: 32px;
    flex-shrink: 0;
}

.tour-why-item strong {
    display: block;
    font-size: 15px;
    color: #1a1a2e;
}

.tour-why-item p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* ---------- SECTION 5: CTA ---------- */
.tour-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 40%, #2d1b4e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tour-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46,196,182,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: tourCtaGlow 8s ease-in-out infinite;
}

.tour-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: tourCtaGlow 10s ease-in-out infinite reverse;
}

@keyframes tourCtaGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.tour-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.tour-cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.tour-cta-content h2 span {
    background: linear-gradient(135deg, #2EC4B6, #F7C59F, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: tourGradient 5s ease-in-out infinite;
}

.tour-cta-content p {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    margin-bottom: 28px;
}

.tour-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-cta-primary {
    padding: 14px 38px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(255,107,53,0.3);
}

.tour-cta-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255,107,53,0.4);
    color: white;
}

.tour-cta-secondary {
    padding: 14px 38px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
}

.tour-cta-secondary:hover {
    border-color: #2EC4B6;
    background: rgba(46,196,182,0.08);
    transform: translateY(-4px);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1400px) {
    .tour-container {
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .tour-featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .tour-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tour-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tour-hero-content h1 {
        font-size: 42px;
    }
    .tour-hero-search {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border: none;
        gap: 12px;
    }
    .tour-hero-search input {
        background: rgba(255,255,255,0.08);
        border-radius: 60px;
        padding: 14px 20px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .tour-hero-search button {
        border-radius: 60px;
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .tour-container {
        padding: 0 16px;
    }

    .tour-hero {
        min-height: 60vh;
        padding: 40px 16px;
    }
    .tour-hero-content h1 {
        font-size: 32px;
    }
    .tour-hero-content p {
        font-size: 16px;
    }
    .tour-hero-tags {
        gap: 8px;
    }
    .tour-hero-tags span {
        font-size: 12px;
        padding: 4px 14px;
    }

    .tour-header h2 {
        font-size: 28px;
    }

    .tour-featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tour-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .tour-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tour-card-image {
        height: 180px;
    }
    .tour-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .tour-card-btn {
        text-align: center;
    }

    .tour-cta-content h2 {
        font-size: 30px;
    }
    .tour-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .tour-cta-primary,
    .tour-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tour-hero-content h1 {
        font-size: 26px;
    }
    .tour-hero-tags span {
        font-size: 11px;
        padding: 4px 12px;
    }

    .tour-categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .tour-category {
        padding: 20px 14px;
    }
    .tour-category-icon {
        font-size: 30px;
    }
    .tour-category h4 {
        font-size: 14px;
    }

    .tour-card-body {
        padding: 16px;
    }
    .tour-card-body h3 {
        font-size: 16px;
    }
    .tour-card-price {
        font-size: 18px;
    }
}