        /* ========== header css start ========== */

        .dropdown-group {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            min-width: 220px;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            z-index: 100;
            border: 1px solid rgba(94, 166, 200, 0.15);
        }

        .dropdown-group:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Right-aligned dropdowns (language & currency) */
        .dropdown-menu-right {
            left: auto;
            right: 0;
        }

        .nav-link.active {
            color: #5EA6C8;
        }

        .nav-link.active::after {
            width: 100%;
            background: #5EA6C8;
        }

        /* Mobile active link styling */
        .mobile-nav-link.active {
            color: #5EA6C8 !important;
            background: rgba(94, 166, 200, 0.08);
            border-left: 3px solid #5EA6C8;
            padding-left: 0.75rem;
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #5EA6C8;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #e2ecf2;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: #5EA6C8;
            border-radius: 10px;
        }

        .mobile-menu {
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        /* Logo image styling */
        .navbar-logo {
            height: 45px;
            width: auto;
            display: block;
        }

        .mobile-dropdown-btn {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            background-color: #f8fafc;
            border-radius: 0.75rem;
            margin-top: 0.25rem;
        }

        .mobile-submenu.open {
            max-height: 400px;
        }

        .rotate-icon {
            transition: transform 0.3s ease;
        }

        .rotate-icon.open {
            transform: rotate(180deg);
        }

        .mobile-submenu a.active {
            color: #5EA6C8 !important;
            background: rgba(94, 166, 200, 0.1);
            font-weight: 600;
        }

        .dropdown-menu a.active {
            background: rgba(94, 166, 200, 0.1);
            color: #5EA6C8;
            font-weight: 600;
        }

        /* ========== header css end ========== */


        /* ========== hero section start */

        .flatpickr-calendar {
            border-radius: 1.4rem;
            box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.28);
            font-family: 'Inter', sans-serif;
            border: none;
        }

        .flatpickr-day.selected {
            background: #5EA6C8;
            border-color: #5EA6C8;
            font-weight: 600;
        }

        .flatpickr-day.today {
            border-color: #2c7da0;
            background: #e6f4ff;
        }

        .flatpickr-input {
            cursor: pointer !important;
        }

        @media (max-width: 768px) {
            .flatpickr-calendar {
                width: 90% !important;
                left: 5% !important;
                right: 5% !important;
                transform: translateX(0) !important;
            }
        }

        .writing-mode-vertical {
            writing-mode: vertical-lr;
        }

        html {
            scroll-behavior: smooth;
        }

        select {
            cursor: pointer;
            appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%234c98bb" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>');
            background-repeat: no-repeat;
            background-position: right 0.3rem center;
            background-size: 12px;
        }

        select:focus {
            outline: none;
        }

        .premium-search-btn {
            background: linear-gradient(135deg, #236f8c 0%, #0e4d66 50%, #1a5d7a 100%);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: none;
            box-shadow: 0 12px 28px -10px rgba(13, 67, 87, 0.5), 0 0 0 1px rgba(94, 166, 200, 0.3) inset;
        }

        .premium-search-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transition: left 0.6s ease;
        }

        .premium-search-btn:hover::before {
            left: 100%;
        }

        .premium-search-btn:hover {
            background: linear-gradient(135deg, #2a7c9e 0%, #1a5f7a 50%, #257398 100%);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 35px -12px #0e4d66, 0 0 0 1px rgba(94, 166, 200, 0.6) inset;
        }

        .premium-search-btn:active {
            transform: translateY(1px) scale(0.98);
            box-shadow: 0 8px 18px -8px #0e4d66;
        }

        .premium-search-btn i {
            transition: transform 0.3s ease;
        }

        .premium-search-btn:hover i {
            transform: translateX(5px);
        }

        @keyframes rippleAnim {
            to {
                transform: scale(15);
                opacity: 0;
            }
        }

        .ripple-effect {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            transform: scale(0);
            animation: rippleAnim 0.65s linear;
            pointer-events: none;
            z-index: 10;
        }

        .form-field-enhanced {
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .form-field-enhanced:hover {
            transform: translateY(-2px);
            border-color: #5EA6C8 !important;
            box-shadow: 0 8px 20px -8px rgba(94, 166, 200, 0.3);
        }


        /* ========== hero section end */



        /* ========== DESTINATION SECTION CSS START ========== */
        .dest-section .dest-card {
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            overflow: hidden;
            background-color: #f5f9fc;
            position: relative;
            border-radius: 1rem;
            aspect-ratio: 3.6 / 3 !important;
        }

        .dest-section .grid> :nth-child(2),
        .dest-section .grid> :nth-child(4) {
            aspect-ratio: 5.5 / 2.2 !important;
        }

        .dest-section .dest-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.7s ease-out, filter 0.4s ease;
        }

        @media (max-width: 1024px) {

            .dest-section .grid> :nth-child(2),
            .dest-section .grid> :nth-child(4) {
                aspect-ratio: 5 / 2.4 !important;
            }
        }

        @media (max-width: 768px) {
            .dest-section .dest-card {
                aspect-ratio: 4 / 3.2 !important;
            }

            .dest-section .grid> :nth-child(2),
            .dest-section .grid> :nth-child(4) {
                aspect-ratio: 4.5 / 2.5 !important;
            }
        }

        @media (max-width: 640px) {
            .dest-section .dest-card {
                aspect-ratio: 4 / 3.5 !important;
            }

            .dest-section .grid> :nth-child(2),
            .dest-section .grid> :nth-child(4) {
                aspect-ratio: 4 / 2.8 !important;
            }
        }

        .dest-section .dest-card:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 24px 36px -12px rgba(94, 166, 200, 0.4);
        }

        .dest-section .dest-card:hover img {
            transform: scale(1.05);
            filter: brightness(1.02) contrast(1.03);
        }

        .dest-section .dest-card h3 {
            transition: all 0.3s ease;
            font-size: clamp(1rem, 4vw, 1.5rem);
        }

        .dest-section .dest-card:hover h3 {
            letter-spacing: 0.2px;
            padding-bottom: 1rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 70%, transparent 100%);
        }

        .dest-section .dest-card h3::before {
            content: "\f3c5";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 8px;
            font-size: 0.75rem;
            display: inline-block;
            vertical-align: middle;
            background: rgba(255, 255, 255, 0.2);
            padding: 3px 7px;
            border-radius: 40px;
            backdrop-filter: blur(2px);
            transition: all 0.2s;
        }

        .dest-section .dest-card:hover h3::before {
            background: #5EA6C8;
            color: white;
            transform: rotate(3deg);
        }

        .dest-section .dest-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(94, 166, 200, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
            z-index: 1;
            border-radius: inherit;
        }

        .dest-section .dest-card:hover::after {
            opacity: 0.5;
        }

        .dest-section .dest-card {
            animation: destFadeUp 0.65s ease forwards;
            opacity: 0;
        }

        .dest-section .dest-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .dest-section .dest-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .dest-section .dest-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .dest-section .dest-card:nth-child(4) {
            animation-delay: 0.2s;
        }

        .dest-section .dest-card:nth-child(5) {
            animation-delay: 0.25s;
        }

        .dest-section .dest-card:nth-child(6) {
            animation-delay: 0.3s;
        }

        @keyframes destFadeUp {
            0% {
                opacity: 0;
                transform: translateY(25px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dest-section .grid {
            display: grid;
            gap: 1.5rem;
        }

        /* ========== DESTINATION SECTION CSS END ========== */

        /* ========== REVIEWS SECTION CSS START ========== */
        .reviews-wrapper {
            scroll-behavior: smooth;
            scrollbar-width: none;
            cursor: grab;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            touch-action: pan-x pinch-zoom;
        }

        .reviews-wrapper::-webkit-scrollbar {
            display: none;
        }

        .reviews-wrapper:active {
            cursor: grabbing;
        }

        .reviews-slide {
            scroll-snap-align: start;
            flex-shrink: 0;
        }

        .review-card {
            transition: all 0.35s ease;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #5EA6C8, #7fbcd9, #5EA6C8);
            border-radius: 1.75rem 1.75rem 0 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 35px rgba(94, 166, 200, 0.2);
        }

        .review-card .quote-icon {
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .avatar {
            transition: all 0.3s ease;
        }

        .read-more {
            transition: all 0.3s ease;
        }

        .read-more i {
            transition: transform 0.3s;
        }

        .read-more:hover {
            gap: 10px;
        }

        .read-more:hover i {
            transform: translateX(4px);
        }

        .slider-arrow {
            transition: all 0.3s ease;
        }

        .slider-arrow:active {
            transform: scale(0.94);
        }

        .indicator {
            transition: all 0.3s ease;
        }

        @keyframes fadeUpCards {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .review-card {
            animation: fadeUpCards 0.5s ease forwards;
            opacity: 0;
        }

        .reviews-slide .review-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .reviews-slide .review-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .reviews-slide .review-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .reviews-slide .review-card:nth-child(4) {
            animation-delay: 0.2s;
        }

        @media (max-width: 768px) {
            .reviews-slide {
                display: flex !important;
                flex-direction: column !important;
                gap: 1.25rem;
                width: 100% !important;
                flex-shrink: 0;
            }

            .reviews-slide.grid {
                display: flex !important;
                grid-template-columns: unset !important;
            }

            .review-card {
                width: 100%;
            }

            .slider-arrow {
                width: 2.75rem;
                height: 2.75rem;
            }
        }

        @media (max-width: 480px) {
            .reviews-wrapper .flex {
                gap: 1rem !important;
            }

            .review-card {
                padding: 1.25rem;
            }

            .slider-arrow {
                width: 2.4rem;
                height: 2.4rem;
                font-size: 0.9rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .reviews-slide {
                gap: 1.5rem;
            }

            .review-card {
                padding: 1.25rem;
            }
        }

        .reviews-slide {
            width: 100%;
        }

        /* ========== REVIEWS SECTION CSS END ========== */

        /* ========== CTA SECTION CSS START ========== */

        .underline-brand {
            position: relative;
            display: inline-block;
        }

        .underline-brand::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #5EA6C8, #7fbcd9, #5EA6C8);
            border-radius: 4px;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== CTA SECTION CSS END ========== */

        /* ========== BLOG SECTION CSS START ========== */

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 4px;
            background: linear-gradient(90deg, #5EA6C8, #7fbcd9, #5EA6C8);
            border-radius: 4px;
        }

        .blog-card {
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .blog-card:hover {
            transform: translateY(-8px);
        }

        .blog-card img {
            transition: transform 0.6s ease;
        }

        .blog-card:hover img {
            transform: scale(1.05);
        }

        .blog-content h3 {
            transition: color 0.3s ease;
        }

        .btn {
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        .btn:active {
            transform: translateY(0);
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(25px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-card {
            animation: fadeUp 0.6s ease forwards;
            opacity: 0;
        }

        .blog-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .blog-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .blog-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        /* ========== BLOG SECTION CSS END ========== */

        /* ========== RENTAL SECTION CSS START ========== */

        .title-underline::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, #5EA6C8, #7fbcd9, #5EA6C8);
            border-radius: 4px;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-up {
            animation: fadeUp 0.5s ease forwards;
        }

        /* ========== RENATAL SECTION CSS END ========== */
        /* ========== FAQ SECTION CSS START ========== */

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #5EA6C8, #7fbcd9, #5EA6C8);
            border-radius: 4px;
        }

        .faq-item {
            transition: all 0.35s ease;
        }

        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #5EA6C8, #7fbcd9, #5EA6C8);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 1.5rem 1.5rem 0 0;
        }

        .faq-item:hover::before {
            opacity: 1;
        }

        .faq-item:hover {
            transform: translateY(-4px);
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-item {
            animation: fadeUp 0.5s ease forwards;
            opacity: 0;
        }

        /* ========== FAQ SECTION CSS END ========== */

        /* ========== FOOTER SECTION CSS START ========== */


        .footer-link {
            position: relative;
            display: inline-block;
            transition: all 0.25s ease;
        }

        .footer-link:hover {
            color: #5EA6C8;
            transform: translateX(3px);
        }

        .social-icon {
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .social-icon:hover {
            transform: translateY(-4px);
        }

        .footer-col-title {
            position: relative;
            display: inline-block;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .footer-col-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #5EA6C8;
            border-radius: 2px;
        }

        .app-btn {
            transition: all 0.3s ease;
        }

        .app-btn:hover {
            transform: translateY(-3px);
        }

        .payment-icons i {
            transition: all 0.2s ease;
        }

        .payment-icons i:hover {
            transform: scale(1.1);
            color: #5EA6C8;
        }

        /* ========== FOOTER SECTION CSS END ========== */




        .section-spacing-pt-pb {
            padding: 80px 0px;
        }
    