/* Custom CSS for Professional Redesign */
:root {
    --primary-color: #4185F4;
    --primary-hover: #5490f2;
    --text-main: #1c1c1c;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.85);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Navbar */

.glass-nav.scrolled {
    background: white !important;
    backdrop-filter: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.glass-nav {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-swiper-container {
    height: 85vh;
    position: relative;
    background-color: #000;
}

.hero-swiper-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Floating Stats */
.floating-stats {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-50%);
    position: relative;
    z-index: 10;
    padding: 30px;
    margin: 0 auto;
    max-width: 900px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    text-decoration: none !important;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.stat-text {
    font-weight: 600;
    color: var(--text-main);
}

/* Curated Categories */
.swiperCategories,
.swiperDynamic,
.swiperYoutube {
    padding-top: 15px !important;
    padding-bottom: 25px !important;
}

.curated-category-card-new {
    position: relative;
    display: block;
    width: 250px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.curated-category-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 125, 255, 0.2);
}

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

.curated-category-card-new:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
}

.category-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Category Navigation Arrows */
.category-nav-prev,
.category-nav-next,
[class*='pkg-nav-prev'],
[class*='pkg-nav-next'],
.yt-nav-prev,
.yt-nav-next {
    color: var(--primary-color) !important;
    background: white;
    width: 55px !important;
    height: 55px !important;
    padding: 15px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}

.category-nav-prev:after,
.category-nav-next:after {
    font-size: 22px !important;
    font-weight: bold;
}

.category-nav-prev {}

.category-nav-next {}

@media (max-width: 768px) {

    .category-nav-prev,
    .category-nav-next,
    [class*='pkg-nav-prev'],
    [class*='pkg-nav-next'],
    .yt-nav-prev,
    .yt-nav-next {
        display: none !important;
    }
}

/* Package Cards */
.package-card {
    display: block;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    width: 250px;
    background: transparent;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-duration-tag {
    position: absolute;
    bottom: -1px;
    left: 10px;
    background: #4185f4;
    color: white;
    padding: 6px 16px;
    border-radius: 6px 6px 0 0;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
}

.package-info {
    padding: 0 5px;
}

.package-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-main);
}

.package-tagline {
    display: none;
}

.package-price {
    display: none;
}

/* Swiper Fixes */
.swiper-slide {
    height: auto;
}

.swiper-scrollbar-drag {
    background: var(--primary-color) !important;
}

/* Youtube Section */
.youtube-section {
    background-color: white;
    padding: 80px 0;
    color: var(--text-main);
}
.youtube-section .section-title {
    color: var(--text-main);
}

.youtube-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    width: 300px;
}

.youtube-card:hover {
    transform: scale(1.03);
}

/* Footer */
.footer-area {
    background: white;
    border-top: 1px solid #eaeaea;
}

.footer-area a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-area a:hover {
    color: var(--primary-color);
}

/* General Layout */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.bg-gray {
    background-color: var(--bg-light);
}

.swiper-button-prev.position-static,
.swiper-button-next.position-static {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* YouTube Facade */
.youtube-facade {
    position: relative;
    width: 320px;
    height: 180px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.youtube-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.youtube-facade:hover img {
    opacity: 1;
}

.youtube-facade .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.youtube-facade:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-facade .play-button::before {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
}