 :root {
   --transition-speed: 0.4s;
 }

 body.light-mode {
   --primary-color: #c75b12;
   --secondary-color: #8b4513;
   --accent-color: #ff9933;
   --light-bg: #fff8f0;
   --dark-text: #3e2723;
   --cream: #fff3e0;
   --card-bg: rgba(255, 255, 255, 0.95);
   --border-color: rgba(199, 91, 18, 0.15);
   --hover-glow: rgba(255, 153, 51, 0.25);
   --navbar-bg: linear-gradient(90deg, #8b4513, #c75b12);
   --footer-bg: linear-gradient(135deg, #5d2d0c, #8b4513);
   --body-bg: linear-gradient(135deg, #fff8f0, #fff3e0, #fffaf5);
   --input-bg: #ffffff;
   --input-text: #3e2723;
   --hero-overlay: rgba(45, 20, 10, 0.65);
 }

 body.dark-mode {
   --primary-color: #00bfff;
   --secondary-color: #0a192f;
   --accent-color: #1e90ff;
   --light-bg: #050816;
   --dark-text: #e6f1ff;
   --cream: #0f172a;
   --card-bg: #111827;
   --border-color: #1f2937;
   --hover-glow: rgba(0, 191, 255, 0.35);
   --navbar-bg: rgba(5, 8, 22, 0.95);
   --footer-bg: linear-gradient(135deg, #020617, #0f172a);
   --body-bg: linear-gradient(135deg, #020617, #0f172a, #111827);
   --input-bg: #0b1220;
   --input-text: #e6f1ff;
   --hero-overlay: rgba(2, 6, 23, 0.82);
 }

 body {
   font-family: 'Poppins', sans-serif;
   background: var(--body-bg);
   color: var(--dark-text);
   overflow-x: hidden;
 }


 .section-title {
   font-size: 42px;
   font-weight: 700;
   margin-bottom: 60px;
   text-align: center;
   color: var(--dark-text);
   position: relative;
 }

 .section-title::after {
   content: '';
   width: 100px;
   height: 4px;
   background: linear-gradient(to right, var(--primary-color), var(--accent-color));
   position: absolute;
   bottom: -15px;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 10px;
 }

 .feature-card,
 .card,
 .trip-form,
 .result-box {
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 20px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

 .trip-form {
   padding: 45px;
 }

 .form-control {
   height: 52px;
   border-radius: 12px;
   border: 1px solid var(--border-color);
   background: var(--input-bg);
   color: var(--input-text);
   padding-left: 15px;
   box-shadow: none !important;
 }

 .form-control:focus {
   border-color: var(--primary-color);
   background: var(--input-bg);
   color: var(--input-text);
   box-shadow: 0 0 15px var(--hover-glow) !important;
 }

 .btn-primary,
 .btn-danger {
   background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
   border: none;
   border-radius: 12px;
   color: white;
 }

 .features-bg-shape {
   position: absolute;
   top: -100px;
   right: -100px;
   width: 350px;
   height: 350px;
   background: radial-gradient(circle, var(--primary-color), transparent 70%);
   opacity: 0.08;
   border-radius: 50%;
   z-index: 0;
 }

 .feature-box {
   position: relative;
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 24px;
   padding: 35px 30px;
   overflow: hidden;
   transition: all 0.4s ease;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
 }

 .feature-box::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: linear-gradient(to right, var(--primary-color), var(--accent-color));
 }

 .feature-box:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px var(--hover-glow);
 }

 .feature-icon {
   width: 75px;
   height: 75px;
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
   margin-bottom: 25px;
   box-shadow: 0 10px 25px var(--hover-glow);
 }

 .feature-icon i {
   font-size: 30px;
   color: #fff;
 }

 .feature-content h4 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 15px;
   color: var(--dark-text);
 }

 .feature-content p {
   line-height: 1.8;
   opacity: 0.85;
   margin-bottom: 25px;
 }

 .feature-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .feature-tags span {
   padding: 8px 16px;
   border-radius: 30px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid var(--border-color);
   font-size: 13px;
   font-weight: 600;
   color: var(--primary-color);
 }

 .features-bg-shape {
   position: absolute;
   top: -100px;
   right: -100px;
   width: 350px;
   height: 350px;
   background: radial-gradient(circle, var(--primary-color), transparent 70%);
   opacity: 0.08;
   border-radius: 50%;
   z-index: 0;
 }

 .feature-box {
   position: relative;
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 24px;
   padding: 35px 30px;
   overflow: hidden;
   transition: all 0.4s ease;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
 }

 .feature-box::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: linear-gradient(to right, var(--primary-color), var(--accent-color));
 }

 .feature-box:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px var(--hover-glow);
 }

 .feature-icon {
   width: 75px;
   height: 75px;
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
   margin-bottom: 25px;
   box-shadow: 0 10px 25px var(--hover-glow);
 }

 .feature-icon i {
   font-size: 30px;
   color: #fff;
 }

 .feature-content h4 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 15px;
   color: var(--dark-text);
 }

 .feature-content p {
   line-height: 1.8;
   opacity: 0.85;
   margin-bottom: 25px;
 }

 .feature-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .feature-tags span {
   padding: 8px 16px;
   border-radius: 30px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid var(--border-color);
   font-size: 13px;
   font-weight: 600;
   color: var(--primary-color);
 }

 .features-bg-shape {
   position: absolute;
   top: -100px;
   right: -100px;
   width: 350px;
   height: 350px;
   background: radial-gradient(circle, var(--primary-color), transparent 70%);
   opacity: 0.08;
   border-radius: 50%;
   z-index: 0;
 }

 .feature-box {
   position: relative;
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 24px;
   padding: 35px 30px;
   overflow: hidden;
   transition: all 0.4s ease;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
 }

 .feature-box::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: linear-gradient(to right, var(--primary-color), var(--accent-color));
 }

 .feature-box:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px var(--hover-glow);
 }

 .feature-icon {
   width: 75px;
   height: 75px;
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
   margin-bottom: 25px;
   box-shadow: 0 10px 25px var(--hover-glow);
 }

 .feature-icon i {
   font-size: 30px;
   color: #fff;
 }

 .feature-content h4 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 15px;
   color: var(--dark-text);
 }

 .feature-content p {
   line-height: 1.8;
   opacity: 0.85;
   margin-bottom: 25px;
 }

 .feature-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .feature-tags span {
   padding: 8px 16px;
   border-radius: 30px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid var(--border-color);
   font-size: 13px;
   font-weight: 600;
   color: var(--primary-color);
 }






 /* =========================================================PREMIUM BANNER CAROUSEL CSS========================================================= */

 .banner-carousel {
   position: relative;
 }

 /* =========================================IMAGE========================================= */

 .banner-image {
   height: 90vh;
   object-fit: cover;
 }

 /* =========================================OVERLAY========================================= */

 .carousel-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background:
     linear-gradient(to right,
       rgba(15, 23, 42, 0.75),
       rgba(15, 23, 42, 0.45));
 }

 /* =========================================CAPTION========================================= */

 .carousel-caption {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   bottom: auto;
   text-align: left;
   max-width: 700px;
   left: 8%;
   right: auto;
   z-index: 10;
 }

 .carousel-caption h1 {
   font-size: 40px;
   font-weight: 800;
   line-height: 1.2;
   margin-bottom: 25px;
   color: #fff;
 }

 .carousel-caption p {
   font-size: 22px;
   line-height: 1.8;
   margin-bottom: 35px;
   color: rgba(255, 255, 255, 0.9);
 }

 /* =========================================BUTTON========================================= */

 .btn-banner {
   background: linear-gradient(135deg, #6366f1, #8b5cf6);
   color: #fff;
   border: none;
   padding: 18px 40px;
   border-radius: 60px;
   font-size: 18px;
   font-weight: 600;
   transition: 0.4s;
   box-shadow:
     0 15px 35px rgba(99, 102, 241, 0.35);
 }

 .btn-banner:hover {
   color: #fff;
   transform: translateY(-4px);
   box-shadow:
     0 20px 40px rgba(99, 102, 241, 0.45);
 }

 /* =========================================INDICATORS========================================= */

 .carousel-indicators li {
   width: 34px;
   height: 14px;
   border-radius: 50%;
   background: #fff;
   opacity: 0.5;
 }

 .carousel-indicators .active {
   opacity: 1;
   background: #6366f1;
 }

 /* =========================================CONTROLS========================================= */

 .carousel-control-prev,
 .carousel-control-next {
   width: 6%;
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
   width: 55px;
   height: 55px;
   border-radius: 50%;
   background-color: rgba(255, 255, 255, 0.15);
   backdrop-filter: blur(10px);
   background-size: 50%;
 }

 /* =========================================MOBILE========================================= */

 @media(max-width:992px) {

   .carousel-caption h1 {
     font-size: 48px;
   }

   .carousel-caption p {
     font-size: 18px;
   }

 }

 @media(max-width:768px) {

   .banner-image {
     height: 85vh;
   }

   .carousel-caption {
     left: 6%;
     right: 6%;
     text-align: center;
   }

   .carousel-caption h1 {
     font-size: 34px;
   }

   .carousel-caption p {
     font-size: 16px;
     line-height: 1.6;
   }

   .btn-banner {
     padding: 14px 30px;
     font-size: 16px;
   }

 }

 @media(max-width:576px) {

   .banner-image {
     height: 75vh;
   }

   .carousel-caption h1 {
     font-size: 28px;
   }

   .carousel-caption p {
     font-size: 14px;
   }

 }



 /* =========================================================PREMIUM TRANSPARENT NAVBAR========================================================= */

 .custom-navbar {
   background: rgba(15, 23, 42, 0.35);
   backdrop-filter: blur(14px);
   -webkit-backdrop-filter: blur(14px);
   padding: 10px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
   transition: 0.4s ease;
   z-index: 999;
 }

 /* =========================================LOGO========================================= */

 .navbar-logo {
   width: 200px;
   height: 52px;
   object-fit: cover;
   border-radius: 14px;
   margin-right: 12px;
   padding: 4px;
 }

 /* =========================================NAV LINKS========================================= */

 .custom-navbar .nav-link {
   color: rgba(255, 255, 255, 0.9) !important;
   font-size: 16px;
   font-weight: 500;
   margin-left: 18px;
   position: relative;
   transition: 0.3s ease;
 }

 .custom-navbar .nav-link:hover {
   color: #ffffff !important;
 }

 /* Hover Line */
 .custom-navbar .nav-link::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -6px;
   width: 0%;
   height: 2px;
   background: #6366f1;
   transition: 0.3s ease;
 }

 .custom-navbar .nav-link:hover::after {
   width: 100%;
 }

 /* =========================================THEME BUTTON========================================= */

 .theme-btn {
   border: none;
   background: linear-gradient(135deg, #6366f1, #8b5cf6);
   color: #fff;
   padding: 10px 20px;
   border-radius: 40px;
   font-size: 14px;
   font-weight: 600;
   transition: 0.3s ease;
   box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
 }

 .theme-btn i {
   margin-right: 6px;
 }

 .theme-btn:hover {
   transform: translateY(-2px);

   box-shadow:
     0 15px 30px rgba(99, 102, 241, 0.45);
 }

 /* =========================================TOGGLER========================================= */

 .navbar-toggler {
   border: none;
   outline: none !important;
 }

 /* =========================================MOBILE MENU========================================= */

 @media(max-width:991px) {

   .custom-navbar {
     background: #0f172a;
     padding: 14px 0;
   }

   .navbar-collapse {
     margin-top: 20px;
     padding: 20px;
     border-radius: 20px;

     background:
       rgba(15, 23, 42, 0.95);
   }

   .custom-navbar .nav-link {
     margin-left: 0;
     margin-bottom: 12px;
   }


   .navbar-logo {
     width: 45px;
     height: 45px;
   }

 }


 /* PACKAGES SECTION */

 #packages {
   background: var(--body-bg);
   transition: 0.4s;
 }

 #packages .card {
   background: var(--card-bg);
   border-radius: 22px;
   overflow: hidden;
   border: 1px solid var(--border-color);
   transition: 0.4s;
   position: relative;
 }

 #packages .card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 35px var(--hover-glow);
 }

 /* CARD BODY */

 #packages .card-body {
   padding: 40px 25px;
 }

 /* ICON */

 #packages .card i {
   width: 90px;
   height: 90px;
   line-height: 90px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   color: var(--primary-color) !important;
   font-size: 34px;
   margin-bottom: 25px;
   transition: 0.4s;
 }

 #packages .card:hover i {
   transform: rotateY(180deg);
   background: var(--primary-color);
   color: #fff !important;
 }

 /* TITLE */

 #packages .card h4 {
   color: var(--dark-text);
   font-weight: 700;
   margin-bottom: 18px;
   font-size: 28px;
 }

 /* TEXT */

 #packages .card p {
   color: var(--input-text);
   line-height: 1.9;
   font-size: 16px;
   margin-bottom: 25px;
 }

 /* PRICE */

 #packages .card h5 {
   color: var(--accent-color) !important;
   font-size: 30px;
   font-weight: bold;
   margin-bottom: 20px;
 }

 /* BUTTON */

 .package-btn {
   display: inline-block;
   padding: 12px 30px;
   border-radius: 50px;
   text-decoration: none;
   background: linear-gradient(to right, var(--primary-color), var(--accent-color));
   color: #fff;
   font-weight: 600;
   transition: 0.4s;
 }

 .package-btn:hover {
   transform: scale(1.05);
   color: #fff;
   text-decoration: none;
 }

 /* MOBILE */

 @media(max-width:768px) {

   #packages .card h4 {
     font-size: 24px;
   }

   #packages .card h5 {
     font-size: 26px;
   }

 }



 /* ============================= */
 /* WHY CHOOSE SECTION */
 /* ============================= */

 .why-choose-section {
   background: var(--body-bg);
   transition: 0.4s;
 }

 /* SECTION TITLE */

 .section-title {
   color: var(--dark-text);
   font-size: 42px;
   font-weight: 700;
   margin-bottom: 20px;
 }

 /* FEATURE BOX */

 .why-box {
   background: var(--card-bg);
   border-radius: 24px;
   padding: 40px 25px;
   height: 100%;
   transition: 0.4s;
   border: 1px solid var(--border-color);
   position: relative;
   overflow: hidden;
 }

 /* HOVER EFFECT */

 .why-box:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 35px var(--hover-glow);
 }

 /* ICON */

 .why-box i {
   width: 90px;
   height: 90px;
   line-height: 90px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   color: var(--primary-color);
   font-size: 34px;
   margin-bottom: 25px;
   transition: 0.4s;
 }

 /* ICON HOVER */

 .why-box:hover i {
   transform: rotateY(180deg);
   background: var(--primary-color);
   color: #fff;
 }

 /* TITLE */

 .why-box h5 {
   color: var(--dark-text);
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 18px;
 }

 /* TEXT */

 .why-box p {
   color: var(--input-text);
   line-height: 1.9;
   font-size: 16px;
   margin-bottom: 0;
 }

 /* MOBILE */

 @media(max-width:768px) {

   .section-title {
     font-size: 32px;
   }

   .why-box {
     padding: 30px 20px;
   }

   .why-box h5 {
     font-size: 22px;
   }

 }




 /* =========================DESTINATION CARD NEW DESIGN========================= */
 .destination-card {
   background: var(--card-bg);
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid var(--border-color);
   transition: 0.4s;
   position: relative;
 }

 .destination-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 10px 30px var(--hover-glow);
 }

 .destination-card img {
   width: 100%;
   height: 240px;
   object-fit: cover;
 }

 /* TOP INFO */

 .card-top {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 14px 18px;
   background: var(--cream);
 }

 .weather {
   color: var(--primary-color);
   font-size: 14px;
   font-weight: 600;
 }

 .crowd {
   background: rgba(255, 0, 80, 0.15);
   color: #ff5c7c;
   padding: 5px 14px;
   border-radius: 30px;
   font-size: 13px;
   font-weight: 600;
 }

 /* CARD BODY */

 .destination-card .card-body {
   padding: 24px;
 }

 .location {
   color: var(--accent-color);
   font-weight: 600;
   margin-bottom: 15px;
 }

 .location i {
   margin-right: 5px;
 }

 .destination-card h3 {
   color: var(--dark-text);
   font-size: 34px;
   font-weight: bold;
   margin-bottom: 15px;
 }

 .destination-card p {
   color: var(--input-text);
   line-height: 1.8;
 }

 /* INFO BOX */

 .trip-info {
   background: var(--cream);
   border-radius: 18px;
   padding: 18px;
   margin-top: 25px;
   border: 1px solid var(--border-color);
 }

 .trip-info ul {
   padding: 0;
   margin: 0;
   list-style: none;
 }

 .trip-info ul li {
   display: flex;
   margin-bottom: 12px;
   color: var(--dark-text);
   font-size: 14px;
 }

 .trip-info ul li:last-child {
   margin-bottom: 0;
 }

 .trip-info ul li i {
   width: 25px;
   color: var(--accent-color);
 }

 .info-label {
   width: 70px;
   color: #8ea7cb;
 }

 .info-value {
   flex: 1;
   font-weight: 600;
 }

 /* BUTTON */

 .trip-btn {
   margin-top: 25px;
   width: 100%;
   border: none;
   border-radius: 14px;
   padding: 14px;
   font-weight: bold;
   font-size: 16px;
   background: linear-gradient(to right, var(--primary-color), var(--accent-color));
   color: white;
   transition: 0.3s;
 }

 .trip-btn:hover {
   opacity: 0.9;
   color: white;
 }





 /* FOOTER */

 footer {
   background: var(--footer-bg);
   color: #ffffff;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 70px;
   transition: 0.4s;
 }

 /* HEADING */

 footer h3,
 footer h5 {
   color: #ff9f43 !important;
   font-weight: 700;
 }

 /* PARAGRAPH */

 footer p {
   color: rgba(255, 255, 255, 0.85);
   line-height: 2;
   font-size: 16px;
 }

 /* LINKS */

 .footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-links li {
   margin-bottom: 14px;
 }

 .footer-links li a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   transition: 0.3s;
   font-size: 16px;
 }

 .footer-links li a:hover {
   color: #ffb347;
   padding-left: 6px;
 }

 /* SOCIAL ICONS */

 footer .fab {
   width: 45px;
   height: 45px;
   line-height: 45px;
   text-align: center;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.12);
   color: #fff;
   transition: 0.3s;
   margin-right: 10px;
 }

 footer .fab:hover {
   background: #ff9f43;
   transform: translateY(-5px);
 }

 /* CONTACT ICONS */

 footer .fas {
   color: #ff9f43;
   margin-right: 10px;
 }

 /* HR */

 footer hr {
   background: rgba(255, 255, 255, 0.15);
   margin-top: 20px;
   margin-bottom: 20px;
 }

 /* BOTTOM LINKS */

 footer .bottom-links a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   margin-left: 20px;
   transition: 0.3s;
 }

 footer .bottom-links a:hover {
   color: #ffb347;
 }

 /* MOBILE */

 @media(max-width:768px) {

   footer {
     text-align: center;
   }

   .bottom-links a {
     margin: 0 10px;
     display: inline-block;
     margin-top: 10px;
   }

 }

 /* CONTACT CARD */

 .trip-form {
   background: var(--card-bg);
   border-radius: 24px;
   padding: 40px;
   border: 1px solid var(--border-color);
   transition: 0.4s;
   height: 100%;
 }

 .trip-form:hover {
   box-shadow: 0 15px 35px var(--hover-glow);
 }

 /* TITLE */

 .trip-form h3 {
   color: #ff8c00 !important;
   font-weight: 700;
   margin-bottom: 25px;
 }

 /* TEXT */

 .trip-form p {
   color: var(--input-text);
   line-height: 1.9;
 }

 /* LABEL */

 .trip-form label {
   color: var(--dark-text);
   font-weight: 600;
   margin-bottom: 8px;
 }

 /* INPUT */

 .trip-form .form-control {
   background: var(--input-bg);
   border: 1px solid var(--border-color);
   color: var(--input-text);
   border-radius: 14px;
   height: 55px;
   padding: 12px 18px;
   transition: 0.3s;
 }

 .trip-form textarea.form-control {
   height: auto;
   resize: none;
 }

 /* INPUT FOCUS */

 .trip-form .form-control:focus {
   border-color: #ff8c00;
   box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
   background: var(--input-bg);
   color: var(--input-text);
 }

 /* PLACEHOLDER */

 .trip-form .form-control::placeholder {
   color: #999;
 }

 /* BUTTON */

 .trip-form .btn-primary {
   border: none;
   border-radius: 14px;
   padding: 14px;
   font-size: 17px;
   font-weight: 700;
   background: linear-gradient(to right, #ff7b00, #ffb347);
   transition: 0.4s;
 }

 .trip-form .btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
 }

 /* ICONS */

 .trip-form .fas,
 .trip-form .fab {
   color: #ff8c00;
   transition: 0.3s;
 }

 .trip-form .fab:hover {
   transform: translateY(-5px);
   color: #ffb347;
 }

 /* SUCCESS ALERT */

 #contactSuccess {
   border-radius: 14px;
   border: none;
 }

 /* MOBILE */

 @media(max-width:768px) {

   .trip-form {
     padding: 30px 20px;
   }

   .review-card {
     padding: 30px 20px;
   }

 }

 /* Destination Details CSS */

 .td-page {
   padding: 50px 0;
 }

 .td-container {
   max-width: 1200px;
 }

 .td-hero {
   position: relative;
   height: 500px;
   border-radius: 30px;
   overflow: hidden;
   margin-bottom: 60px;
 }

 .td-hero img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .td-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top,
       rgba(0, 0, 0, 0.8),
       rgba(0, 0, 0, 0.2));
 }

 .td-hero-content {
   position: absolute;
   left: 50px;
   bottom: 50px;
   color: white;
   z-index: 2;
 }

 .td-hero-content h1 {
   font-size: 70px;
   font-weight: 800;
   margin-bottom: 15px;
 }

 .td-hero-content p {
   font-size: 18px;
   opacity: 0.9;
 }

 .td-section-title {
   font-size: 42px;
   font-weight: 800;
   margin-bottom: 35px;
   color: var(--dark-text);
 }

 .td-section-title span {
   color: #ff4db8;
 }

 .td-about-grid {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 25px;
   margin-bottom: 70px;
 }

 .td-card {
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 25px;
   padding: 35px;
   transition: 0.4s;
 }

 .td-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 15px 30px var(--hover-glow);
 }

 .td-card h4 {
   color: var(--dark-text);
   margin-bottom: 20px;
   font-size: 30px;
   font-weight: 700;
 }

 .td-card p {
   color: var(--input-text);
   line-height: 1.9;
 }

 .td-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 25px;
 }

 .td-tags span {
   background: rgba(255, 77, 184, 0.12);
   color: #ff4db8;
   padding: 10px 18px;
   border-radius: 50px;
   font-size: 14px;
   font-weight: 600;
 }

 .td-weather {
   background: linear-gradient(135deg, #ff4db8, #8b5cf6);
   color: white;
 }

 .td-weather h2 {
   font-size: 70px;
   font-weight: 800;
   margin-bottom: 10px;
 }

 .td-weather p {
   color: rgba(255, 255, 255, 0.9);
   margin-bottom: 12px;
 }

 .td-info-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   margin-bottom: 70px;
 }

 .td-info-box {
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 24px;
   text-align: center;
   padding: 35px 20px;
   transition: 0.4s;
 }

 .td-info-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 30px var(--hover-glow);
 }

 .td-info-box i {
   font-size: 35px;
   color: #ff4db8;
   margin-bottom: 18px;
 }

 .td-info-box h5 {
   color: var(--dark-text);
   font-weight: 700;
   margin-bottom: 10px;
 }

 .td-info-box p {
   color: var(--input-text);
   margin: 0;
 }

 .td-gallery {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
   margin-bottom: 70px;
 }

 .td-gallery img {
   width: 100%;
   height: 280px;
   object-fit: cover;
   border-radius: 24px;
   transition: 0.4s;
 }

 .td-gallery img:hover {
   transform: scale(1.03);
 }

 .td-service-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 25px;
   margin-bottom: 70px;
 }

 .td-service-card {
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 24px;
   padding: 25px;
 }

 .td-service-card h4 {
   color: var(--dark-text);
   margin-bottom: 25px;
   font-weight: 700;
 }

 .td-service-item {
   background: rgba(255, 255, 255, 0.05);
   padding: 18px;
   border-radius: 16px;
   margin-bottom: 15px;
 }

 .td-service-item h6 {
   color: var(--dark-text);
   font-weight: 700;
 }

 .td-service-item p {
   color: var(--input-text);
   margin-bottom: 6px;
   font-size: 14px;
 }

 .td-map {
   overflow: hidden;
   border-radius: 25px;
   border: 1px solid var(--border-color);
   margin-bottom: 70px;
 }

 .td-map iframe {
   width: 100%;
   height: 450px;
   border: 0;
 }

 @media(max-width:992px) {

   .td-about-grid,
   .td-info-grid,
   .td-gallery,
   .td-service-grid {
     grid-template-columns: 1fr;
   }

   .td-hero {
     height: 320px;
   }

   .td-hero-content h1 {
     font-size: 40px;
   }

   .td-section-title {
     font-size: 32px;
   }
 }