/* 🌍 DiscoverEase Tours - Modern Dark Gradient Look */

.discoverease-tours {
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #2b4162);
    padding: 90px 20px;
    text-align: center;
    color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.discoverease-tours::before,
.discoverease-tours::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.discoverease-tours::before {
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent 70%);
}

.discoverease-tours::after {
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.15), transparent 70%);
}


/* Header */

.tours-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.tours-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00e5ff, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.tours-header p {
    color: #b0bec5;
    font-size: 1.1rem;
    opacity: 0.9;
}


/* 🤖 AI Assistance */

.ai-assistance {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 45px 30px;
    margin: 60px auto;
    max-width: 850px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.ai-assistance:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.ai-assistance h2 {
    font-size: 2rem;
    background: linear-gradient(90deg, #00e5ff, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.ai-assistance p {
    color: #cfd8dc;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.ai-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}


/* CTA Buttons */

.cta-btn {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 13px 30px;
    border-radius: 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    box-shadow: 0 0 25px rgba(255, 118, 182, 0.4);
    transform: translateY(-3px);
}

.cta-btn.outline {
    background: transparent;
    border: 2px solid #00e5ff;
    color: #00e5ff;
    box-shadow: none;
}

.cta-btn.outline:hover {
    background: #00e5ff;
    color: #fff;
}


/* 🔍 Tour Filters */

.tour-filters {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 60px auto;
    max-width: 950px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.tour-filters h3 {
    font-size: 1.7rem;
    color: #00e5ff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.tour-filters form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tour-filters input,
.tour-filters select {
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s;
}

.tour-filters input:focus,
.tour-filters select:focus {
    background: rgba(0, 230, 255, 0.15);
    box-shadow: 0 0 10px rgba(0, 230, 255, 0.3);
}

.tour-filters input::placeholder {
    color: #bbb;
}


/* 🧭 Tour Cards */

.tour-cards-container-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.tour-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.tour-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.tour-card-body {
    padding: 22px;
    text-align: left;
}

.tour-card-body h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.tour-card-body p {
    color: #b0bec5;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mytourtype {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.mytourprice {
    color: #ffd369;
    font-weight: 600;
}


/* 🔗 View Button */

.view-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: linear-gradient(135deg, #ff6ec4, #7873f5);
    transform: translateY(-2px);
}


/* 👥 Join Section */

.join-paktourbuddy {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 55px 30px;
    margin-top: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
}

.join-paktourbuddy:hover {
    transform: translateY(-4px);
}

.join-paktourbuddy h2 {
    font-size: 1.9rem;
    background: linear-gradient(90deg, #00e5ff, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.join-paktourbuddy p {
    color: #cfd8dc;
    font-size: 1rem;
    margin-bottom: 25px;
}

.join-paktourbuddy .cta-btn {
    background: linear-gradient(135deg, #ff6ec4, #7873f5);
}

.join-paktourbuddy .cta-btn:hover {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}