/* Base Variables from Home Page */
        :root {
            --primary: #1a75bc;
            --secondary: #f39c12;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --accent: #27ae60;
            --dark-blue: #0a2540;
            --bg-color: #f8f9fa;
            --text-color: #333;
            --card-bg: #ffffff;
            --header-bg: #ffffff;
            --footer-bg: #2c3e50;
            --footer-text: #bbb;
            --border-color: #ddd;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --shadow-lg: 0 15px 30px rgba(0,0,0,0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--bg-color);
            overflow-x: hidden;
            padding-top: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Skip to main content for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px;
            z-index: 10000;
            text-decoration: none;
            border-radius: 0 0 4px 0;
            transition: var(--transition);
        }

        .skip-link:focus {
            top: 0;
        }

        /* Header Styles */
        .topbar {
            background-color: var(--dark);
            color: white;
            padding: 8px 0;
            font-size: 14px;
            position: relative;
            z-index: 1002;
        }

        .topbar a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .topbar a:hover {
            color: var(--secondary);
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .topbar-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }

        .topbar-contact span {
            white-space: nowrap;
        }

        .topbar-social {
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Navbar - Fixed and Sticky */
        .navbar {
            padding: 15px 0;
            transition: var(--transition);
            background-color: var(--primary);
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar.sticky {
            position: fixed;
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
            top: 0;
        }

        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 24px;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .navbar.sticky .navbar-brand {
            color: white;
        }

        .navbar-brand span {
            color: var(--secondary);
        }

        /* Navigation Menu - Desktop */
        .navbar-nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .nav-item {
            position: relative;
        }

        .navbar-nav .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 4px;
        }

        .navbar.sticky .navbar-nav .nav-link {
            color: white;
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary);
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-link.active {
            color: var(--secondary);
        }

        /* Search Bar */
        .search-container {
            position: relative;
            margin-left: 20px;
        }

        .search-input {
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            width: 250px;
            transition: var(--transition);
        }

        .search-input:focus {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }

        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border-radius: 0 0 4px 4px;
            box-shadow: var(--shadow);
            z-index: 1002;
            display: none;
        }

        .search-results.open {
            display: block;
        }

        .search-result-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .search-result-item:hover {
            background: var(--light);
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        /* Mobile Navigation Toggle */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 4px;
            transition: var(--transition);
        }

        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-toggle:focus {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 1000;
            overflow: hidden;
            transition: max-height 0.5s ease;
            max-height: 0;
        }

        .mobile-nav.open {
            display: block;
            max-height: 500px;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 20px;
        }

        .mobile-nav-item {
            margin-bottom: 10px;
        }

        .mobile-nav-link {
            display: block;
            color: white;
            text-decoration: none;
            padding: 12px 15px;
            border-radius: 4px;
            transition: var(--transition);
        }

        .mobile-nav-link:hover,
        .mobile-nav-link:focus {
            background: rgba(255, 255, 255, 0.1);
            color: var(--secondary);
        }

        /* Hero Section */
        .hero-slider {
            height: 70vh;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .hero-slide {
            height: 70vh;
            background-size: cover;
            background-position: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }

        .hero-content {
            position: relative;
            color: white;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .animated-text {
            color: var(--secondary);
            font-weight: bold;
            position: relative;
            display: inline-block;
        }

        .animated-text::after {
            content: "|";
            position: absolute;
            right: -10px;
            animation: blink 0.7s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        /* Duration Options */
        .duration-options {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .duration-btn {
            background: var(--card-bg);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .duration-btn.active {
            background: var(--primary);
            color: white;
        }

        .duration-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #1565a3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .btn-outline-primary {
            color: white;
            border: 2px solid white;
            background: transparent;
        }

        .btn-outline-primary:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Main Layout */
        main {
            padding: 60px 0;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 28px;
            margin-top: 40px;
        }

        @media (max-width: 980px) {
            .grid {
                grid-template-columns: 1fr;
            }
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            color: var(--dark);
            font-size: 2.5rem;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: var(--primary);
        }

        .section-title p {
            color: #777;
            max-width: 700px;
            margin: 15px auto 0;
        }

        /* Tours cards */
        .tours-section {
            padding: 24px 0;
        }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        @media (max-width: 1000px) {
            .tours-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .tours-grid {
                grid-template-columns: 1fr;
            }
        }

        .tour-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform var(--transition), box-shadow var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            min-height: 320px;
            text-decoration: none;
            color: inherit;
        }

        .tour-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .tour-media {
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .tour-body {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .tour-body h3 {
            margin: 0;
            font-size: 18px;
            color: var(--dark);
        }

        .tour-body p {
            margin: 0;
            color: #666;
            font-size: 14px;
            flex: 1;
        }

        .tour-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .tour-actions .small {
            padding: 8px 10px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: transparent;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            color: var(--primary);
            text-decoration: none;
            display: inline-block;
        }

        .tour-actions .small:hover {
            background: rgba(26, 117, 188, 0.1);
        }

        /* Main itinerary area */
        .itinerary {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 20px 0;
        }

        @media (max-width: 900px) {
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .info-grid {
                grid-template-columns: 1fr;
            }
        }

        .info-item {
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
            padding: 12px;
            border-radius: 10px;
            display: flex;
            gap: 10px;
            align-items: center;
            border: 1px solid rgba(8,12,20,0.03);
        }

        .info-item i {
            font-size: 20px;
            color: var(--primary);
        }

        .section-title-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .section-title-inner h2 {
            margin: 0;
            font-size: 24px;
            color: var(--dark);
        }

        /* Timeline (day-by-day) */
        .timeline {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }

        .day-card {
            background: var(--bg-color);
            border-radius: 10px;
            padding: 20px;
            border-left: 4px solid var(--primary);
            box-shadow: 0 8px 20px rgba(8,12,20,0.03);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity var(--transition), transform var(--transition);
        }

        .day-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .day-num {
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
        }

        /* Included/Excluded */
        .check-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .check-grid {
                grid-template-columns: 1fr;
            }
        }

        .check-list {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(8,12,20,0.03);
            box-shadow: var(--shadow);
        }

        .check-list li {
            margin: 12px 0;
            list-style: none;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .check-list li i {
            color: var(--primary);
        }

        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 20px;
        }

        @media (max-width: 800px) {
            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .gallery {
                grid-template-columns: 1fr;
            }
        }

        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            transition: transform var(--transition);
            box-shadow: var(--shadow);
        }

        .gallery img:hover {
            transform: scale(1.02);
        }

        /* FAQ accordion */
        .accordion {
            margin-top: 20px;
        }

        .acc-item {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 15px;
            border: 1px solid rgba(8,12,20,0.04);
            margin-bottom: 10px;
            box-shadow: var(--shadow);
        }

        .acc-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .acc-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition);
        }

        .acc-body.open {
            max-height: 240px;
            padding-top: 15px;
        }

        /* CTA */
        .cta-banner {
            margin-top: 40px;
            padding: 25px;
            border-radius: 12px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            box-shadow: 0 12px 32px rgba(26,117,188,0.18);
        }

        @media (max-width: 768px) {
            .cta-banner {
                flex-direction: column;
                text-align: center;
            }
        }

        .cta-banner .cta-actions {
            display: flex;
            gap: 10px;
        }

        @media (max-width: 500px) {
            .cta-banner .cta-actions {
                flex-direction: column;
            }
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(8,12,20,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 120;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition);
        }

        .lightbox.open {
            opacity: 1;
            pointer-events: auto;
        }

        .lightbox img {
            max-width: 92%;
            max-height: 86%;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
        }

        /* Footer */
        .footer {
            background: var(--footer-bg);
            color: white;
            padding: 60px 0 0;
            margin-top: 60px;
        }

        .footer a {
            color: rgba(255,255,255,0.9);
        }

        .footer-widget {
            margin-bottom: 30px;
        }

        .footer-widget h4 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a {
            color: var(--footer-text);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-social {
            margin-top: 20px;
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
            transition: var(--transition);
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }

        .copyright-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        /* Floating Buttons */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        .scroll-to-top {
            position: fixed;
            width: 50px;
            height: 50px;
            bottom: 85px;
            right: 25px;
            background-color: var(--primary);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 20px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: #1565a3;
            transform: scale(1.1);
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .navbar-nav {
                display: none;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .search-container {
                margin-left: 10px;
            }
            
            .search-input {
                width: 200px;
            }
        }

        @media (max-width: 768px) {
            .topbar-inner {
                flex-direction: column;
                gap: 10px;
            }
            
            .topbar-contact {
                justify-content: center;
            }
            
            .search-container {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            
            .search-input {
                width: 100%;
            }
            
            .hero-slider {
                margin-top: 0;
            }
        }

        @media (max-width: 480px) {
            .topbar-contact {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            
            .topbar-contact span {
                display: block;
                margin-bottom: 5px;
            }
            
            .navbar-brand {
                font-size: 20px;
            }
            
            .duration-options {
                flex-direction: column;
                align-items: center;
            }
            
            .duration-btn {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Sticky Sidebar */
        .sticky-sidebar {
            position: sticky;
            top: 100px;
        }
        
        /* Tour Card Links */
        .tour-card-link {
            text-decoration: none;
            color: inherit;
        }