
        /* CSS Variables - Brand Colors */
        :root {
            --brand-dark: #4b5156;
            --brand-blue: #6b90a6;
            --brand-light: #c6c7c5;
            --brand-pale: #dbe2e9;
            
            --gold: #6b90a6 ;
            --gold-light: #c6c7c5;
            --gold-dark: #4b5156;
            --deep-teal: #dbe2e9;
            --midnight: #0a1217;
            --star-white: #fffbeb;
            
            --background: #0a1217;
            --foreground: #fffbeb;
            --card: #1a3540;
            --card-foreground: #fffbeb;
            --primary: #dbe2e9;
            --primary-foreground: #0a1217;
            --secondary: #6b90a6;
            --muted: #243a44;
            /*--muted-foreground: #c6c7c5;*/
            --muted-foreground: #fff;
            --border: #2a4a54;
        }
        
        /* Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: "Noto Sans", sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 , input::placeholder {
            font-family: "Noto Sans", sans-serif;
        }
        
        .font-accent {
            font-family: "Noto Sans", sans-serif;
        }
        

        .main-loading {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            -webkit-transform: translate(-50%,-50%);
            -o-transform: translate(-50%,-50%);
            -moz-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            background-color: #fff;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -o-border-radius: 5px;
            -ms-border-radius: 5px;
            background-image: url('./images/spinner.svg');
            background-size: 100%;
            width: 80px;
            height: 80px;
            box-shadow: 0 0 40px rgba(0,0,0,0.05);
            -webkit-box-shadow: 0 0 40px rgba(0,0,0,0.05);
            -moz-box-shadow: 0 0 40px rgba(0,0,0,0.05);
            -ms-box-shadow: 0 0 40px rgba(0,0,0,0.05);
            -o-box-shadow: 0 0 40px rgba(0,0,0,0.05);
            z-index: 999999;
            background-color: rgba(26, 153, 64,0.4);
        }


        .swal2-styled.swal2-confirm{
                background-color: rgba(26, 53, 64, 0.4) !important;
        }
        .swal2-styled.swal2-confirm:focus {
            box-shadow: none !important;
        }

        .iti {
            width: 100%;
        }
        .iti .iti__tel-input {
          padding-right: 10px;
        }

        .hide {
            display: none;
        }
        #valid-msg {
            color: #FFFFFF;
            background: #00C900;
        }
        #error-msg {
            color: red;
        }
        input.error {
            border: 1px solid #FF7C7C;
        }
        .iti__country-container {
            height: 48px;
        }
        .iti--separate-dial-code .iti__selected-flag,
        .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
            background-color: rgba(0, 0, 0, 0);

            font-size: 0.99609375rem;
        }
        .iti__country {
            color: #000;
        }
        .iti .iti__selected-dial-code {
            color: #6b90a6;
        }
        .iti-msg {
            position: absolute;
            left: 0;
            bottom: -19px;
            background: red;
            color: #fff !important;
            padding: 1px 10px;
            font-size: 12px;
            right: 0;
            border-radius: 4px;
        }
        .iti__selected-flag {
            padding-left: 10px;
        }
        .iti__search-input {
            height: 34px;
            padding: 0 10px;
            outline: 0;
        }

        span.validation-message.uk-display-block.uk-text-danger.uk-position-absolute {
            color: red;
            font-size: 0.8rem;
            font-family: "Noto Sans", sans-serif;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 15px 1rem;
        }
        a.btn.btn-primary.book {
            color: #000;
        }
        /* Gradient Classes */
        .gradient-gold {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
        }
        
        .text-gradient-gold {
            background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .gradient-radial-glow {
            background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
        }
        
        .glass-card {
            background: rgba(26, 53, 64, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 168, 67, 0.2);
        }
        
        /* Animations */
        @keyframes sparkle {
            0%, 100% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 67, 0.3); }
            50% { box-shadow: 0 0 40px rgba(212, 168, 67, 0.6); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .float-slow {
            animation: float 8s ease-in-out infinite;
        }
        
        .pulse-glow {
            animation: pulseGlow 3s ease-in-out infinite;
        }
        
        /* Navigation */
        .navbar {
            position: absolute;
            top: 0px;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgb(255 255 255 / 10%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(42, 74, 84, 0.5);
        }
        
        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo svg {
            width: 32px;
            height: 32px;
            color: var(--primary);
            fill: currentColor;
        }
        
        .logo-text {
            font-family: "Noto Sans", sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--foreground);
        }
        
        .nav-links {
            display: none;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-links a {
            font-size: 18px;
            color: var(--muted-foreground);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .btn {
            /*display: inline-flex;*/
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--brand-light), var(--brand-pale), var(--brand-pale));
            color: var(--primary-foreground);
        }
        
        .btn-primary:hover {
            opacity: 0.9;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--primary-foreground);
        }
        
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            color: var(--foreground);
            cursor: pointer;
        }
        
        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
        }
        
        .mobile-menu {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid rgba(42, 74, 84, 0.5);
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu a {
            display: block;
            padding: 0.75rem 0;
            color: var(--muted-foreground);
            text-decoration: none;
        }
        
        .mobile-menu .btn {
            width: 100%;
            margin-top: 1rem;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(10, 18, 23, 0.4), rgba(10, 18, 23, 0.2), var(--background));
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 5rem 1rem 8rem 1rem;
        }
        
        .hero-subtitle {
            font-family: "Noto Sans", sans-serif;
            font-size: 26px !important;
            color: var(--primary);
            letter-spacing: 1px;
            text-transform: capitalize;
            margin-bottom: 1rem;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.1;
        }
        
        .hero-description {
            font-size: 18px !important;
            color: var(--muted-foreground);
            max-width: 700px;
            margin: 0 auto 0rem;
            padding-top: 25px;
        }
        
        .hero-description .highlight {
            color: var(--primary);
            font-weight: 500;
        }
        
        /* Floating Lanterns */
        .lantern {
            position: absolute;
            opacity: 0.8;
            z-index: 5;
        }
        
        .lantern-left {
            left: 1rem;
            top: 11rem;
            width: 80px;
            animation: float 6s ease-in-out infinite;
        }
        
        .lantern-right {
            right: 1rem;
            top: 11rem;
            width: 70px;
            animation: float 8s ease-in-out infinite;
            animation-delay: 1s;
            opacity: 0.7;
        }
        
        /* Floating Stars */
        .stars-container {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .star {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--star-white);
            border-radius: 50%;
            animation: twinkle 3s ease-in-out infinite;
        }
        
        /* Countdown Timer */
        .countdown-label {
            font-family: "Noto Sans", sans-serif;
            font-size: 18px;
            color: var(--primary);
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
        }
        
        .countdown-item {
            background: rgba(26, 53, 64, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 168, 67, 0.3);
            border-radius: 1rem;
            padding: 1rem;
            min-width: 70px;
            text-align: center;
        }
        
        .countdown-value {
            font-family: "Noto Sans", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .countdown-unit {
            font-size: 0.7rem;
            color: var(--muted-foreground);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.25rem;
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator-inner {
            width: 24px;
            height: 40px;
            border: 2px solid rgba(212, 168, 67, 0.5);
            border-radius: 9999px;
            display: flex;
            justify-content: center;
        }
        
        .scroll-indicator-dot {
            width: 4px;
            height: 12px;
            background: var(--primary);
            border-radius: 9999px;
            margin-top: 0.5rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* Packages Section */
        .packages {
            padding: 2rem 0;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .section-description {
            color: #4B5156;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        /* Package Card */
        .package-card {
            background: rgba(26, 53, 64, 0.6);
            backdrop-filter: blur(20px);
            border: 0px solid #F7F7F7;
            border-radius: 15px 15px 0px 0px;
            padding: 2rem 1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 400px !important;
        }
        .package-card.one {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/plan-4.jpg) !important;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .package-card.popular {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/plan-5.jpg) !important;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .package-card.three {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/plan-3.jpg) !important;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .package-card.four {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/first-bg.jpeg) !important;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .package-card.five {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/plan-6.jpg) !important;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .package-card.six {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/BG-2.jpg) !important;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .package-card:hover {
            /*transform: translateY(-8px);*/
            /*border-color: rgba(212, 168, 67, 0.5);*/
            box-shadow: 0 20px 60px rgba(212, 168, 67, 0.15);
        }
        
        .package-card.popular {
            border-color: rgba(212, 168, 67, 0.5);
        }
        
        .popular-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
            color: var(--primary-foreground);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .savings-badge {
            display: inline-block;
            background: rgba(212, 168, 67, 0.2);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.5rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .package-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 30px;
            height: 30px;
        }
        
        .package-description {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }
        
        .package-price {
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .price-original {
            color: var(--muted-foreground);
            text-decoration: line-through;
            font-size: 1rem;
        }
        
        .price-discount {
            font-family: "Noto Sans", sans-serif;
            font-size: 26px;
            font-weight: bold;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
                
        .package-features {
            list-style: none;
            margin-bottom: 2rem;
            min-height: 200px !important;
        }
        
        .package-features li {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 5px 0;
            color: var(--muted-foreground);
            font-size: 18px !important;
            line-height: 20px !important;
            font-weight: normal;
        }
        
        .package-features li svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
            flex-shrink: 0;
        }
        
        .package-card .btn {
            width: 100%;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 2rem 0;
        }
        
        .cta-card {
            background: rgba(26, 53, 64, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid #5a5a5a;
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .contact-form-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-content {
            position: relative;
            z-index: 10;
        }
        
        .cta-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-description {
            color: var(--muted-foreground);
            max-width: 500px;
            margin: 0 auto 2rem;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }



        /* Footer */
        .footer {
            /* background: linear-gradient(135deg, hsl(200, 20%, 35%), hsl(190, 25%, 40%), hsl(200, 15%, 30%)); */
            color: white;
            position: relative;
            overflow: hidden;
            background-image: url(./images/footer-bg-1-1536x1111-1.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Footer Top Section - Two Column */
        .footer-top-section {
          display: grid;
          gap: 3rem;
          padding: 4rem 0 3rem;
        }

        @media (min-width: 1024px) {
          .footer-top-section {
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 6rem 0 4rem;
          }
        }

        .footer-top-left {
          display: flex;
          flex-direction: column;
        }

        .footer-heading {
            font-family: "Noto Sans", sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            font-style: normal;
            color: white;
            line-height: 60px;
            text-transform: capitalize;
            padding-bottom: 15px;
        }

        @media (min-width: 768px) {
          .footer-heading {
            font-size: 3rem;
          }
        }

        @media (min-width: 1024px) {
          .footer-heading {
            font-size: 3.5rem;
          }
        }

        .footer-subtext {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            max-width: 28rem;
            line-height: 1.6;
        }

        .footer-top-right {
          display: flex;
          flex-direction: column;
          justify-content: center;
          gap: 0;
        }

        .footer-cta-link {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 1.25rem 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.3);
          color: white;
          font-size: 1rem;
          font-weight: 300;
          text-decoration: none;
          transition: color 0.2s, transform 0.2s;
        }

        .footer-cta-link:hover {
          color: rgba(255, 255, 255, 0.8);
        }

        .footer-cta-link:hover svg {
          transform: translate(4px, -4px);
        }

        .footer-cta-link svg {
          transition: transform 0.2s;
        }

        /* Footer Middle - Three Columns */
        .footer-middle {
          display: grid;
          gap: 2.5rem;
          padding: 4rem 0 4rem;
        }

        @media (min-width: 768px) {
          .footer-middle {
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
          }
        }

        @media (min-width: 1024px) {
          .footer-middle {
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
          }
        }

        .footer-column {
          display: flex;
          flex-direction: column;
        }

        .footer-column-title {
          font-size: 1rem;
          font-weight: 500;
          color: white;
          margin-bottom: 1.5rem;
          padding-bottom: 0.5rem;
          border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .footer-nav {
          display: flex;
          flex-direction: column;
          gap: 1rem;
        }

        .footer-nav-link {
          font-size: 1rem;
          font-weight: 300;
          color: white;
          text-decoration: none;
          transition: color 0.2s;
        }

        .footer-nav-link:hover {
          color: rgba(255, 255, 255, 0.8);
        }

        .footer-hours {
          display: flex;
          flex-direction: column;
          gap: 0.75rem;
        }

        .footer-hours p {
          font-size: 18px;
          color: rgba(255, 255, 255, 1);
          font-weight: 300;
          margin: 0;
        }

        /* Newsletter Form */
        .newsletter-form {
          display: flex;
          flex-direction: column;
          gap: 1rem;
        }

        .newsletter-form input[type="text"],
        .newsletter-form input[type="email"] {
          padding: 0.875rem 1rem;
          border: 1px solid rgba(255, 255, 255, 0.2);
          background-color: rgba(255, 255, 255, 0.1);
          color: white;
          font-size: 0.875rem;
          font-weight: 300;
          border-radius: 0;
          outline: none;
          transition: border-color 0.2s;
        }

        .newsletter-form input[type="text"]:focus,
        .newsletter-form input[type="email"]:focus {
          border-color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-form input::placeholder {
          color: rgba(255, 255, 255, 0.5);
        }

        .checkbox-label {
          display: flex;
          align-items: flex-start;
          gap: 0.75rem;
          cursor: pointer;
        }

        .checkbox-label input[type="checkbox"] {
          width: 1rem;
          height: 1rem;
          margin-top: 0.125rem;
          flex-shrink: 0;
          accent-color: hsl(175, 60%, 40%);
        }

        .checkbox-label span {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.7);
          font-weight: 300;
          line-height: 1.4;
        }

        .btn-submit {
            padding: 0.875rem 2rem;
            background-color: #6B90A6;
            border: none;
            color: white;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 0px;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-top: 0.5rem;
            font-family: 'Noto Sans';
        }

        .btn-submit:hover {
          background-color: hsl(175, 60%, 35%);
        }

        /* Footer Bottom */
        .footer-bottom {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 1.5rem;
          padding: 2rem 0;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (min-width: 768px) {
          .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
          }
        }

        .footer-copyright {
          text-align: center;
        }

        @media (min-width: 768px) {
          .footer-copyright {
            text-align: left;
          }
        }

        .footer-copyright p {
          font-size: 14px
          color: rgba(255, 255, 255, 0.6);
          font-weight: 300;
          margin: 0;
          line-height: 1.5;
        }

        .footer-social {
          display: flex;
          gap: 1.5rem;
        }

        .footer-social a {
          display: flex;
          align-items: center;
          justify-content: center;
          color: rgba(255, 255, 255, 0.7);
          transition: color 0.2s;
        }

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

        .scroll-to-top {
          width: 2.5rem;
          height: 2.5rem;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: transparent;
          border: 1px solid rgba(255, 255, 255, 0.3);
          border-radius: 50%;
          color: rgba(255, 255, 255, 0.7);
          cursor: pointer;
          transition: color 0.2s, border-color 0.2s;
        }

        .scroll-to-top:hover {
          color: white;
          border-color: rgba(255, 255, 255, 0.5);
        }



        
        /* Footer */
        /*.footer {
            background: rgba(26, 53, 64, 0.5);
            border-top: 1px solid var(--border);
            padding: 2rem 0rem 1rem 0rem;
            margin-top: 0rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .footer-logo svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
            fill: currentColor;
        }
        
        .footer-logo span {
            font-family: "Noto Sans", sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
        }
        
        .footer-text {
            font-size: 18px;
            color: var(--muted-foreground);
            max-width: 280px;
        }
        
        .footer-title {
            font-family: "Noto Sans", sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            font-size: 18px;
            color: var(--muted-foreground);
        }
        
        .footer-contact li svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }
        
        .footer-hours {
            font-size: 18px;
            color: var(--muted-foreground);
            line-height: 1.8;
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border);
            margin-top: 1rem;
            padding-top: 1rem;
            text-align: center;
        }
        
        .footer-copyright {
            font-size: 18px;
            color: var(--muted-foreground);
        }
        */
        .package-btn-wrapper {
            background: #fff;
            padding: 15px 30px;
            border-radius: 0 0 1.5rem 1.5rem;
            border: 1px solid #F7F7F7;
            border-top: none;
            text-align: center;
        }
        .package-btn-wrapper .btn {
            width: 100%;
            background: linear-gradient(135deg, #6b90a6 , #6b90a6 , #6b90a6 );
            color: #ffffff;
        }
        
      
        @media (min-width: 768px) {
            .logo-text {
                font-size: 1.25rem;
                padding-top: 10px;
            }
            
            .nav-links {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
            }
            
            .hero-title {
                font-size: 4.5rem;
            }
            
            .hero-description {
                font-size: 1.125rem;
            }
            
            .lantern-left {
                left: 2.5rem;
                width: 128px;
                border-radius: 10px;
            }
            
            .lantern-right {
                right: 2.5rem;
                width: 112px;
                border-radius: 10px;
            }
            
            .countdown-item {
                padding: 1.5rem 2rem;
                min-width: 125px;
            }
            
            .countdown-value {
                font-size: 3rem;
            }
            
            .countdown-unit {
                font-size: 0.75rem;
            }
            
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .cta-card {
                padding: 4rem;
            }
            
            .cta-title {
                font-size: 2.25rem;
            }
            
            .cta-buttons {
                flex-direction: row;
            }
            
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .packages-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        h2.pack {
            color: #4B5156 !important;
        }
        .new_style {
            background: #F7F7F7 !important;
        }
        section#contact {
            background: #F7F7F7  !important;
        }
        h2.w_pack {
            color: #fff !important;
        }
        a.whatsapp {
            padding: 0.75rem 4.5rem !important;
            display: inline-flex !important;
        }
        a.footer_a {
            text-decoration: none !important;
        }

        .animate-fade-in-up.div_1 {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)) !important;
            width: 60% !important;
            margin: 0 auto;
        }
        .animate-fade-in-up.div_2 {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)) !important;
            width: 60% !important;
            margin: -16px auto;
            padding-bottom: 10px;
            border-radius: 0px;
        }
        p.countdown-label {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)) !important;
            width: 60% !important;
            margin: 16px auto;
            padding-bottom: 25px;
        }
        div#countdown {
            margin-top: 50px !important;
        }
        .hero-title {
            font-size: 3.5rem !important;
            padding-top: 25px !important;
        }



        /* Contact Form Section */
        .contact-form-section {
            padding: 5rem 0;
            position: relative;
        }

        .contact-form-card {
            background: rgba(26, 53, 64, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 168, 67, 0.2);
            border-radius: 1.5rem;
            padding: 2.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-form-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .contact-form-subtitle {
            color: var(--muted-foreground);
            font-size: 1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            position: relative;
        }

        .form-group label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--foreground);
        }
        button.btn.btn-primary.btn-submit {
            font-family: "Noto Sans", sans-serif;
            color: #000;
            transition: 
                background-color 0.3s ease,
                color 0.3s ease,
                transform 0.25s ease,
                box-shadow 0.25s ease;
        }

        button.btn.btn-primary.btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: #000;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            background: rgba(10, 18, 23, 0.6);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            color: var(--foreground);
            font-family: inherit;
            font-size: 0.875rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        section#contact-form {
            background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.1) 0%, transparent 70%) !important;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--muted-foreground);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c6c7c5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            padding-right: 2.5rem;
        }

        .form-group select option {
            background: var(--background);
            color: var(--foreground);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .btn-submit {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        @media (min-width: 768px) {
            .contact-form-card {
                padding: 3rem;
            }
            
            .contact-form-title {
                font-size: 2.5rem;
            }
            
            .form-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .btn-submit {
                width: auto;
                align-self: auto;
                min-width: 250px;
            }
        }



        @media only screen and (max-width: 767px) {
            
            p.countdown-label , .animate-fade-in-up.div_2 , .animate-fade-in-up.div_1 {
                width: 100% !important;
            }
            .section-title {
                font-size: 26px !important;
            }
            a.btn.btn-primary.price {
                display: block;
                text-align: center;
                width: 70%;
                margin: 0 auto;
                padding: 8px;
            }
            a.btn.btn-primary.book_now {
                width: 80% !important;
            }
            .navbar-inner {
                justify-content: center !important;
            }
            .contact-form-card {
                padding: 2.5rem 1rem !important;
            }
            .contact-form-section {
                padding: 2rem 0 !important;
            }
            .logo-text {
                text-align: center !important;
            }
            .package-features li {
                font-size: 14px !important;
            }
        }
        img.whatsapp_icon {
            position: fixed !important;
            bottom: 20px !important;
            right: 20px !important;
            top: auto !important;
            width: 60px;
            z-index: 99999;
            color: #FFF;
            text-align: center;
            font-size: 30px;
        }
        a.btn.btn-primary.book_now {
            width: 80% !important;
            display: block;
            margin: 0 auto;
            padding: 8px;
        }
        .logo img {
            width: 80% !important;
        }