
        :root {
            --gold: #D4AF37;
            --teal: #2A9D8F;
            --beige: #F5F1E8;
            --white: #FFFFFF;
            --dark-text: #333333;
            --light-text: #666666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.12);

          
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
            --border-radius: 24px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--beige);
            color: var(--dark-text);
            line-height: 1.6;
        }

        /* Header Styles */
        .navbar {
            background-color: var(--white);
            box-shadow: var(--shadow);
            padding: 15px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--teal);
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--dark-text);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--teal);
        }

        .navbar-nav .nav-link.active {
            color: var(--teal);
            font-weight: 600;
        }

        .btn-teal {
            background-color: var(--teal);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-teal:hover {
            background-color: #23867a;
            color: var(--white);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .btn-gold {
            background-color: var(--gold);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-gold:hover {
            background-color: #bf9b2f;
            color: var(--white);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        /* Hero Carousel */
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            border-radius: 0 0 40px 40px;
            overflow: hidden;
            margin-bottom: 100px;
            margin:0px;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(11, 122, 117, 0.15) 0%, rgba(224, 165, 38, 0.05) 100%);
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            color: var(--white);
            padding: 0 20px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 40px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        /* Icon Box Styles */
        .icon-box {
            background-color: var(--white);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .icon-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .icon-box .icon {
            width: 60px;
            height: 60px;
            background-color: var(--beige);
            border-radius: 12px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 1.5rem;
        }

        .icon-box h3 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0;
        }

        .small-icon-box {
            background-color: var(--white);
            border-radius: 10px;
            padding: 16px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .small-icon-box:hover {
            transform: translateY(-3px);
        }

        .small-icon-box .icon {
            width: 60px;
            height: 60px;
            background-color: var(--beige);
            border-radius: 8px;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 1.5rem;
        }

        .small-icon-box h4 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0;
            text-align: center;
        }

        /* Why Choose Section */
        .why-choose {
            background-color: var(--white);
            border-radius: 24px;
            padding: 60px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }
        section{
            padding: 60px 20px;
            margin: 60px auto;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .subheading {
            color: var(--teal);
            font-weight: 500;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        /* Tour Packages Section with Swiper */
         /* Breadcrumb */
        .breadcrumb-section {
            margin: 0px;
        }

        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }

        .breadcrumb-item a {
            color: var(--teal);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--light-text);
        }
        
        .tour-packages {
            margin-bottom: 80px;
            position: relative;
        }

        .package-card {
            background-color: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            margin: 10px;
        }

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

        .package-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .package-content {
            padding: 20px;
        }

        .package-content .package-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            min-height: 120px;
        }

        .package-desc {
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .package-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .package-duration, .package-price {
            display: flex;
            align-items: center;
            color: var(--light-text);
            font-size: 0.9rem;
        }

        .package-price {
            font-weight: 600;
            color: var(--teal);
        }

        .package-meta i {
            margin-right: 5px;
        }

        .package-slider {
            position: relative;
            padding: 10px 0 40px;
            max-height: 600px;;
        }

        .package-controls {
            position: absolute;
            top: -70px;
            right: 0;
        }

        .package-controls button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--white);
            border: 1px solid #eee;
            margin-left: 10px;
            transition: all 0.3s ease;
        }

        .package-controls button:hover {
            background-color: var(--teal);
            color: var(--white);
        }

        /* Swiper Custom Styles */
        .swiper-pagination {
            bottom: 0 !important;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--beige);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--teal);
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--teal) !important;
            width: 40px !important;
            height: 40px !important;
            background-color: var(--white);
            border-radius: 50%;
            box-shadow: var(--shadow);
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem !important;
        }

        /* Banner */
        /* Self-contained styles - scoped to .jj-about-section only */
        .jj-banner-section {        
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            max-width: 1200px;
            width: 100%;
            padding:0px;
        }
        
        /* Internal layout - grid */
        .jj-banner-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 500px;
        }
        
        /* Left column - image */
        .jj-banner-image-col {
            position: relative;
            overflow: hidden;
        }
        
        .jj-banner-image-wrapper {
            height: 100%;
            width: 100%;
            background-image: url('joyful_journeys.png');
            background-size: cover;
            background-position: center;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            position: relative;
        }
        
        .jj-banner-image-wrapper::after {
            content: '';
            position: absolute;
            top: 30px;
            left: 30px;
            height: 4px;
            width: 70px;
            background-color: var(--gold);
            border-radius: 2px;
        }
        
        .jj-banner-image-label {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text-light);
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
        }
        
        /* Right column - content */
        .jj-banner-content-col {
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--jj-white);
        }
        
        .jj-banner-tag {
            display: inline-block;
            color: var(--teal);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
        }
        
        .jj-banner-title {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--text-dark);
            font-family: 'Poppins', sans-serif;
        }
        
        .jj-banner-title .jj-accent {
            color: var(--gold);
        }
        
        .jj-banner-text {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 500px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
        }
        
        /* Features section */
        .jj-banner-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .jj-banner-feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .jj-banner-feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(14, 165, 165, 0.1);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }
        
        .jj-banner-feature-icon.jj-icon-gold {
            background-color: rgba(212, 175, 55, 0.1);
        }
        
        .jj-banner-feature-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--teal);
        }
        
        .jj-banner-feature-icon.jj-icon-gold svg {
            fill: var(--gold);
        }
        
        .jj-banner-feature-text h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-dark);
            font-family: 'Poppins', sans-serif;
        }
        
        .jj-banner-feature-text p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.5;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
        }
        
        /* Buttons */
        .jj-banner-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .jj-btn-teal,
        .jj-btn-gold {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .jj-btn-teal {
            background-color: var(--teal);
            color: var(--jj-white);
            box-shadow: var(--shadow-light);
        }
        
        .jj-btn-teal:hover {
            background-color: #0d9494;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(14, 165, 165, 0.3);
        }
        
        .jj-btn-gold {
            background-color: var(--gold);
            color: var(--jj-white);
            box-shadow: var(--shadow-light);
        }
        
        .jj-btn-gold:hover {
            background-color: #c29f30;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
        }
        
        /* Responsive design - scoped to section only */
        @media (max-width: 992px) {
            .jj-banner-container {
                grid-template-columns: 1fr;
            }
            
            .jj-banner-image-wrapper {
                min-height: 400px;
                border-radius: var(--border-radius) var(--border-radius) 0 0;
            }
            
            .jj-banner-content-col {
                padding: 40px 30px;
            }
            
            .jj-banner-title {
                font-size: 1.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .jj-banner-actions {
                flex-direction: column;
            }
            
            .jj-btn-teal,
            .jj-btn-gold {
                width: 100%;
                text-align: center;
            }
            
            .jj-banner-features {
                gap: 15px;
            }
            
            .jj-banner-content-col {
                padding: 30px 25px;
            }
            
            .jj-banner-title {
                font-size: 1.7rem;
            }
        }

        /* Footer Styles */
        footer {
            background-color: var(--white);
            padding: 60px 0 30px;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        }

        .footer-logo {
            font-weight: 700;
            color: var(--teal);
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: block;
        }

        .footer-heading {
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--dark-text);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

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

        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--teal);
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--beige);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: var(--teal);
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--teal);
            color: var(--white);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: var(--light-text);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .carousel-item {
                height: 400px;
            }
            
            .carousel-caption {
                bottom: 20%;
                left: 5%;
                right: 5%;
            }
            
            .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .why-choose {
                padding: 40px 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .package-controls {
                position: static;
                margin-bottom: 20px;
                display: flex;
                justify-content: center;
            }
        }


            
        /* About Section */
        .about-hero {
            position: relative;
            height: 500px;
            background: linear-gradient(rgba(11, 122, 117, 0.3),rgba(224, 165, 38, 0.2)), url('about.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 0 0 24px 24px;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin: 0px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 0;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        /* Main Content Section */
        .main-content {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--teal);
        }

        .content-text {
            color: var(--light-text);
            margin-bottom: 30px;
        }

        .content-img {
            width: 100%;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        /* Vision & Mission Section */
        .vision-mission {
            background-color: var(--beige);
            border-radius: 24px;
            padding: 80px 60px;
            margin-bottom: 80px;
            box-shadow: var(--shadow);
        }

        .vm-card {
            background-color: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
            height: 100%;
            transition: transform 0.3s ease;
        }

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

        .vm-card .icon {
            width: 80px;
            height: 80px;
            background-color: var(--beige);
            border-radius: 16px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 2rem;
        }

        .vm-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--teal);
        }

        .vm-card p {
            color: var(--light-text);
        }

        /* Why Choose Us Section */
        .why-choose {
            margin-bottom: 80px;
        }

        .subheading {
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 40px;
            font-size: 1.2rem;
        }

        .feature-card {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .feature-card .icon {
            width: 70px;
            height: 70px;
            background-color: var(--beige);
            border-radius: 16px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--teal);
        }

        .feature-card p {
            color: var(--light-text);
            font-size: 0.9rem;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, rgba(11, 122, 117, 0.1) 0%, rgba(224, 165, 38, 0.1) 100%);
            border-radius: 24px;
            padding: 80px 60px;
            margin-bottom: 80px;
        }

        .testimonial-card {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            height: 100%;
        }

        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--beige);
        }

        .testimonial-text {
            color: var(--light-text);
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--teal);
        }

        .testimonial-country {
            color: var(--light-text);
            font-size: 0.9rem;
        }

        /* Swiper Custom Styles */
        .swiper-pagination {
            bottom: -40px !important;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--beige);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--teal);
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--teal) !important;
            width: 40px !important;
            height: 40px !important;
            background-color: var(--white);
            border-radius: 50%;
            box-shadow: var(--shadow);
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem !important;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(224, 165, 38, 0.7), rgba(224, 165, 38, 0.7)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 24px;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .cta-content {
            max-width: 700px;
            padding: 0 20px;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }


        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .about-hero {
                height: 400px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .vision-mission {
                padding: 60px 30px;
            }
            
            .testimonials {
                padding: 60px 30px;
            }
            
            .cta-section {
                height: 650px;
                display: block !important;
            }

            .cta-section .hero-buttons{
                display: flex;
                flex-direction: column;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }

        /* Package Section */
        .tours-hero {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(11, 122, 117, 0.3), rgba(224, 165, 38, 0.2)), url('packages.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 0 0 24px 24px;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin: 0px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 0;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        /* Filters Section */
        .filters-section {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-label {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--teal);
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-btn {
            background-color: var(--beige);
            border: none;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: var(--teal);
            color: var(--white);
        }

        .sort-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 8px 12px;
            width: 100%;
        }

        /* Tours Grid */
        .tours-grid {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--teal);
        }

        .tour-card {
            background-color: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
        }

        .tour-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .tour-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .tour-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--gold);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .tour-content {
            padding: 20px;
        }

        .tour-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--teal);
            min-height: 75px;
        }

        .tour-desc {
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .tour-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .tour-duration, .tour-price {
            display: flex;
            align-items: center;
            color: var(--light-text);
            font-size: 0.9rem;
        }

        .tour-price {
            font-weight: 600;
            color: var(--teal);
        }

        .tour-meta i {
            margin-right: 5px;
        }

        /* Pagination */
        .pagination-section {
            margin-bottom: 60px;
        }

        .pagination {
            justify-content: center;
        }

        .page-link {
            color: var(--teal);
            border: 1px solid #ddd;
            padding: 8px 16px;
            margin: 0 5px;
            border-radius: 8px;
        }

        .page-link:hover {
            background-color: var(--teal);
            color: var(--white);
            border-color: var(--teal);
        }

        .page-item.active .page-link {
            background-color: var(--teal);
            border-color: var(--teal);
        }

        .load-more {
            text-align: center;
            margin-top: 30px;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--white);
            border-radius: 24px;
            padding: 60px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            text-align: center;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23F6F4EF" d="M30,20 Q50,0 70,20 T90,20 T90,40 T70,40 T50,60 T30,40 T10,40 T10,20 Z"/></svg>');
            background-repeat: repeat;
            background-size: 100px;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--teal);
        }

        .cta-subtitle {
            color: var(--light-text);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }


         /* Package Header */
        .package-header {
            margin:0px;
            padding: 0px;
        }

        .package-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 10px;
        }

        .package-subtitle {
            font-size: 1.3rem;
            color: var(--light-text);
            margin-bottom: 20px;
        }

        .package-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--light-text);
        }

        .meta-item i {
            color: var(--teal);
        }

        /* Image Gallery */
        .gallery-section {
            margin-bottom: 60px;
        }

        .gallery-main {
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
        }

        .gallery-thumb {
            width: 100px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .gallery-thumb:hover, .gallery-thumb.active {
            opacity: 1;
        }

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

        /* Package Details */
        .package-details {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--teal);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--beige);
        }

        .tour-overview {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .overview-text {
            color: var(--light-text);
            margin-bottom: 0;
        }

        /* Itinerary */
        .itinerary-section {
            margin-bottom: 60px;
        }

        .itinerary-card {
            background-color: var(--white);
            border-radius: 16px;
            padding: 25px;
            box-shadow: var(--shadow);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

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

        .day-number {
            display: inline-block;
            background-color: var(--teal);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .day-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--teal);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px 10px;
        }

        .activities-list {
            list-style-type: none;
            padding: 0;
            margin-bottom: 15px;
        }

        .activities-list li {
            padding: 8px 0;
            border-bottom: 1px solid var(--beige);
            display: flex;
            align-items: center;
        }

        .activities-list li:last-child {
            border-bottom: none;
        }

        .activities-list i {
            color: var(--gold);
            margin-right: 10px;
        }

        .accommodation {
            background-color: var(--beige);
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--light-text);
        }

        .accommodation i {
            margin-right: 8px;
            color: var(--teal);
        }

        /* Pricing Section */
        .pricing-section {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }

        .price-display {
            text-align: center;
            margin-bottom: 30px;
        }

        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--teal);
        }

        .price-note {
            color: var(--light-text);
            font-size: 0.9rem;
        }

        .inclusions-list, .exclusions-list {
            list-style-type: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .inclusions-list li, .exclusions-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }

        .inclusions-list i {
            color: var(--teal);
            margin-right: 10px;
        }

        .exclusions-list i {
            color: #ccc;
            margin-right: 10px;
        }

        .inclusions-title, .exclusions-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--teal);
        }

        /* Booking Form */
        .booking-form {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark-text);
        }

        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 0.2rem rgba(11, 122, 117, 0.25);
        }

        .response-note {
            background-color: var(--beige);
            padding: 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--light-text);
            margin-top: 20px;
        }

        /* Related Tours */
        .related-tours {
            margin-bottom: 80px;
        }

        .related-card {
            background-color: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .related-img {
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .related-content {
            padding: 20px;
        }

        .related-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--teal);
        }

        .related-desc {
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Swiper Custom Styles */
        .swiper-pagination {
            bottom: -40px !important;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--beige);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--teal);
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--teal) !important;
            width: 40px !important;
            height: 40px !important;
            background-color: var(--white);
            border-radius: 50%;
            box-shadow: var(--shadow);
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem !important;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--white);
            border-radius: 24px;
            padding: 60px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            text-align: center;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23F6F4EF" d="M30,20 Q50,0 70,20 T90,20 T90,40 T70,40 T50,60 T30,40 T10,40 T10,20 Z"/></svg>');
            background-repeat: repeat;
            background-size: 100px;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--teal);
        }

        .cta-subtitle {
            color: var(--light-text);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* Packages Styles */


        /* Destination Styles */

        .destinations-hero {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(11, 122, 117, 0.3), rgba(224, 165, 38, 0.2)), url('destination-header.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 0 0 40px 40px;
            /* margin: 100px 0 60px 0; */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin: 0px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 0;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        /* Button Styles */
        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            border: none;
        }

        .btn-teal {
            background-color: var(--teal);
            color: var(--white);
        }

        .btn-teal:hover {
            background-color: #0a6864;
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .btn-gold {
            background-color: var(--gold);
            color: var(--white);
        }

        .btn-gold:hover {
            background-color: #d09720;
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        /* Filters Section */
        .filters-section {
            background-color: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .filters-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
            border-radius: 2px;
        }

        .filter-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .filter-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 10px;
        }

        .filter-subtitle {
            color: var(--light-text);
            font-size: 16px;
        }

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

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-label {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--teal);
            display: block;
            font-size: 16px;
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-btn {
            background-color: var(--beige);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            color: var(--dark-text);
            border: 2px solid transparent;
        }

        .filter-btn:hover {
            background-color: var(--teal);
            color: var(--white);
            transform: translateY(-2px);
            border-color: var(--teal);
        }

        .filter-btn.active {
            background-color: var(--teal);
            color: var(--white);
            border-color: var(--teal);
        }

        .sort-group {
            margin-top: 20px;
        }

        .sort-select {
            border: 2px solid var(--beige);
            border-radius: 12px;
            padding: 12px 20px;
            width: 100%;
            font-size: 16px;
            color: var(--dark-text);
            background-color: var(--white);
            transition: var(--transition);
            cursor: pointer;
        }

        .sort-select:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(11, 122, 117, 0.1);
        }

        /* Destinations Grid */
        .destinations-section {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
            border-radius: 2px;
        }

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

        .destination-card {
            background-color: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 1;
            transform: translateY(0);
        }

        .destination-card.hidden {
            display: none;
            opacity: 0;
            transform: translateY(20px);
        }

        .destination-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .destination-img-container {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .destination-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .destination-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--gold);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(224, 165, 38, 0.3);
        }

        .destination-content {
            padding: 30px;
        }

        .destination-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .destination-desc {
            color: var(--light-text);
            font-size: 15px;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .destination-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--beige);
        }

        .destination-type {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--light-text);
        }

        .destination-type i {
            color: var(--teal);
        }

        /* Pagination */
        .pagination-section {
            margin-bottom: 80px;
            text-align: center;
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .page-btn {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            border: 2px solid var(--beige);
            background-color: var(--white);
            color: var(--dark-text);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-btn:hover {
            border-color: var(--teal);
            color: var(--teal);
            transform: translateY(-2px);
        }

        .page-btn.active {
            background-color: var(--teal);
            border-color: var(--teal);
            color: var(--white);
        }

        .page-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .page-btn.disabled:hover {
            transform: none;
            border-color: var(--beige);
            color: var(--dark-text);
        }

        .load-more {
            margin-top: 30px;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--light-text);
            font-size: 18px;
            display: none;
        }

        .no-results.show {
            display: block;
        }

        /* Image Gallery */
        .gallery-section {
            margin-bottom: 60px;
        }

        .gallery-main {
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .gallery-thumb {
            width: 120px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .gallery-thumb:hover, .gallery-thumb.active {
            opacity: 1;
            transform: scale(1.05);
        }

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

        /* Destination Overview */
        .overview-section {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--teal);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--beige);
        }

        .overview-content {
            background-color: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .overview-text {
            color: var(--light-text);
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        /* Highlights Section */
        .highlights-section {
            margin-bottom: 60px;
        }

        .highlight-card {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s ease;
            height: 100%;
        }

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

        .highlight-icon {
            width: 80px;
            height: 80px;
            background-color: var(--beige);
            border-radius: 16px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 2rem;
        }

        .highlight-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--teal);
        }

        .highlight-desc {
            color: var(--light-text);
            font-size: 0.95rem;
        }

        /* Booking Form */
        .booking-form {
            background-color: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark-text);
        }

        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 0.2rem rgba(11, 122, 117, 0.25);
        }

        .response-note {
            background-color: var(--beige);
            padding: 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--light-text);
            margin-top: 20px;
        }

        /* Related Tours */
        .related-tours {
            margin-bottom: 80px;
        }

        .related-card {
            background-color: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .related-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .related-content {
            padding: 20px;
        }

        .related-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--teal);
        }

        .related-desc {
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .related-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .related-duration, .related-price {
            display: flex;
            align-items: center;
            color: var(--light-text);
            font-size: 0.9rem;
        }

        .related-price {
            font-weight: 600;
            color: var(--teal);
        }

        .related-meta i {
            margin-right: 5px;
        }

        /* Swiper Custom Styles */
        .swiper-pagination {
            bottom: -40px !important;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--beige);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--teal);
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--teal) !important;
            width: 40px !important;
            height: 40px !important;
            background-color: var(--white);
            border-radius: 50%;
            box-shadow: var(--shadow);
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem !important;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--white);
            border-radius: 24px;
            padding: 60px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            text-align: center;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23F6F4EF" d="M30,20 Q50,0 70,20 T90,20 T90,40 T70,40 T50,60 T30,40 T10,40 T10,20 Z"/></svg>');
            background-repeat: repeat;
            background-size: 100px;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--teal);
        }

        .cta-subtitle {
            color: var(--light-text);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* End of Destination Styles */


        /* Contact US */

        jj-contact-page {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Headings styling - scoped only within .jj-contact-page */
.jj-contact-page h1,
.jj-contact-page h2,
.jj-contact-page h3,
.jj-contact-page h4,
.jj-contact-page h5,
.jj-contact-page h6 {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    font-weight: 600;
}

.jj-contact-page h1{
    color: var(--white);
}

/* 1. Contact Header Section */
.jj-contact-page .jj-contact-header {
    /* background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%); */
    background: linear-gradient(rgba(11, 122, 117, 0.3), rgba(224, 165, 38, 0.2)), url('contact.jpg');
    position: relative;
    overflow: hidden;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 24px 24px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0px;
  
}

.jj-contact-page .jj-contact-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%2313A2B8" opacity="0.03"/></svg>');
    background-size: cover;
}

.jj-contact-page .jj-divider {
    width: 80px;
    height: 4px;
    background-color: #13A2B8;
    border-radius: 2px;
}

/* 2. Contact Information Section */
.jj-contact-page .jj-contact-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.jj-contact-page .jj-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(19, 162, 184, 0.1);
}

.jj-contact-page .jj-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(19, 162, 184, 0.1);
    color: var(--teal);
    margin-bottom: 1rem;
}

/* 3. Contact Form Section */
.jj-contact-page .jj-contact-form {
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.jj-contact-page .jj-contact-form .form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.jj-contact-page .jj-contact-form .form-control,
.jj-contact-page .jj-contact-form .form-select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.jj-contact-page .jj-contact-form .form-control:focus,
.jj-contact-page .jj-contact-form .form-select:focus {
    border-color: #13A2B8;
    box-shadow: 0 0 0 0.25rem rgba(19, 162, 184, 0.25);
}

.jj-contact-page .jj-submit-btn {
    background-color: #13A2B8;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s;
}

.jj-contact-page .jj-submit-btn:hover {
    background-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 162, 184, 0.3);
}

/* 4. Map Section */
.jj-contact-page .jj-map-container {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.jj-contact-page .jj-map-container iframe {
    border: none;
}

/* 5. Call-to-Action Section */
.jj-contact-page .jj-cta-section {
    background: linear-gradient(rgba(11, 122, 117, 0.3), rgba(224, 165, 38, 0.2));
    position: relative;
    overflow: hidden;
}

.jj-contact-page .jj-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,100 L0,0 Z" fill="%2313A2B8" opacity="0.03"/></svg>');
    background-size: cover;
}

.jj-contact-page .jj-cta-btn {
    background-color: #ffffff;
    color: #13A2B8;
    border: 2px solid #13A2B8;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s;
}

.jj-contact-page .jj-cta-btn:hover {
    background-color: #13A2B8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(19, 162, 184, 0.3);
}

/* Footer */
.jj-contact-page .jj-contact-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
}

.jj-contact-page .jj-footer-link {
    color: #13A2B8;
    text-decoration: none;
    transition: color 0.3s;
}

.jj-contact-page .jj-footer-link:hover {
    color: var(--teal);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jj-contact-page .jj-contact-header h1 {
        font-size: 2rem;
    }
    
    .jj-contact-page .jj-contact-card {
        margin-bottom: 1rem;
    }
    
    .jj-contact-page .jj-contact-form .card-body {
        padding: 1.5rem !important;
    }
}

/* Animation for cards on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jj-contact-page .jj-contact-card {
    animation: fadeInUp 0.5s ease forwards;
}

.jj-contact-page .jj-contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.jj-contact-page .jj-contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.jj-contact-page .jj-contact-card:nth-child(3) {
    animation-delay: 0.3s;
}

.jj-contact-page .jj-contact-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Plan Your Trip */


        .plan-trip-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #0a6e7c, #2a9d8f, #e9c46a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #5a6d7c;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        .trip-plan-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(10, 110, 124, 0.1);
            padding: 50px;
            max-width: 900px;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }

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

        .trip-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        label {
            font-size: 0.95rem;
            font-weight: 600;
            color: #0a6e7c;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        label i {
            font-style: normal;
            font-size: 1.2rem;
        }

        select, input {
            padding: 16px 20px;
            border: 2px solid #e2f0ef;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            color: #333;
            background-color: white;
            transition: all 0.3s ease;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a6e7c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 18px;
        }

        input[type="date"] {
            background-image: none;
        }

        input[type="number"] {
            background-image: none;
        }

        select:focus, input:focus {
            outline: none;
            border-color: #2a9d8f;
            box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.15);
        }

        .submit-button {
            grid-column: span 2;
            padding: 20px;
            background: linear-gradient(90deg, #0a6e7c, #2a9d8f);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            letter-spacing: 0.5px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .submit-button:hover {
            background: linear-gradient(90deg, #084e58, #1f7a6d);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(10, 110, 124, 0.25);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        .trust-badge {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            color: #5a6d7c;
            font-size: 0.95rem;
            padding-top: 20px;
            border-top: 1px solid #eef5f4;
        }

        .trust-badge span {
            font-weight: 600;
            color: #0a6e7c;
        }

        @media (max-width: 992px) {
            .trip-form {
                gap: 25px;
            }
            
            .trip-plan-card {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .trip-form {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .submit-button {
                grid-column: span 1;
            }
            
            .section-header h1 {
                font-size: 2.2rem;
            }
            
            .section-header p {
                font-size: 1.1rem;
            }
            
            .trip-plan-card {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .section-header h1 {
                font-size: 1.8rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .trip-plan-card {
                padding: 25px 20px;
                border-radius: 20px;
            }
            
            select, input {
                padding: 14px 16px;
            }
            
            .submit-button {
                padding: 18px;
                font-size: 1.1rem;
            }
            
            body {
                padding: 15px;
            }
        }

        /* Custom styling for placeholders */
        ::placeholder {
            color: #a0b1b9;
            opacity: 1;
        }

        :-ms-input-placeholder {
            color: #a0b1b9;
        }

        ::-ms-input-placeholder {
            color: #a0b1b9;
        }

        /* Hide calendar icon in Edge */
        input[type="date"]::-webkit-calendar-picker-indicator {
            opacity: 0.6;
            cursor: pointer;
        }

        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }

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

        .whatsapp-button:hover {
            transform: scale(1.1);
        }


        .custom-video-wrapper {
    position: relative;
    max-width: 100%;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: 0.3s ease;
}

.play-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video hidden initially */
.custom-video {
    display: none;
    width: 100%;
    border-radius: 12px;
}
