     :root {
            --blue: #0074B7;
            --green: #009966;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --light-text: #fff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

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

        .top-bar {
            background-color: var(--blue);
            color: var(--light-text);
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .social-icons a {
            color: var(--light-text);
            margin-left: 12px;
            font-size: 1.1rem;
            transition: opacity 0.3s;
        }

        .social-icons a:hover {
            opacity: 0.8;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--blue);
            text-decoration: none;
        }

        .logo span {
            color: var(--green);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-text);
            transition: color 0.3s;
        }

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

        .login-btn {
            background-color: var(--blue);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .login-btn:hover {
            background-color: #005a8c;
            color: white;
        }

        .hero-section {
            height: 80vh;
            min-height: 500px;
            position: relative;
        }

        .carousel-item {
            height: 80vh;
            min-height: 500px;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
        }

        .carousel-caption {
            bottom: 30%;
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
            left: 10%;
            right: 10%;
        }

        .carousel-caption h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .carousel-caption p {
            font-size: 1.2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .section-title {
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--green);
        }

        .section-intro {
            color: #666;
            margin-bottom: 2.5rem;
            max-width: 700px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .destination-card, .package-card, .blog-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            margin-bottom: 1.5rem;
        }

        .destination-card:hover, .package-card:hover, .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .destination-card {
            height: 250px;
            position: relative;
        }

        .destination-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .destination-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px 15px 15px;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .package-card {
            border: none;
        }

        .package-img {
            height: 200px;
            object-fit: cover;
        }

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

        .package-price {
            color: var(--blue);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .blog-card {
            border: none;
        }

        .blog-img {
            height: 200px;
            object-fit: cover;
        }

        .blog-badge {
            background-color: var(--blue);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 10px;
        }

        

        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-tagline {
            color: #bdc3c7;
            margin-bottom: 20px;
        }

        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

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

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .contact-info p {
            margin-bottom: 10px;
            color: #bdc3c7;
        }

        .payment-icons {
            margin-top: 20px;
        }

        .payment-icons img {
            height: 30px;
            margin-right: 10px;
        }

        .copyright {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .carousel-caption {
                bottom: 20%;
                left: 5%;
                right: 5%;
            }

            .carousel-caption h2 {
                font-size: 2rem;
            }

           
        }

        /* Hero Section */
      
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
        }

        .hero-content {
            color: white;
            text-align: center;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 2rem;
        }

        .hero-tag {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .hero-details {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 2rem;
        }

        .hero-detail {
            display: flex;
            align-items: center;
            color: white;
        }

        .hero-detail i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        .hero-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #FFD700;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .btn-primary-custom {
            background-color: var(--blue);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
        }

        .btn-primary-custom:hover {
            background-color: #005a8c;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary-custom {
            background-color: transparent;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid white;
        }

        .btn-secondary-custom:hover {
            background-color: white;
            color: var(--blue);
            transform: translateY(-3px);
        }
        

        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }

        .breadcrumb-item a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: #ddd;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            color: white;
        }


        /* About Company Section */
        .about-section {
            background-color: white;
        }

        .image-collage {
            position: relative;
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .main-img {
            width: 70%;
            height: 70%;
            object-fit: cover;
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .secondary-img {
            width: 50%;
            height: 50%;
            object-fit: cover;
            border-radius: 10px;
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 1;
            box-shadow: var(--shadow);
        }

        .stats-row {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            text-align: center;
        }

        .stat-item {
            flex: 1;
            padding: 0 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }

        /* Vision & Mission Section */
        .vision-mission-section {
            background-color: var(--light-bg);
            position: relative;
        }

        .vision-mission-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            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="%23009966" opacity="0.05" d="M28.1,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C29.5,39.7,29.9,37.9,28.1,36.6z M48.3,15.1c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C49.9,17.7,49.5,15.9,48.3,15.1z M75.9,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C77.3,39.7,77.7,37.9,75.9,36.6z M15.1,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C16.5,51.4,16.9,49.6,15.1,48.3z M84.9,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C86.3,51.4,86.7,49.6,84.9,48.3z M36.6,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C38.2,78.5,37.8,76.7,36.6,75.9z M63.4,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C65,78.5,64.6,76.7,63.4,75.9z"/></svg>');
            opacity: 0.3;
        }

        .vm-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
        }

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

        .vm-icon {
            font-size: 3rem;
            color: var(--blue);
            margin-bottom: 1.5rem;
        }

        .vm-title {
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 1rem;
        }

        /* Why Choose Us Section */
        .why-choose-section {
            background-color: white;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            height: 100%;
            margin-bottom: 1.5rem;
            transition: var(--transition);
            border-top: 4px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            border-top: 4px solid var(--green);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--blue);
        }

        .feature-title {
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 1rem;
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--light-bg);
            position: relative;
        }

        .testimonials-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            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="%230074B7" opacity="0.05" d="M50,10c22.1,0,40,17.9,40,40S72.1,90,50,90S10,72.1,10,50S27.9,10,50,10z M50,15c-19.3,0-35,15.7-35,35s15.7,35,35,35s35-15.7,35-35S69.3,15,50,15z M50,25c13.8,0,25,11.2,25,25S63.8,75,50,75S25,63.8,25,50S36.2,25,50,25z M50,30c-11,0-20,9-20,20s9,20,20,20s20-9,20-20S61,30,50,30z"/></svg>');
            opacity: 0.3;
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
        }

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

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 4rem;
            color: var(--green);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .author-info h5 {
            margin-bottom: 0.2rem;
            font-weight: 600;
        }

        .author-info p {
            margin-bottom: 0;
            color: #666;
            font-size: 0.9rem;
        }

        .stars {
            color: #FFC107;
            margin-bottom: 0.5rem;
        }

        
        /* Contact Details Section */
        .contact-details-section {
            background-color: white;
        }

        .contact-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: 100%;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

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

        .contact-icon {
            font-size: 2rem;
            color: var(--blue);
            margin-bottom: 1.5rem;
        }

        .contact-title {
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        /* Contact Form */
        .form-section {
            background-color: var(--light-bg);
        }

        .contact-form {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 116, 183, 0.25);
        }

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

        .submit-btn {
            background-color: var(--green);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            font-size: 1.1rem;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: #008055;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Map Section */
        .map-section {
            background-color: white;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--light-bg);
        }

        .accordion-item {
            border: none;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .accordion-button {
            background-color: white;
            color: var(--dark-text);
            font-weight: 500;
            padding: 20px;
            border-radius: 8px;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background-color: white;
            color: var(--blue);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0, 0, 0, 0.125);
        }

        .accordion-body {
            padding: 20px;
            color: #666;
        }

        /* Filter Bar */
        .filter-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            gap: 10px;
        }

        .filter-btn {
            background-color: white;
            border: 1px solid #ddd;
            color: var(--dark-text);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }

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

        /* Tour Cards */
        .tour-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            transition: var(--transition);
            position: relative;
            height: 400px;
            perspective: 1000px;
            transform-style: preserve-3d;
        }

        .tour-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .tour-card:hover .tour-card-inner {
            transform: rotateY(5deg) rotateX(5deg);
        }

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

        .tour-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tour-card:hover .tour-image {
            transform: scale(1.05);
        }

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

        .tour-card:hover .tour-overlay {
            padding-bottom: 30px;
        }

        .tour-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--green);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            z-index: 2;
        }

        .tour-title {
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .tour-description {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            opacity: 0.9;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .tour-card:hover .tour-description {
            max-height: 100px;
        }

        .tour-price {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #FFD700;
        }

        .tour-btn {
            background-color: var(--blue);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(10px);
            width: 100%;
        }

        .tour-card:hover .tour-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .tour-btn:hover {
            background-color: #005a8c;
            transform: translateY(-2px);
        }

        /* Pagination */
        .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .pagination {
            display: flex;
            list-style: none;
            padding: 0;
            gap: 10px;
        }

        .page-item {
            margin: 0 5px;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

        .page-item.active .page-link {
            background: linear-gradient(135deg, var(--blue), var(--green));
            color: white;
        }

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

        /* Background Pattern */
        .section-background {
            position: relative;
        }

        .section-background:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            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="%23009966" opacity="0.03" d="M28.1,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C29.5,39.7,29.9,37.9,28.1,36.6z M48.3,15.1c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C49.9,17.7,49.5,15.9,48.3,15.1z M75.9,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C77.3,39.7,77.7,37.9,75.9,36.6z M15.1,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C16.5,51.4,16.9,49.6,15.1,48.3z M84.9,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C86.3,51.4,86.7,49.6,84.9,48.3z M36.6,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C38.2,78.5,37.8,76.7,36.6,75.9z M63.4,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C65,78.5,64.6,76.7,63.4,75.9z"/></svg>');
            opacity: 0.5;
            z-index: -1;
        }

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

        .fade-in {
            animation: fadeInUp 0.5s ease forwards;
        }

        @media (max-width: 768px) {
            .tour-card {
                height: 350px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }


        /* Overview Section */
        .overview-section {
            background-color: white;
        }

        .highlight-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            height: 100%;
            text-align: center;
            transition: var(--transition);
        }

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

        .highlight-icon {
            font-size: 2.5rem;
            color: var(--blue);
            margin-bottom: 1rem;
        }

        .highlight-title {
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 0.5rem;
        }

        /* Quick Facts Section */
        .quick-facts-section {
            background-color: var(--light-bg);
        }

        .fact-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: var(--shadow);
            height: 100%;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .fact-card:hover {
            transform: translateY(-3px);
        }

        .fact-icon {
            font-size: 1.8rem;
            color: var(--blue);
            margin-bottom: 0.8rem;
        }

        .fact-title {
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 0.5rem;
        }

        /* Itinerary Section */
        .itinerary-section {
            background-color: white;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--blue);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .timeline-day {
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .timeline-image {
            border-radius: 8px;
            overflow: hidden;
            margin-top: 10px;
        }

        .timeline-image img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .timeline-item:nth-child(odd)::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: white;
            border: 4px solid var(--blue);
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-item:nth-child(even)::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            left: -10px;
            background-color: white;
            border: 4px solid var(--blue);
            border-radius: 50%;
            z-index: 1;
        }

        /* Included/Excluded Section */
        .included-section {
            background-color: var(--light-bg);
        }

        .included-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: 100%;
        }

        .included-list, .excluded-list {
            list-style: none;
            padding: 0;
        }

        .included-list li, .excluded-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .included-list li i {
            color: var(--green);
            margin-right: 10px;
            margin-top: 3px;
        }

        .excluded-list li i {
            color: #dc3545;
            margin-right: 10px;
            margin-top: 3px;
        }

        /* Map Section */
        .map-section {
            background-color: white;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Accommodation Section */
        .accommodation-section {
            background-color: var(--light-bg);
        }

        .hotel-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

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

        .hotel-image {
            height: 200px;
            overflow: hidden;
        }

        .hotel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .hotel-content {
            padding: 20px;
        }

        .hotel-name {
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 0.5rem;
        }

        .hotel-rating {
            color: #FFC107;
            margin-bottom: 0.5rem;
        }

        /* highlight Section */
        .highlight-section {
            background-color: white;
        }

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

        .highlight-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .highlight-item:hover {
            transform: scale(1.03);
        }

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

        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--light-bg);
        }

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

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

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 4rem;
            color: var(--green);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .author-info h5 {
            margin-bottom: 0.2rem;
            font-weight: 600;
        }

        .author-info p {
            margin-bottom: 0;
            color: #666;
            font-size: 0.9rem;
        }

        .stars {
            color: #FFC107;
            margin-bottom: 0.5rem;
        }

        /* FAQ Section */
        .faq-section {
            background-color: white;
        }

        .accordion-item {
            border: none;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .accordion-button {
            background-color: white;
            color: var(--dark-text);
            font-weight: 500;
            padding: 20px;
            border-radius: 8px;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background-color: white;
            color: var(--blue);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0, 0, 0, 0.125);
        }

        .accordion-body {
            padding: 20px;
            color: #666;
        }

        /* Inquiry Form Section */
        .inquiry-section {
            background-color: var(--light-bg);
        }

        .inquiry-form {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

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

        .form-control, .form-select {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 116, 183, 0.25);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Related Tours Section */
        .related-tours-section {
            background-color: white;
        }

        .tour-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
            transition: var(--transition);
            height: 100%;
        }

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

        .tour-image {
            height: 200px;
            overflow: hidden;
        }

        .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .tour-content {
            padding: 20px;
        }

        .tour-title {
            font-weight: 600;
            color: var(--light-text);
            margin-bottom: 0.5rem;
        }

        .tour-price {
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 1rem;
        }

        .tour-btn {
            background-color: var(--blue);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            width: 100%;
        }

        .tour-btn:hover {
            background-color: #005a8c;
            color: white;
        }

      

        
        /* Floating Chat Button */
        .floating-chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .chat-btn {
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            border: none;
        }

        .chat-btn:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd)::before, .timeline-item:nth-child(even)::before {
                left: 21px;
            }
            
            .highlight-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
        }

        /* Customization Section */
        .customization-section {
            background: linear-gradient(to bottom, #ffffff, #e6f7ff);
            position: relative;
            overflow: hidden;
        }

        .customization-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            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="%23009966" opacity="0.03" d="M28.1,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C29.5,39.7,29.9,37.9,28.1,36.6z M48.3,15.1c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C49.9,17.7,49.5,15.9,48.3,15.1z M75.9,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C77.3,39.7,77.7,37.9,75.9,36.6z M15.1,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C16.5,51.4,16.9,49.6,15.1,48.3z M84.9,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C86.3,51.4,86.7,49.6,84.9,48.3z M36.6,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C38.2,78.5,37.8,76.7,36.6,75.9z M63.4,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C65,78.5,64.6,76.7,63.4,75.9z"/></svg>');
            opacity: 0.5;
            z-index: 0;
        }

        /* Info Panel */
        .info-panel {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .info-image {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }

        .info-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .info-feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(0, 116, 183, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--blue);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .info-feature:hover .info-icon {
            background-color: var(--blue);
            color: white;
            transform: scale(1.1);
        }

        .info-text h4 {
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 5px;
        }

        .info-text p {
            color: #666;
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        /* Form Panel */
        .form-panel {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 1;
        }

        .form-title {
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-step {
            display: none;
            animation: fadeIn 0.5s ease forwards;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        .form-control, .form-select {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 116, 183, 0.25);
        }

        .checkbox-group, .radio-group {
            margin-bottom: 1.5rem;
        }

        .checkbox-item, .radio-item {
            margin-bottom: 10px;
        }

        .checkbox-item label, .radio-item label {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .checkbox-item input, .radio-item input {
            margin-right: 10px;
        }

        .budget-slider {
            width: 100%;
            margin: 20px 0;
        }

        .budget-value {
            text-align: center;
            font-weight: 600;
            color: var(--blue);
            margin-top: 10px;
        }

        .budget-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            color: #666;
            font-size: 0.8rem;
        }

        /* Progress Bar */
        .progress-container {
            margin-bottom: 2rem;
        }

        .progress {
            height: 8px;
            border-radius: 10px;
            background-color: #e9ecef;
            margin-bottom: 10px;
        }

        .progress-bar {
            background: linear-gradient(90deg, var(--green), var(--blue));
            border-radius: 10px;
            transition: width 0.5s ease;
        }

        .step-indicators {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }

        .step-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }

        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 5px;
            transition: var(--transition);
        }

        .step-indicator.active .step-number {
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
        }

        .step-label {
            font-size: 0.8rem;
            color: #666;
            text-align: center;
        }

        .step-indicator.active .step-label {
            color: var(--blue);
            font-weight: 500;
        }

        /* Form Navigation */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
        }

        .btn-prev, .btn-next, .btn-submit {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
        }

        .btn-prev {
            background-color: #e9ecef;
            color: var(--dark-text);
        }

        .btn-prev:hover {
            background-color: #dee2e6;
        }

        .btn-next, .btn-submit {
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
        }

        .btn-next:hover, .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }

        .success-icon {
            font-size: 4rem;
            color: var(--green);
            margin-bottom: 1.5rem;
        }

        .success-message h3 {
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 1rem;
        }

        .success-message p {
            color: #666;
            margin-bottom: 2rem;
        }

        .chat-btn {
            background-color: #25D366;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            display: inline-flex;
            align-items: center;
            margin-top: 1rem;
        }

        .chat-btn i {
            margin-right: 8px;
        }

        .chat-btn:hover {
            background-color: #128C7E;
            color: white;
            transform: translateY(-2px);
        }

        /* Floating Animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 5s ease-in-out infinite;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .info-panel, .form-panel {
                padding: 25px;
            }
            
            .form-navigation {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-prev, .btn-next, .btn-submit {
                width: 100%;
            }
        }

        /* Floating Animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 5s ease-in-out infinite;
        }

        .floating-1 {
            animation-delay: 0s;
        }

        .floating-2 {
            animation-delay: 1s;
        }

        .floating-3 {
            animation-delay: 2s;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.7);
            z-index: 1;
        }

        .palm-1 {
            top: 15%;
            left: 10%;
        }

        .palm-2 {
            top: 25%;
            right: 15%;
        }

        .wave {
            bottom: 20%;
            left: 20%;
        }

        .cloud-1 {
            top: 20%;
            left: 25%;
        }

        .cloud-2 {
            top: 15%;
            right: 25%;
        }

        /* Filter and Search Section */
        .filter-section {
            background-color: white;
            padding: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .filter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            justify-content: center;
        }

        .search-box {
            position: relative;
            flex: 1;
            min-width: 250px;
            max-width: 400px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 15px 12px 45px;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-size: 1rem;
            transition: var(--transition);
        }

        .search-box input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 116, 183, 0.25);
            outline: none;
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .filter-dropdown {
            position: relative;
        }

        .filter-dropdown select {
            padding: 12px 40px 12px 15px;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-size: 1rem;
            background-color: white;
            appearance: none;
            cursor: pointer;
            transition: var(--transition);
            min-width: 180px;
        }

        .filter-dropdown select:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 116, 183, 0.25);
            outline: none;
        }

        .dropdown-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            pointer-events: none;
        }

        /* Destination Cards Section */
        .destinations-section {
            background-color: var(--light-bg);
            position: relative;
        }

        .destinations-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            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="%23009966" opacity="0.03" d="M28.1,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C29.5,39.7,29.9,37.9,28.1,36.6z M48.3,15.1c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C49.9,17.7,49.5,15.9,48.3,15.1z M75.9,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C77.3,39.7,77.7,37.9,75.9,36.6z M15.1,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C16.5,51.4,16.9,49.6,15.1,48.3z M84.9,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C86.3,51.4,86.7,49.6,84.9,48.3z M36.6,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C38.2,78.5,37.8,76.7,36.6,75.9z M63.4,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C65,78.5,64.6,76.7,63.4,75.9z"/></svg>');
            opacity: 0.5;
            z-index: 0;
        }

        .destination-grid {
            position: relative;
            z-index: 1;
        }

        .destination-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            transition: var(--transition);
            position: relative;
            height: 350px;
            cursor: pointer;
        }

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

        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px;
            transition: var(--transition);
        }

        .destination-card:hover .destination-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
            padding-bottom: 30px;
        }

        .destination-name {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .destination-tagline {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .destination-info {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .destination-card:hover .destination-info {
            max-height: 100px;
        }

        .destination-description {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .destination-btn {
            background-color: var(--blue);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(10px);
        }

        .destination-card:hover .destination-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .destination-btn:hover {
            background-color: #005a8c;
            transform: translateY(-2px);
        }

        .favorite-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #ccc;
            transition: var(--transition);
            cursor: pointer;
            z-index: 2;
        }

        .favorite-icon:hover {
            color: #ff4757;
            transform: scale(1.1);
        }

        .favorite-icon.active {
            color: #ff4757;
        }

        .rating-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--dark-text);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            z-index: 2;
        }

        .rating-badge i {
            color: #FFC107;
            margin-right: 5px;
        }

        /* Pagination Section */
        .pagination-section {
            background-color: white;
            padding: 40px 0;
        }

        .pagination-container {
            display: flex;
            justify-content: center;
        }

        .pagination {
            display: flex;
            list-style: none;
            padding: 0;
            gap: 10px;
        }

        .page-item {
            margin: 0 5px;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: white;
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: none;
        }

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

        .page-item.active .page-link {
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
        }

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

        .load-more-btn {
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

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

        .fade-in {
            animation: fadeInUp 0.5s ease forwards;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .filter-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-box, .filter-dropdown {
                width: 100%;
                max-width: 100%;
            }
            
            .destination-card {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .floating-icon {
                display: none;
            }
        }

        /* Filter and Search Section */
        .filter-section {
            background-color: white;
            padding: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .filter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            justify-content: center;
        }

        .search-box {
            position: relative;
            flex: 1;
            min-width: 250px;
            max-width: 400px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 15px 12px 45px;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-size: 1rem;
            transition: var(--transition);
        }

        .search-box input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 116, 183, 0.25);
            outline: none;
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .filter-dropdown {
            position: relative;
        }

        .filter-dropdown select {
            padding: 12px 40px 12px 15px;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-size: 1rem;
            background-color: white;
            appearance: none;
            cursor: pointer;
            transition: var(--transition);
            min-width: 180px;
        }

        .filter-dropdown select:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 116, 183, 0.25);
            outline: none;
        }

        .dropdown-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            pointer-events: none;
        }

        /* Destination Cards Section */
        .destinations-section {
            background-color: var(--light-bg);
            position: relative;
        }

        .destinations-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            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="%23009966" opacity="0.03" d="M28.1,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C29.5,39.7,29.9,37.9,28.1,36.6z M48.3,15.1c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C49.9,17.7,49.5,15.9,48.3,15.1z M75.9,36.6c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C77.3,39.7,77.7,37.9,75.9,36.6z M15.1,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C16.5,51.4,16.9,49.6,15.1,48.3z M84.9,48.3c-0.8-1.3-2.6-1.7-3.9-0.9c-1.3,0.8-1.7,2.6-0.9,3.9c0.8,1.3,2.6,1.7,3.9,0.9C86.3,51.4,86.7,49.6,84.9,48.3z M36.6,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C38.2,78.5,37.8,76.7,36.6,75.9z M63.4,75.9c-1.3-0.8-3.1-0.4-3.9,0.9c-0.8,1.3-0.4,3.1,0.9,3.9c1.3,0.8,3.1,0.4,3.9-0.9C65,78.5,64.6,76.7,63.4,75.9z"/></svg>');
            opacity: 0.5;
            z-index: 0;
        }

        .destination-grid {
            position: relative;
            z-index: 1;
        }

        .destination-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            transition: var(--transition);
            position: relative;
            height: 350px;
            cursor: pointer;
        }

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

        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px;
            transition: var(--transition);
        }

        .destination-card:hover .destination-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
            padding-bottom: 30px;
        }

        .destination-name {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .destination-tagline {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .destination-info {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .destination-card:hover .destination-info {
            max-height: 100px;
        }

        .destination-description {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .destination-btn {
            background-color: var(--blue);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(10px);
        }

        .destination-card:hover .destination-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .destination-btn:hover {
            background-color: #005a8c;
            transform: translateY(-2px);
        }

        .favorite-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #ccc;
            transition: var(--transition);
            cursor: pointer;
            z-index: 2;
        }

        .favorite-icon:hover {
            color: #ff4757;
            transform: scale(1.1);
        }

        .favorite-icon.active {
            color: #ff4757;
        }

        .rating-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--dark-text);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            z-index: 2;
        }

        .rating-badge i {
            color: #FFC107;
            margin-right: 5px;
        }

        /* Pagination Section */
        .pagination-section {
            background-color: white;
            padding: 40px 0;
        }

        .pagination-container {
            display: flex;
            justify-content: center;
        }

        .pagination {
            display: flex;
            list-style: none;
            padding: 0;
            gap: 10px;
        }

        .page-item {
            margin: 0 5px;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: white;
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: none;
        }

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

        .page-item.active .page-link {
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
        }

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

        .load-more-btn {
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }


        .tour-types-section {
            padding: 60px 0;
        }

        .tour-types-title {
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
            font-size: 32px;
        }

        .tour-card {
            background: #fff;
            border-radius: 14px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

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

        .tour-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .tour-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .tour-card p {
            font-size: 14px;
            color: #555;
        }

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

        .fade-in {
            animation: fadeInUp 0.5s ease forwards;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .filter-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-box, .filter-dropdown {
                width: 100%;
                max-width: 100%;
            }
            
            .destination-card {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .floating-icon {
                display: none;
            }
        }