        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Top Header - White Background */
        .top-header {
            background: white;
            border-bottom: 1px solid #e0e0e0;
            padding: 15px 0;
        }

        .top-header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 28px;
            font-weight: 700;
            color: #e60012;
        }

        .logo i {
            font-size: 32px;
        }

        .top-header-right {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .top-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .top-links a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .top-links a:hover {
            color: #e60012;
        }

        .btn-book-header {
            background: #F5A623;
            color: white;
            border: 0;
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s;
            white-space: nowrap;
            cursor: pointer;
        }

        .btn-book-header:hover {
            background: #E09612;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
        }

        /* Main Navigation - Blue Background */
        .main-nav-bar {
            background: #3B7DC3;
            position: relative;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50px;
        }

        /* Hide nav logo on desktop */
        .nav-container>.logo {
            display: none;
        }

        /* Desktop Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            align-items: center;
        }

        .nav-menu>li {
            position: relative;
        }

        .nav-menu>li>a {
            display: flex;
            align-items: center;
            gap: 5px;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            font-size: 15px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .nav-menu>li>a:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .nav-menu>li>a i {
            font-size: 10px;
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            border-top: 0;
        }

        .nav-menu>li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li {
            list-style: none;
        }

        .dropdown li a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown li a:hover {
            background: #f8f8f8;
            color: #3B7DC3;
            padding-left: 25px;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }

        /* Mobile Menu Drawer */
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: white;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
            transition: right 0.3s;
            z-index: 2000;
            overflow-y: auto;
        }

        .mobile-drawer.active {
            right: 0;
        }

        .mobile-drawer-header {
            background: #3B7DC3;
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-drawer-header h3 {
            font-size: 18px;
        }

        .close-drawer {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        .mobile-menu {
            list-style: none;
        }

        .mobile-menu>li {
            border-bottom: 1px solid #e0e0e0;
        }

        .mobile-menu>li>a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
        }

        .mobile-menu>li>a:hover {
            background: #f8f8f8;
        }

        .mobile-submenu-toggle {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            background: transparent;
            border: 0;
            color: #333;
            cursor: pointer;
            font: inherit;
            font-weight: 500;
            text-align: left;
        }

        .mobile-submenu-toggle:hover {
            background: #f8f8f8;
        }

        .mobile-submenu-toggle i {
            flex: 0 0 auto;
            font-size: 12px;
            transition: transform 0.25s;
        }

        .mobile-submenu {
            display: none;
            background: #f8f8f8;
            list-style: none;
        }

        .mobile-submenu.active {
            display: block;
        }

        .mobile-submenu li a {
            display: block;
            padding: 12px 20px 12px 40px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            border-bottom: 1px solid #e0e0e0;
        }

        .mobile-submenu li a:hover {
            background: white;
            color: #3B7DC3;
        }

        .article-meta i,
        .footer-section li i,
        .footer-destinations h4 i {
            margin-right: 8px;
        }

        .submenu-toggle {
            background: none;
            border: none;
            color: #666;
            font-size: 18px;
            cursor: pointer;
            padding: 0 10px;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
        }

        .mobile-overlay.active {
            display: block;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
            display: flex;
            align-items: center;
        }

        .slide-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            color: white;
        }

        .slide-content h1,
        .slide-content .hero-slide-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            font-size: 24px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .btn-primary {
            display: inline-block;
            background: #F5A623;
            color: white;
            border: 0;
            padding: 15px 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            font-family: inherit;
            border-radius: 5px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #E09612;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Section Styles */
        .section {
            padding: 60px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #1a365d;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Tour Cards - No Price */
        .tour-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .tour-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .tour-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .tour-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .tour-content {
            padding: 20px;
        }

        .tour-duration {
            display: inline-block;
            background: #1a365d;
            color: white;
            padding: 5px 12px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .tour-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 10px;
        }

        .tour-destinations {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        /* Destinations Grid */
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .destination-card {
            position: relative;
            text-decoration: none;
            color: inherit;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            display: block;
        }

        .destination-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .destination-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 58%, rgba(0, 0, 0, 0.08) 100%);
            padding: 70px 20px 20px;
            color: white;
        }

        .destination-overlay h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
        }

        .destination-overlay p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.94);
            line-height: 1.55;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .destination-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .destination-name {
            font-size: 16px;
            font-weight: 600;
            color: #1a365d;
        }

        /* Theme Cards */
        .theme-section {
            background: #f3f6fa;
        }

        .theme-card-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 18px;
        }

        .theme-card {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            min-height: 150px;
            padding: 18px;
            border: 1px solid #dbe5f1;
            border-radius: 8px;
            background: #fff;
            color: inherit;
            text-decoration: none;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }

        .theme-card:hover {
            transform: translateY(-4px);
            border-color: #f5a623;
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
        }

        .theme-card-icon {
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(245, 166, 35, 0.14);
            color: #e72323;
            font-size: 18px;
        }

        .theme-card-body {
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
        }

        .theme-card-body strong {
            color: #1a365d;
            font-size: 17px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .theme-card-body small {
            color: #64748b;
            font-size: 13px;
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .content-list-section {
            background: transparent;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
            margin-bottom: 30px;
        }

        .content-item {
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s;
        }

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

        .content-item-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .content-item-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a365d;
            line-height: 1.4;
        }

        /* Why Us Section */
        .why-us {
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #1a365d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 36px;
            color: #d4af37;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 10px;
        }

        .feature-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Reviews Section - No TripAdvisor */
        .reviews-section {
            background: #f8f9fa;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid #e60012;
        }

        .review-stars {
            color: #ffa500;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .review-text {
            font-size: 15px;
            line-height: 1.7;
            color: #333;
            margin-bottom: 15px;
            font-style: italic;
        }

        .review-author {
            font-size: 14px;
            font-weight: 600;
            color: #1a365d;
        }

        .review-location {
            font-size: 13px;
            color: #999;
        }

        /* Footer */
        footer {
            background: #1a365d;
            color: white;
            padding: 50px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #F5A623;
        }

        /* Social Media Icons - Colorful Circles */
        .social-icons-footer {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white !important;
            font-size: 22px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .social-icon.tripadvisor {
            background: #00AF87;
        }

        .social-icon.facebook {
            background: #1877F2;
        }

        .social-icon.twitter {
            background: #1DA1F2;
        }

        .social-icon.instagram {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
        }

        .social-icon.youtube {
            background: #FF0000;
        }

        /* Footer Popular Destinations Bar */
        .footer-destinations {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 20px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-destinations-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .footer-destinations h4 {
            color: white;
            font-size: 16px;
            margin: 0;
            font-weight: 600;
            flex: 0 0 260px;
            min-width: 260px;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .footer-destinations h4 i {
            color: #F5A623;
            margin-right: 0;
            flex: 0 0 auto;
        }

        .destinations-links {
            flex: 1 1 520px;
            min-width: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 18px 28px;
            align-items: center;
        }

        .destinations-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .destinations-links a:hover {
            color: #F5A623;
        }

        @media (max-width: 768px) {
            .footer-destinations-content {
                display: block;
                align-items: stretch;
                gap: 0;
            }

            .footer-destinations h4,
            .destinations-links {
                flex: 1 1 100%;
                min-width: 0;
            }

            .footer-destinations h4 {
                margin-bottom: 16px;
                justify-content: flex-start;
            }

            .destinations-links {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px 18px;
            }

            .destinations-links a {
                display: block;
                text-align: left;
            }
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .payment-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .payment-icons i {
            font-size: 32px;
            color: rgba(255, 255, 255, 0.6);
        }

        .copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 968px) {

            /* Hide top header on mobile */
            .top-header {
                display: none;
            }

            /* Show logo in nav on mobile */
            .nav-container {
                justify-content: space-between;
                padding: 0 15px;
            }

            .nav-container .logo {
                display: flex;
                color: white;
                font-size: 22px;
            }

            .nav-container .logo i {
                font-size: 24px;
            }

            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .slide-content h1,
            .slide-content .hero-slide-title {
                font-size: 32px;
            }

            .slide-content p {
                font-size: 18px;
            }

            .tour-grid,
            .destinations-grid,
            .content-grid,
            .features-grid,
            .reviews-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .theme-card {
                min-height: auto;
            }
        }

        @media (max-width: 1100px) {
            .theme-card-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 760px) {
            .theme-card-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 520px) {
            .theme-card-grid {
                grid-template-columns: 1fr;
            }
        }
/* Fix: Hide mobile drawer on desktop */
@media (min-width: 969px) {
    .mobile-drawer {
        display: none !important;
    }
    
    .mobile-overlay {
        display: none !important;
    }
}

/* Fix: Ensure mobile drawer works on mobile */
@media (max-width: 968px) {
    .mobile-drawer {
        display: block;
    }
}
