 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 :root {
     --default-font: "Poppins", sans-serif;
     --heading-font: "Poppins", sans-serif;
     --nav-font: "Poppins", sans-serif;
 }

 /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
 :root {
     --background-color: #ffffff;
     /* Background color for the entire website, including individual sections */
     --default-color: #35211f;
     /* Default color used for the majority of the text content across the entire website */
     --heading-color: #200f0d;
     /* Color for headings, subheadings and title throughout the website */
     --accent-color: #2755b0;
     /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
     --accent-color-2: #fff500;
     --landing-blue: #12229d;
     --surface-color: #ffffff;
     /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
     --contrast-color: #ffffff;
     /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
 }

 /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
 :root {
     --nav-color: #000;
     /* The default color of the main navmenu links */
     --nav-hover-color: #2755b0;
     /* Applied to main navmenu links when they are hovered over or active */
     --nav-mobile-background-color: #ffffff;
     /* Used as the background color for mobile navigation menu */
     --nav-dropdown-background-color: #ffffff;
     /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
     --nav-dropdown-color: #35211f;
     /* Used for navigation links of the dropdown items in the navigation menu. */
     --nav-dropdown-hover-color: #2755b0;
     /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
 }

 /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
 .light-background {
     --background-color: #f4f6fc;
     --surface-color: #ffffff;
 }

 .dark-background {
     --background-color: #031013;
     --default-color: #ffffff;
     --heading-color: #ffffff;
     --surface-color: #252525;
     --contrast-color: #ffffff;
 }

 /* Smooth scroll */
 :root {
     scroll-behavior: smooth;
 }

 /*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
 body {
     color: var(--default-color);
     background-color: var(--background-color);
     font-family: var(--default-font);
     position: relative;
     z-index: -1;
 }

 a {
     color: var(--accent-color);
     text-decoration: none;
     transition: 0.3s;
 }

 a:hover {
     color: color-mix(in srgb, var(--accent-color), transparent 25%);
     text-decoration: none;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     color: var(--heading-color);
     font-family: var(--heading-font);
 }

 /* PHP Email Form Messages
------------------------------*/
 .php-email-form .error-message {
     display: none;
     background: #df1529;
     color: #ffffff;
     text-align: left;
     padding: 15px;
     margin-bottom: 24px;
     font-weight: 600;
 }

 .php-email-form .sent-message {
     display: none;
     color: #ffffff;
     background: #059652;
     text-align: center;
     padding: 15px;
     margin-bottom: 24px;
     font-weight: 600;
 }

 .php-email-form .loading {
     display: none;
     background: var(--surface-color);
     text-align: center;
     padding: 15px;
     margin-bottom: 24px;
 }

 .php-email-form .loading:before {
     content: "";
     display: inline-block;
     border-radius: 50%;
     width: 24px;
     height: 24px;
     margin: 0 10px -6px 0;
     border: 3px solid var(--accent-color);
     border-top-color: var(--surface-color);
     animation: php-email-form-loading 1s linear infinite;
 }

 @keyframes php-email-form-loading {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .new-container {
     width: 100%;
     max-width: 1600px;
     margin: 0 auto;
 }

 @media (min-width: 1024px) and (max-width: 1369px) {
     .new-container {
         max-width: 1200px;
         margin: auto
     }
 }

 @media (min-width: 1368px) and (max-width: 1600px) {
     .new-container {
         max-width: 1200px;
         margin: auto;
     }
 }

 /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
 .topbar {
     background: #FFDB59;
     background: linear-gradient(82deg, rgba(255, 219, 89, 1) 0%, rgba(255, 183, 83, 1) 65%, rgba(255, 148, 77, 1) 100%);
     position: relative;
     z-index: 2;
     padding: 5px 0;
     text-align: center;
 }

 .topbar p {
     font-weight: 500;
     font-size: 15px;
     margin: 0;
     color: #000;
 }

 .topbar a,
 .topbar button {
     background: #222;
     padding: 4px 8px 4px 14px;
     color: #fff;
     font-size: 12px;
     font-weight: 600;
     border-radius: 30px;
     margin: 0 0 0 40px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .topbar a i,
 .topbar button i {
     padding: 0 0 0 6px;
     font-size: 11px;
     font-weight: 600;
     -webkit-text-stroke: 1px;
 }

 .topbar a:hover,
 .topbar button:hover {
     background: var(--contrast-color);
     color: #222;
 }

 .topbar a:hover .topbar a i,
 .topbar button:hover .topbar button i {
     color: #222;
 }

 button.top-close {
     background: none;
     color: #000;
     border: none;
     position: absolute;
     right: 20%;
     top: 19%;
 }

 button.top-close:hover {
     background: none;
 }

 .header {
     --background-color: rgb(255 255 255);
     --default-color: #ffffff;
     --heading-color: #ffffff;
     --surface-color: rgba(0, 0, 0, 0.26);
     color: var(--default-color);
     background-color: var(--background-color);
     padding: 0;
     transition: all 0.5s;
     z-index: 997;
 }

 .header .logo {
     line-height: 1;
 }

 .header .logo img {
     max-height: 36px;
     margin-right: 8px;
 }

 .header .logo h1 {
     font-size: 26px;
     margin: 0;
     font-weight: 600;
     color: var(--heading-color);
 }

 .header .btn-getstarted,
 .header .btn-getstarted:focus {
     color: var(--accent-color);
     font-size: 14px;
     font-weight: 600;
     padding: 5px 14px;
     margin: 0;
     border-radius: 40px;
     transition: 0.3s;
     border: 1px solid var(--accent-color);
     margin: 0 0 0 20px;
     display: flex;
     align-items: center;
 }

 .header .btn-getstarted:hover,
 .header .btn-getstarted:focus:hover {
     color: var(--contrast-color);
     background: color-mix(in srgb, var(--accent-color), transparent 15%);
 }

 .btn-getstarted i {
     font-size: 18px;
     margin: 0 5px 0 0;
 }

 /*
.btn-getstarted .without-hover, .btn-getstarted .with-hover {
    width: 100%;
    max-width: 18px;
    margin: 0 10px 0 0;
}
.btn-getstarted .without-hover {
    opacity: 1;
}
.btn-getstarted .with-hover {
    opacity: 0;
    display: none;
}
.header .btn-getstarted:hover .without-hover {
    opacity: 0;
    display: none;
}
.header .btn-getstarted:hover .with-hover {
    opacity: 1;
    display: inline-block;
}
*/
 .login-div {
     display: flex;
     align-items: center;
     margin: 0 0 0 20px;
     justify-content: space-between;
 }

 .login-div span {
     color: #000;
     margin: 0 15px 0 0;
     font-size: 37px;
     font-weight: 200;
     align-items: center;
     display: flex;
 }

 .login-div a {
     background: var(--accent-color);
     width: 40px;
     height: 40px;
     line-height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }

 .login-div a i {
     font-size: 25px;
     color: #fff;
 }

 .head-botm {
     background: var(--accent-color);
     padding: 10px 0;
     /* position: relative;
     z-index: 1;
     width: 100%;
     top: 92px; */
 }

 .head-botm ul {
     display: flex;
     list-style: none;
     position: relative;
     z-index: 2;
     justify-content: center;
     margin: 0;
 }

 .head-botm ul li {
     color: #fff;
     font-size: 14px;
 }

 .head-botm ul li a {
     color: #fff;
     font-size: 15px;
     font-weight: 500;
     padding: 2px 0;
 }

 .head-botm ul li a img {
     width: 100%;
     max-width: 20px;
     margin: 0 6px 0 0;
 }

 @media (max-width: 1200px) {
     .header .logo {
         order: 1;
     }

     .header .btn-getstarted {
         order: 2;
         margin: 0 15px 0 0;
         padding: 6px 20px;
     }

     .header .navmenu {
         order: 3;
     }
 }

 .scrolled .header {
     box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
 }

 /* Global Header on Scroll
------------------------------*/
 .scrolled .header {
     --background-color: rgb(255 255 255);
 }

 /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
 /* Navmenu - Desktop */
 @media (min-width: 1200px) {
     .navmenu {
         padding: 0;
     }

     .navmenu ul {
         margin: 0;
         padding: 0;
         display: flex;
         list-style: none;
         align-items: center;
     }

     .navmenu li {
         position: relative;
         padding: 0 15px;
     }

     .navmenu a {
         color: var(--nav-color);
         font-size: 15px;
         font-family: var(--nav-font);
         font-weight: 500;
         display: flex;
         align-items: center;
         justify-content: space-between;
         white-space: nowrap;
         transition: 0.3s;
     }

     .navmenu a i,
     .navmenu a:focus i {
         font-size: 12px;
         line-height: 0;
         margin-left: 5px;
         transition: 0.3s;
     }

     .navmenu li:last-child a {
         padding-right: 0;
     }

     /*
    .navmenu li:hover > a {
        color: var(--contrast-color);
        background: rgb(244, 246, 252);
        border-radius: 6px;
    }
*/
     /*
	.navmenu .dropdown ul li.active, .navmenu .dropdown ul li.active:focus {
        color: var(--contrast-color);
		background: rgb(244, 246, 252);
    }
*/
     .navmenu .dropdown ul {
         margin: 0;
         padding: 10px 0;
         background: var(--nav-dropdown-background-color);
         display: block;
         position: absolute;
         visibility: hidden;
         left: 14px;
         top: 130%;
         opacity: 0;
         transition: 0.3s;
         border-radius: 14px;
         z-index: 99;
         box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
     }

     .navmenu .dropdown ul li {
         min-width: 200px;
     }

     .navmenu .dropdown ul a {
         padding: 10px 0px 10px 10px;
         font-size: 15px;
         text-transform: none;
         color: var(--nav-dropdown-color);
     }

     .navmenu .dropdown ul a i {
         font-size: 12px;
     }

     /*
    .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }
*/
     .navmenu .dropdown:hover>ul {
         opacity: 1;
         top: 100%;
         visibility: visible;
     }

     .navmenu .dropdown .dropdown ul {
         top: 0;
         left: -90%;
         visibility: hidden;
     }

     .navmenu .dropdown .dropdown:hover>ul {
         opacity: 1;
         top: 0;
         left: -100%;
         visibility: visible;
     }

     #navmenu ul .dropdown a ul li.active,
     #navmenu ul .dropdown a ul li.active:focus {
         color: var(--contrast-color);
         background: rgb(244, 246, 252);
     }
 }

 /* Navmenu - Mobile */
 @media (max-width: 1199px) {
     .mobile-nav-toggle {
         color: var(--nav-color);
         font-size: 28px;
         line-height: 0;
         margin-right: 10px;
         cursor: pointer;
         transition: color 0.3s;
         max-width: 30px;
     }

     .navmenu {
         padding: 0;
         z-index: 9997;
     }

     .navmenu ul {
         display: none;
         list-style: none;
         position: absolute;
         inset: 0px 0px 0px 0px;
         padding: 80px 0 20px;
         margin: 0;
         border-radius: 0;
         background-color: var(--nav-mobile-background-color);
         overflow-y: auto;
         transition: 0.3s;
         z-index: 9998;
         box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
         width: 100%;
         height: 100%;
     }

     .navmenu a,
     .navmenu a:focus {
         color: var(--nav-dropdown-color);
         padding: 10px 20px;
         font-family: var(--nav-font);
         font-size: 12px;
         font-weight: 500;
         text-align: left;
         display: inline-flex;
         align-items: center;
         justify-content: space-between;
         white-space: nowrap;
         transition: 0.3s;
     }

     .navmenu a i,
     .navmenu a:focus i {
         font-size: 12px;
         line-height: 0;
         margin-left: 5px;
         transition: 0.3s;
         float: right;
         -webkit-text-stroke: 1px;
     }

     .navmenu a i:hover,
     .navmenu a:focus i:hover {
         background-color: none;
         color: var(--accent-color);
     }

     .navmenu a:hover,
     .navmenu .active,
     .navmenu .active:focus {
         color: var(--nav-dropdown-hover-color);
     }

     .navmenu .active i,
     .navmenu .active:focus i {
         background-color: none;
         color: var(--accent-color);
         transform: rotate(180deg);
     }

     .navmenu .dropdown ul {
         position: static;
         display: none;
         z-index: 99;
         padding: 0;
         margin: 0;
         background-color: none;
         border: none;
         box-shadow: none;
         transition: all 0.5s ease-in-out;
     }

     .navmenu .dropdown ul ul {
         background-color: rgba(33, 37, 41, 0.1);
     }

     .navmenu .dropdown>.dropdown-active {
         display: block;
         background-color: none;
         border-left: 1px solid #ddd;
         padding: 0 0 0 2px;
         margin: 0px 0 0 25px;
     }

     .navmenu .dropdown>.dropdown-active li a {
         padding: 6px;
     }

     .mobile-nav-active {
         overflow: hidden;
     }

     .mobile-nav-active .mobile-nav-toggle {
         color: #000;
         position: absolute;
         font-size: 32px;
         top: 15px;
         right: 15px;
         margin-right: 0;
         z-index: 9999;
     }

     .mobile-nav-active .navmenu {
         position: fixed;
         overflow: hidden;
         inset: 0;
         background: rgba(33, 37, 41, 0.8);
         transition: 0.3s;
     }

     .mobile-nav-active .navmenu>ul {
         display: inline-block;
         float: left;
     }

     .half-categ {
         width: 50%;
         float: left;
     }

     .mob-menu-logo {
         position: absolute;
         top: 10px;
         left: 10px;
     }

     .mob-menu-logo img {
         max-width: 45px;
     }

     .navmenu h4 {
         font-size: 12px;
         color: #555;
         font-weight: 300;
         display: block;
         padding: 15px 20px;
         text-transform: uppercase;
     }

     .mob-cat {
         margin: 0 0 30px 0;
         float: left;
     }

     .mob-cat img {
         max-width: 13px;
         margin: 0 6px 0 0;
     }

     .early-btn,
     .menu-cta {
         display: flex;
         justify-content: center;
         margin: 20px 0;
     }

     .early-btn a {
         background: rgb(255, 49, 49);
         color: var(--accent-color-2);
         font-size: 14px;
         line-height: 24px;
         border-radius: 6px;
         border: 1px solid rgb(255, 49, 49);
         padding: 5px 20px;
     }

     .menu-cta a.btn-getstarted {
         margin: 0;
     }

     .menu-cta .menu-call,
     .menu-cta .menu-login {
         color: var(--accent-color) !important;
         font-size: 12px;
         font-weight: 700 !important;
         padding: 5px 14px !important;
         margin: 0;
         border-radius: 40px;
         transition: 0.3s;
         border: 1px solid var(--accent-color);
         display: flex;
         align-items: center;
     }

     .menu-cta .menu-call i,
     .menu-cta .menu-login i {
         -webkit-text-stroke: 0 !important;
         margin: 0 5px 0 0
     }

     .menu-cta .menu-call {
         margin: 0 18px 0 0px;
         position: relative;
     }

     .menu-cta .menu-call::after {
         position: absolute;
         content: "";
         width: 1px;
         height: 30px;
         background: #848484;
         top: 0;
         right: -10px;
     }
 }

 /*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
 .footer {
     background: rgb(244, 246, 252);
     padding: 80px 0;
     position: relative;
 }

 .footer-links h4 {
     color: var(--accent-color);
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 25px;
 }

 .footer .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer .footer-links ul li {
     padding: 3px 0;
     display: flex;
     align-items: center;
     transition: 0.3s;
 }

 .footer .footer-links ul li:hover {
     transform: translateX(5px);
 }

 .footer .footer-links ul li a,
 .footer .footer-links ul li p {
     color: #222;
     text-decoration: none;
     display: flex;
     align-items: center;
     font-size: 14px;
     line-height: 20px;
     font-weight: 400;
     transition: 0.3s;
 }

 .footer .footer-links ul li p,
 .footer-address li p {
     transition: none;
     transform: none;
 }

 .footer-address .no-hover:hover,
 .footer .footer-links ul .no-hover:hover {
     transition: none;
     transform: none;
 }

 .footer .footer-links ul li a:hover {
     color: var(--accent-color);
 }

 .footer .footer-links ul li a i {
     margin-right: 8px;
     font-size: 12px;
     color: var(--accent-color);
 }

 .footer-address li {
     font-size: 12px;
     line-height: 16px;
     font-weight: 600;
 }

 .footer-address li i {
     font-size: 20px;
     padding-right: 15px;
 }

 .footer-copyright {
     background: #fff;
     border-radius: 20px;
     padding: 20px;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
 }

 .footer-logo img {
     max-width: 110px;
 }

 .payment {
     text-align: center
 }

 .payment img {
     width: 100%;
     max-width: 600px;
     padding: 0 0 20px;
     border-bottom: 1px solid #bbb;
     margin: auto
 }

 .payment-div p {
     text-align: center;
     font-size: 14px;
     margin: 15px 0 0;
 }

 .footer .social-grup {
     display: flex;
     gap: 12px;
     margin-top: 25px;
 }

 .footer .social-grup .footer-social img {
     max-width: 30px;
 }

 input[type=text],
 input[type=email],
 textarea {
     color: var(--default-color);
     background-color: var(--surface-color);
     font-size: 14px;
     border-color: color-mix(in srgb, var(--default-color), transparent 80%);
 }

 input[type=text]:focus,
 input[type=email]:focus,
 textarea:focus {
     border-color: var(--accent-color);
 }

 input[type=text]::placeholder,
 input[type=tel]::placeholder,
 input[type=email]::placeholder,
 textarea::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
 .scroll-top {
     position: fixed;
     visibility: hidden;
     opacity: 0;
     right: 15px;
     bottom: -15px;
     z-index: 99999;
     background-color: var(--accent-color);
     width: 44px;
     height: 44px;
     border-radius: 50px;
     transition: all 0.4s;
 }

 .scroll-top i {
     font-size: 24px;
     color: var(--contrast-color);
     line-height: 0;
 }

 .scroll-top:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
     color: var(--contrast-color);
 }

 .scroll-top.active {
     visibility: visible;
     opacity: 1;
     bottom: 15px;
 }

 /*--------------------------------------------------------------
# Bottom Navbar
--------------------------------------------------------------*/
 .botm-navbar {
     background-color: var(--contrast-color);
     position: fixed;
     bottom: 0;
     width: 100%;
     border-radius: 25px;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
     z-index: 99;
     box-shadow: 0 2px 10px 0 rgb(99 99 99 / 80%);
 }

 .botm-navbar ul {
     display: flex;
     justify-content: space-between;
     list-style: none;
     padding: 10px 20px;
     margin: 0;
     width: 100%;
 }

 .botm-navbar ul li {
     text-align: center;
     display: block;
 }

 .botm-navbar ul li a img {
     max-width: 18px;
     text-align: center;
     margin: auto;
     display: block;
     padding: 0 0 4px;
 }

 .botm-navbar ul li a i {
     display: block;
     font-size: 15px;
 }

 .botm-navbar ul li a {
     float: left;
     display: block;
     color: #222;
     text-align: center;
     padding: 0px;
     text-decoration: none;
     font-size: 11px;
 }

 .botm-navbar a.active {
     color: var(--accent-color);
 }

 #toggle-container {
     border: 0px dashed #222;
     position: absolute;
     bottom: 4px;
     left: 10px;
     width: 100%;
 }

 #toggle-container #menu {
     color: #222;
     display: none;
     line-height: 30px;
     list-style: none;
     margin: auto;
     padding: 10px;
     text-align: center;
     width: 100%;
     background: var(--contrast-color);
 }

 #toggle {
     background-color: rgba(0, 0, 0, 0);
     border: 0px solid rgba(0, 0, 0, 0);
     cursor: pointer;
     height: inherit;
     margin: 4px;
     width: 20px;
 }

 #toggle span {
     margin: 6px 0 0;
     display: inline-block;
     text-align: center;
 }

 #toggle div {
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     background-color: #222;
     height: 2px;
     margin: 3px 6px;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
     width: 100%;
 }

 #toggle.on .one {
     -ms-transform: rotate(45deg) translate(9px, 2px);
     -webkit-transform: rotate(45deg) translate(9px, 2px);
     transform: rotate(45deg) transform-origin: 20% 40%;
 }

 #toggle.on .two {
     opacity: 0;
 }

 #toggle.on .three {
     -ms-transform: rotate(-45deg) translate(6px, 3px);
     -webkit-transform: rotate(-45deg) translate(6px, 3px);
     transform: rotate(-45deg) translate(6px, 3px);
 }

 /*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
 .page-title {
     color: var(--default-color);
     background-color: var(--background-color);
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     padding: 160px 0 80px 0;
     text-align: center;
     position: relative;
 }

 .page-title:before {
     content: "";
     background-color: color-mix(in srgb, var(--background-color), transparent 50%);
     position: absolute;
     inset: 0;
 }

 .page-title h1 {
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .page-title .breadcrumbs ol {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     justify-content: center;
     padding: 0;
     margin: 0;
     font-size: 16px;
     font-weight: 400;
 }

 .page-title .breadcrumbs ol li+li {
     padding-left: 10px;
 }

 .page-title .breadcrumbs ol li+li::before {
     content: "/";
     display: inline-block;
     padding-right: 10px;
     color: color-mix(in srgb, var(--default-color), transparent 50%);
 }

 /*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
 section,
 .section {
     color: var(--default-color);
     background-color: var(--background-color);
     padding: 60px 0;
     scroll-margin-top: 90px;
     overflow: clip;
 }

 @media (max-width: 1199px) {

     section,
     .section {
         scroll-margin-top: 66px;
     }
 }

 /*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
 .section-title {
     padding-bottom: 60px;
     position: relative;
 }

 .section-title h2 {
     font-size: 14px;
     font-weight: 500;
     padding: 0;
     line-height: 1px;
     margin: 0;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: color-mix(in srgb, var(--default-color), transparent 50%);
     position: relative;
 }

 .section-title h2::after {
     content: "";
     width: 120px;
     height: 1px;
     display: inline-block;
     background: var(--accent-color);
     margin: 4px 10px;
 }

 .section-title div {
     color: var(--heading-color);
     margin: 0;
     font-size: 24px;
     font-weight: 700;
     font-family: var(--heading-font);
 }

 /*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
 .travel-hero {
     background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/travel/showcase-1.webp") center center no-repeat;
     background-size: cover;
     padding: 120px 0;
     min-height: 80vh;
     display: grid;
     place-content: center;
 }

 .travel-hero .content h1 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
 }

 .travel-hero .content .lead {
     font-size: 1.25rem;
     max-width: 600px;
 }

 .travel-hero .btn {
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .travel-hero .btn.btn-primary {
     background-color: var(--accent-color);
     border: 2px solid var(--accent-color);
     color: var(--contrast-color);
 }

 .travel-hero .btn.btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .travel-hero .btn.btn-outline-light {
     background-color: transparent;
     border: 2px solid var(--accent-color);
     color: var(--accent-color);
 }

 .travel-hero .btn.btn-outline-light:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .travel-hero .booking-form {
     background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 .travel-hero .booking-form label {
     font-weight: 600;
     color: var(--heading-color);
     margin-bottom: 8px;
 }

 .travel-hero .booking-form .form-control {
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     border-radius: 8px;
     padding: 12px 15px;
     height: auto;
     background-color: transparent;
     color: var(--default-color);
 }

 .travel-hero .booking-form .form-control:focus {
     border-color: var(--accent-color);
     box-shadow: none;
 }

 .travel-hero .booking-form .form-control::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 50%);
 }

 .travel-hero .booking-form .btn-accent {
     background-color: var(--accent-color);
     border: none;
     color: var(--contrast-color);
     padding: 12px;
     font-weight: 600;
     border-radius: 8px;
 }

 .travel-hero .booking-form .btn-accent:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 @media (max-width: 992px) {
     .travel-hero {
         padding: 80px 0;
     }

     .travel-hero .content h1 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 768px) {
     .travel-hero .content {
         text-align: center;
     }

     .travel-hero .content h1 {
         font-size: 2rem;
     }

     .travel-hero .content .lead {
         font-size: 1rem;
     }

     .travel-hero .d-flex {
         justify-content: center !important;
     }
 }

 /*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
 .why-us .content-grid {
     margin-bottom: 5rem;
 }

 @media (max-width: 768px) {
     .why-us .content-grid {
         margin-bottom: 3rem;
     }
 }

 .why-us .about-block {
     background: var(--surface-color);
     padding: 3rem;
     border-radius: 20px;
     height: 100%;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     transition: all 0.3s ease;
 }

 .why-us .about-block:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 .why-us .about-block .about-header {
     margin-bottom: 2rem;
 }

 .why-us .about-block .about-header h3 {
     font-size: 2rem;
     font-weight: 700;
     margin-top: 1rem;
     line-height: 1.3;
 }

 .why-us .about-block .about-content p {
     font-size: 1.1rem;
     line-height: 1.7;
     margin-bottom: 1.5rem;
     color: color-mix(in srgb, var(--default-color), transparent 15%);
 }

 .why-us .about-block .feature-list {
     margin-top: 2rem;
 }

 .why-us .about-block .feature-list .feature-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1rem;
 }

 .why-us .about-block .feature-list .feature-item i {
     color: var(--accent-color);
     font-size: 1.1rem;
     flex-shrink: 0;
 }

 .why-us .about-block .feature-list .feature-item span {
     font-size: 1rem;
     line-height: 1.5;
 }

 @media (max-width: 768px) {
     .why-us .about-block {
         padding: 2rem;
         margin-bottom: 2rem;
     }

     .why-us .about-block .about-header h3 {
         font-size: 1.6rem;
     }
 }

 .why-us .section-badge {
     display: inline-block;
     background: color-mix(in srgb, var(--accent-color), transparent 85%);
     color: var(--accent-color);
     padding: 0.5rem 1.5rem;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .why-us .image-showcase {
     position: relative;
     height: 100%;
 }

 .why-us .image-showcase .main-image {
     position: relative;
     height: 100%;
     min-height: 400px;
 }

 .why-us .image-showcase .main-image img {
     height: 100%;
     object-fit: cover;
 }

 .why-us .image-showcase .main-image .overlay-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     background: var(--surface-color);
     padding: 1rem 1.5rem;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .why-us .image-showcase .main-image .overlay-badge .badge-content {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .why-us .image-showcase .main-image .overlay-badge .badge-content i {
     font-size: 1.5rem;
     color: var(--accent-color);
 }

 .why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text strong {
     display: block;
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--heading-color);
 }

 .why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text span {
     font-size: 0.8rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .why-us .image-showcase .floating-card {
     position: absolute;
     bottom: -20px;
     left: 20px;
     background: var(--surface-color);
     padding: 1rem;
     border-radius: 12px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
     display: flex;
     align-items: center;
     gap: 1rem;
     min-width: 200px;
 }

 .why-us .image-showcase .floating-card img {
     width: 50px;
     height: 50px;
     object-fit: cover;
 }

 .why-us .image-showcase .floating-card .card-content .rating {
     display: flex;
     align-items: center;
     gap: 0.2rem;
     margin-bottom: 0.5rem;
 }

 .why-us .image-showcase .floating-card .card-content .rating i {
     color: #ffc107;
     font-size: 0.8rem;
 }

 .why-us .image-showcase .floating-card .card-content .rating span {
     font-size: 0.8rem;
     font-weight: 600;
     margin-left: 0.5rem;
 }

 .why-us .image-showcase .floating-card .card-content p {
     margin: 0;
     font-size: 0.85rem;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
 }

 @media (max-width: 768px) {
     .why-us .image-showcase .main-image {
         min-height: 300px;
     }

     .why-us .image-showcase .overlay-badge {
         top: 15px;
         right: 15px;
         padding: 0.8rem 1rem;
     }

     .why-us .image-showcase .floating-card {
         position: static;
         margin-top: 1rem;
         transform: none;
     }
 }

 .why-us .why-choose-wrapper {
     margin-top: 6rem;
 }

 .why-us .why-choose-wrapper .section-header {
     margin-bottom: 4rem;
 }

 .why-us .why-choose-wrapper .section-header h3 {
     font-size: 2.5rem;
     font-weight: 700;
     margin: 1rem 0 1.5rem;
     line-height: 1.2;
 }

 @media (max-width: 768px) {
     .why-us .why-choose-wrapper .section-header h3 {
         font-size: 2rem;
     }
 }

 .why-us .why-choose-wrapper .section-header p {
     font-size: 1.1rem;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     max-width: 600px;
     margin: 0 auto;
 }

 @media (max-width: 768px) {
     .why-us .why-choose-wrapper {
         margin-top: 4rem;
     }

     .why-us .why-choose-wrapper .section-header {
         margin-bottom: 2.5rem;
     }
 }

 @media (max-width: 768px) {
     .why-us .feature-box {
         padding: 1.5rem;
     }

     .why-us .feature-box .feature-icon-wrapper .feature-icon {
         width: 60px;
         height: 60px;
         font-size: 1.3rem;
     }

     .why-us .feature-box h4 {
         font-size: 1.2rem;
     }
 }

 /*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
 .featured-destinations .destination-card {
     background: var(--surface-color);
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     height: 100%;
 }

 .featured-destinations .destination-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
 }

 .featured-destinations .destination-card:hover .image-wrapper img {
     transform: scale(1.05);
 }

 .featured-destinations .destination-card:hover .explore-btn {
     background: var(--accent-color);
     color: var(--contrast-color);
     transform: translateX(5px);
 }

 .featured-destinations .image-wrapper {
     position: relative;
     height: 220px;
     overflow: hidden;
 }

 .featured-destinations .image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .featured-destinations .image-wrapper .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent 50%);
 }

 .featured-destinations .image-wrapper .badge {
     position: absolute;
     top: 15px;
     left: 15px;
     background: var(--accent-color);
     color: var(--contrast-color);
     padding: 4px 12px;
     border-radius: 15px;
     font-size: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .featured-destinations .image-wrapper .badge.featured {
     background: #ff6b35;
 }

 .featured-destinations .image-wrapper .badge.new {
     background: #28a745;
 }

 .featured-destinations .content {
     padding: 20px;
     display: flex;
     flex-direction: column;
     height: calc(100% - 220px);
 }

 .featured-destinations .content h4 {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--heading-color);
 }

 .featured-destinations .content p {
     font-size: 14px;
     line-height: 1.6;
     color: var(--default-color);
     margin-bottom: 15px;
     flex-grow: 1;
 }

 .featured-destinations .features {
     margin-bottom: 20px;
 }

 .featured-destinations .features .feature-tag {
     display: inline-block;
     background: color-mix(in srgb, var(--accent-color), transparent 90%);
     color: var(--accent-color);
     font-size: 11px;
     font-weight: 600;
     padding: 3px 8px;
     border-radius: 10px;
     margin-right: 6px;
     margin-bottom: 4px;
     text-transform: uppercase;
     letter-spacing: 0.3px;
 }

 .featured-destinations .card-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: auto;
 }

 .featured-destinations .card-footer .tours-count {
     font-size: 12px;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     font-weight: 500;
 }

 .featured-destinations .card-footer .explore-btn {
     background: transparent;
     border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
     color: var(--accent-color);
     padding: 6px 16px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .featured-destinations .card-footer .explore-btn i {
     font-size: 10px;
     transition: transform 0.3s ease;
 }

 .featured-destinations .destinations-cta {
     margin-top: 60px;
     padding: 40px;
     background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
     border-radius: 16px;
     text-align: center;
 }

 .featured-destinations .destinations-cta h3 {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--heading-color);
 }

 .featured-destinations .destinations-cta p {
     font-size: 16px;
     color: var(--default-color);
     margin-bottom: 30px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .featured-destinations .destinations-cta .cta-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .featured-destinations .destinations-cta .btn {
     padding: 12px 30px;
     border-radius: 25px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     border: 2px solid;
 }

 .featured-destinations .destinations-cta .btn.btn-primary {
     background: var(--accent-color);
     color: var(--contrast-color);
     border-color: var(--accent-color);
 }

 .featured-destinations .destinations-cta .btn.btn-primary:hover {
     background: color-mix(in srgb, var(--accent-color), black 10%);
     border-color: color-mix(in srgb, var(--accent-color), black 10%);
     transform: translateY(-2px);
 }

 .featured-destinations .destinations-cta .btn.btn-outline {
     background: transparent;
     color: var(--accent-color);
     border-color: var(--accent-color);
 }

 .featured-destinations .destinations-cta .btn.btn-outline:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
     transform: translateY(-2px);
 }

 @media (max-width: 768px) {
     .featured-destinations .destination-card .image-wrapper {
         height: 200px;
     }

     .featured-destinations .destination-card .content {
         height: calc(100% - 200px);
         padding: 16px;
     }

     .featured-destinations .destination-card .content h4 {
         font-size: 16px;
     }

     .featured-destinations .destination-card .content p {
         font-size: 13px;
     }

     .featured-destinations .destination-card .card-footer {
         flex-direction: column;
         align-items: stretch;
         gap: 10px;
     }

     .featured-destinations .destination-card .card-footer .explore-btn {
         text-align: center;
         justify-content: center;
     }

     .featured-destinations .destinations-cta {
         padding: 30px 20px;
         margin-top: 40px;
     }

     .featured-destinations .destinations-cta h3 {
         font-size: 24px;
     }

     .featured-destinations .destinations-cta p {
         font-size: 14px;
     }

     .featured-destinations .destinations-cta .cta-buttons {
         flex-direction: column;
         align-items: center;
     }

     .featured-destinations .destinations-cta .cta-buttons .btn {
         width: 100%;
         max-width: 250px;
     }
 }

 @media (max-width: 576px) {
     .featured-destinations .features .feature-tag {
         font-size: 10px;
         padding: 2px 6px;
         margin-right: 4px;
     }
 }

 /*--------------------------------------------------------------
# Featured Tours Section
--------------------------------------------------------------*/
 .featured-tours .destination-card {
     border-radius: 16px;
     overflow: hidden;
     height: 400px;
     position: relative;
     transition: all 0.4s ease;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     margin: 0;
     padding: 0;
 }

 .featured-tours .destination-card a {
     border: none !important;
 }

 .featured-tours .destination-card .destination-overlay {
     position: relative;
     height: 100%;
     border-radius: 16px;
     overflow: hidden;
 }

 .featured-tours .destination-card .destination-overlay img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .featured-tours .destination-card .destination-overlay .card-details {
     position: absolute;
     bottom: 0%;
     left: 0%;
     padding: 180px 20px 20px;
     border-radius: 15px;
     width: 100%;
 }

 .featured-tours .destination-card .destination-overlay .card-details.bg-brown {
     background: linear-gradient(180deg, rgba(148, 118, 47, 0) 0%, rgb(52 24 15) 100%);
 }

 .featured-tours .destination-card .destination-overlay .card-details.bg-mustard {
     background: linear-gradient(180deg, rgba(148, 118, 47, 0) 0%, rgb(110 74 43) 100%);
 }

 .featured-tours .destination-card .destination-overlay .card-details.bg-blue {
     background: linear-gradient(180deg, rgba(148, 118, 47, 0) 0%, rgb(0 73 132) 100%);
 }

 .featured-tours .destination-card .destination-overlay .badge-container {
     position: absolute;
     top: 5%;
     left: 0%;
     width: 100%;
     height: 55%;
     z-index: 2;
 }

 .featured-tours .destination-card .destination-overlay .price-tag {
     position: absolute;
     bottom: -20%;
     right: 5%;
     background-color: var(--accent-color-2);
     color: #000;
     padding: 6px 8px;
     border-radius: 8px;
     font-size: 12px;
     font-weight: 600;
     backdrop-filter: blur(10px);
     border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
 }

 .featured-tours .destination-card .destination-overlay .badge-container .featured-badge {
     color: var(--contrast-color);
     padding: 6px 14px;
     border-radius: 4px;
     border-top-left-radius: 0;
     border-bottom-left-radius: 0;
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
     background: #FF3532;
     background: linear-gradient(82deg, rgba(255, 53, 50, 1) 0%, rgba(255, 102, 64, 1) 65%, rgba(255, 139, 75, 1) 100%);
 }

 .featured-tours .destination-card .destination-overlay .card-details {
     color: var(--contrast-color);
 }

 .featured-tours .destination-card .destination-overlay .card-details.trip-bg-dark {
     width: 100%;
     background: linear-gradient(180deg, rgba(148, 118, 47, 0) 0%, rgb(0 0 0) 100%)
 }

 .featured-tours .destination-card .destination-overlay .card-details h5 {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 12px;
     padding-bottom: 12px;
     color: var(--contrast-color);
     line-height: 21px;
     border-bottom: 1px solid #eeeeee85;
 }

 .div-minus h5 {
     font-size: 16px;
     line-height: 22px;
     color: #fff;
     border-bottom: 1px solid #ffffff91;
     padding-bottom: 10px;
 }

 .div-minus {
     position: absolute;
     bottom: 0%;
     left: 0;
     width: 100%;
     padding: 80px 20px 20px;
     background: linear-gradient(180deg, rgba(148, 118, 47, 0) 0%, rgb(0 0 0) 100%)
 }

 .featured-tours .destination-card .destination-overlay .card-details .meta-info {
     display: flex;
     gap: 20px;
     margin-bottom: 15px;
     font-size: 13px;
     padding: 20px;
     background: linear-gradient(180deg, rgba(148, 118, 47, 0) 0%, rgb(0 0 0) 100%)
 }

 .featured-tours .destination-card .destination-overlay .card-details .meta-info span {
     display: flex;
     align-items: center;
     gap: 6px;
     color: color-mix(in srgb, var(--contrast-color), transparent 20%);
 }

 .featured-tours .destination-card .destination-overlay .card-details .meta-info span i {
     color: var(--accent-color);
     font-size: 14px;
 }

 .featured-tours .destination-card .destination-overlay .card-details p {
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 20px;
     color: color-mix(in srgb, var(--contrast-color), transparent 15%);
 }

 .featured-tours .destination-card .destination-overlay .card-details .action-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
     background-color: var(--accent-color);
     color: var(--contrast-color);
     padding: 10px 20px;
     border-radius: 25px;
     font-weight: 600;
     font-size: 13px;
     text-decoration: none;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn:hover {
     background-color: color-mix(in srgb, var(--accent-color), black 20%);
     transform: translateY(-2px);
     color: var(--contrast-color);
     box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
 }

 .featured-tours .destination-card:hover .tour-btnicon {
     background: var(--contrast-color);
 }

 .featured-tours .destination-card:hover .tour-btnicon i {
     color: var(--accent-color);
     -webkit-text-stroke: 1px;
 }

 .featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars {
     display: flex;
     align-items: center;
     gap: 2px;
 }

 .featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars i {
     color: #ffd700;
     font-size: 12px;
 }

 .featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars small {
     margin-left: 6px;
     color: color-mix(in srgb, var(--contrast-color), transparent 20%);
     font-weight: 600;
     font-size: 12px;
 }

 .featured-tours .destination-card a:hover .destination-overlay img {
     transform: scale(1.1);
     padding: 0;
     margin: 0;
 }

 /*
.featured-tours .destination-card:hover .destination-overlay .card-overlay {
  opacity: 1;
}
*/
 .featured-tours .discover-more-btn {
     background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 30%));
     color: var(--contrast-color);
     padding: 16px 40px;
     border-radius: 30px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.4s ease;
     display: inline-block;
     position: relative;
     overflow: hidden;
 }

 .featured-tours .discover-more-btn::before {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
     transition: left 0.6s ease;
 }

 .featured-tours .discover-more-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
     color: var(--contrast-color);
 }

 .featured-tours .discover-more-btn:hover::before {
     left: 100%;
 }

 @media (max-width: 1200px) {
     .featured-tours .destination-card {
         height: 380px;
     }

     .featured-tours .destination-card .destination-overlay .card-details h5 {
         font-size: 20px;
     }

     .featured-tours .destination-card .destination-overlay .card-details .meta-info {
         flex-direction: column;
         gap: 8px;
     }

     .featured-tours .destination-card .destination-overlay .card-details .action-row {
         flex-direction: column;
         gap: 12px;
         align-items: stretch;
     }

     .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
         text-align: center;
     }

     .featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars {
         justify-content: center;
     }
 }

 @media (max-width: 768px) {
     .featured-tours .destination-card {
         height: 250px;
         margin: 10px 0 0;
     }

     .featured-tours .destination-card .destination-overlay .card-overlay {
         opacity: 1;
         background: linear-gradient(180deg, color-mix(in srgb, var(--default-color), transparent 60%) 0%, color-mix(in srgb, var(--default-color), transparent 20%) 100%);
     }

     .featured-tours .destination-card .destination-overlay .card-details h5 {
         font-size: 12px;
         line-height: 16px;
     }

     .featured-tours .destination-card .destination-overlay .card-details p {
         font-size: 13px;
         margin-bottom: 15px;
     }
 }

 @media (max-width: 576px) {
     .featured-tours .destination-card {
         height: 250px;
         margin: 10px 0 0;
         border-radius: 8px;
     }

     .featured-tours .destination-card .destination-overlay {
         border-radius: 8px;
     }

     .featured-tours .destination-card .destination-overlay .badge-container {
         top: 2%;
     }

     .featured-tours .destination-card .destination-overlay .badge-container {
         flex-direction: column;
         height: 64%;
         align-items: flex-start;
     }

     .featured-tours .destination-card .destination-overlay .badge-container .featured-badge {
         font-size: 9px;
         line-height: 16px;
         padding: 3px 6px;
         font-weight: 600;
     }

     .featured-tours .destination-card .destination-overlay .badge-container .price-tag {
         font-size: 9px;
         line-height: 16px;
         padding: 2px 4px;
         border-radius: 3px;
         bottom: 15%;
     }

     .featured-tours .destination-card .destination-overlay .card-details .meta-info {
         gap: 6px;
     }

     .featured-tours .destination-card .destination-overlay .card-details .action-row {
         gap: 10px;
     }

     .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
         padding: 8px 16px;
         font-size: 12px;
     }
 }

 /*--------------------------------------------------------------
# Testimonials Home Section
--------------------------------------------------------------*/
 .testimonials-home .testimonials-carousel,
 .testimonials-home .testimonials-slider {
     overflow: hidden;
 }

 .testimonials-home .testimonial-item .testimonial-content {
     border-left: 3px solid var(--accent-color);
     padding-left: 30px;
 }

 .testimonials-home .testimonial-item .testimonial-img {
     border-radius: 50%;
     border: 4px solid var(--background-color);
     margin: 0 auto;
 }

 .testimonials-home .testimonial-item h3 {
     font-size: 20px;
     font-weight: bold;
     margin: 10px 0 5px 0;
 }

 .testimonials-home .testimonial-item h4 {
     font-size: 14px;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     margin: 0 0 10px 0;
 }

 .testimonials-home .testimonial-item .stars i {
     color: #ffc107;
     margin: 0 1px;
 }

 .testimonials-home .testimonial-item .quote-icon-left,
 .testimonials-home .testimonial-item .quote-icon-right {
     color: color-mix(in srgb, var(--accent-color), transparent 50%);
     font-size: 26px;
     line-height: 0;
 }

 .testimonials-home .testimonial-item .quote-icon-left {
     display: inline-block;
     left: -5px;
     position: relative;
 }

 .testimonials-home .testimonial-item .quote-icon-right {
     display: inline-block;
     right: -5px;
     position: relative;
     top: 10px;
     transform: scale(-1, -1);
 }

 .testimonials-home .testimonial-item p {
     font-style: italic;
 }

 .testimonials-home .swiper-wrapper {
     height: auto;
 }

 .testimonials-home .swiper-pagination {
     margin-top: 30px;
     position: relative;
 }

 .testimonials-home .swiper-pagination .swiper-pagination-bullet {
     width: 12px;
     height: 12px;
     background-color: color-mix(in srgb, var(--default-color), transparent 85%);
     opacity: 1;
 }

 .testimonials-home .swiper-pagination .swiper-pagination-bullet-active {
     background-color: var(--accent-color);
 }

 /*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
 .call-to-action {
     background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 5%) 0%, color-mix(in srgb, var(--accent-color), transparent 5%) 100%);
     position: relative;
     overflow: hidden;
 }

 .call-to-action::before {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: url("../img/travel/misc-5.webp") center/cover no-repeat;
     opacity: 0.1;
     z-index: 0;
 }

 .call-to-action .container {
     position: relative;
     z-index: 1;
 }

 .call-to-action h2 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: var(--contrast-color);
 }

 @media (max-width: 768px) {
     .call-to-action h2 {
         font-size: 2.2rem;
     }
 }

 .call-to-action p {
     font-size: 1.1rem;
     margin-bottom: 2.5rem;
     color: color-mix(in srgb, var(--contrast-color), transparent 15%);
     line-height: 1.6;
 }

 .call-to-action .cta-buttons {
     display: flex;
     gap: 1rem;
     justify-content: center;
     margin-bottom: 3rem;
 }

 @media (max-width: 576px) {
     .call-to-action .cta-buttons {
         flex-direction: column;
         align-items: center;
     }
 }

 .call-to-action .cta-buttons .btn-primary,
 .call-to-action .cta-buttons .btn-secondary {
     padding: 12px 30px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-radius: 50px;
     transition: all 0.3s ease;
     border: 2px solid transparent;
     text-decoration: none;
     display: inline-block;
 }

 .call-to-action .cta-buttons .btn-primary {
     background-color: var(--contrast-color);
     color: var(--accent-color);
     border-color: var(--contrast-color);
 }

 .call-to-action .cta-buttons .btn-primary:hover {
     background-color: transparent;
     color: var(--contrast-color);
     border-color: var(--contrast-color);
     transform: translateY(-3px);
     box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
 }

 .call-to-action .cta-buttons .btn-secondary {
     background-color: transparent;
     color: var(--contrast-color);
     border-color: var(--contrast-color);
 }

 .call-to-action .cta-buttons .btn-secondary:hover {
     background-color: var(--contrast-color);
     color: var(--accent-color);
     transform: translateY(-3px);
     box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
 }

 .call-to-action .feature-item {
     background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
     backdrop-filter: blur(10px);
     padding: 2rem 1.5rem;
     border-radius: 15px;
     margin-bottom: 2rem;
     transition: all 0.3s ease;
     border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
 }

 .call-to-action .feature-item:hover {
     transform: translateY(-10px);
     background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
     box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
 }

 .call-to-action .feature-item .icon {
     width: 70px;
     height: 70px;
     background-color: var(--contrast-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1rem;
     transition: all 0.3s ease;
 }

 .call-to-action .feature-item .icon i {
     font-size: 2rem;
     color: var(--accent-color);
 }

 .call-to-action .feature-item h4 {
     color: var(--contrast-color);
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .call-to-action .feature-item p {
     color: color-mix(in srgb, var(--contrast-color), transparent 25%);
     font-size: 0.95rem;
     margin: 0;
     line-height: 1.5;
 }

 .call-to-action .stats-section {
     background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     padding: 3rem 2rem;
     margin-top: 3rem;
     border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
 }

 @media (max-width: 768px) {
     .call-to-action .stats-section {
         padding: 2rem 1rem;
     }
 }

 .call-to-action .stat-item {
     padding: 1rem 0;
 }

 .call-to-action .stat-item .stat-number {
     display: block;
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--contrast-color);
     margin-bottom: 0.5rem;
 }

 @media (max-width: 768px) {
     .call-to-action .stat-item .stat-number {
         font-size: 2rem;
     }
 }

 .call-to-action .stat-item .stat-label {
     display: block;
     font-size: 1rem;
     color: color-mix(in srgb, var(--contrast-color), transparent 25%);
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 @media (max-width: 992px) {
     .call-to-action .feature-item {
         margin-bottom: 1.5rem;
     }
 }

 @media (max-width: 768px) {
     .call-to-action {
         padding: 80px 0;
     }

     .call-to-action .stats-section {
         margin-top: 2rem;
     }
 }

 /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
 .about .content h2 {
     font-weight: 300;
     font-size: 2.5rem;
     line-height: 1.3;
     margin-bottom: 1.5rem;
 }

 @media (max-width: 768px) {
     .about .content h2 {
         font-size: 2rem;
     }
 }

 .about .content .lead {
     font-size: 1.125rem;
     font-weight: 300;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     line-height: 1.7;
 }

 .about .content p {
     line-height: 1.8;
     color: color-mix(in srgb, var(--default-color), transparent 15%);
 }

 .about .stat-item {
     padding: 1.5rem 0;
 }

 .about .stat-item .stat-number {
     font-size: 2.5rem;
     font-weight: 300;
     color: var(--accent-color);
     margin-bottom: 0.5rem;
     line-height: 1;
 }

 .about .stat-item .stat-label {
     font-size: 0.875rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .about .btn-learn-more {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     padding: 0;
     background: none;
     border: none;
     color: var(--accent-color);
     font-size: 1rem;
     font-weight: 400;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .about .btn-learn-more span {
     border-bottom: 1px solid transparent;
     padding-bottom: 2px;
     transition: border-color 0.3s ease;
 }

 .about .btn-learn-more i {
     font-size: 1.125rem;
     transition: transform 0.3s ease;
 }

 .about .btn-learn-more:hover {
     color: var(--accent-color);
 }

 .about .btn-learn-more:hover span {
     border-bottom-color: var(--accent-color);
 }

 .about .btn-learn-more:hover i {
     transform: translateX(4px);
 }

 .about .image-stack {
     position: relative;
 }

 .about .image-stack .image-main {
     position: relative;
     z-index: 1;
 }

 .about .image-stack .image-main img {
     border-radius: 8px;
     box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .about .image-stack .image-overlay {
     position: absolute;
     bottom: -40px;
     right: -40px;
     z-index: 2;
     max-width: 200px;
 }

 @media (max-width: 768px) {
     .about .image-stack .image-overlay {
         bottom: -20px;
         right: -20px;
         max-width: 150px;
     }
 }

 .about .image-stack .image-overlay img {
     border-radius: 8px;
     border: 4px solid var(--background-color);
     box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
 }

 .about .feature-item {
     padding: 2.5rem 1.5rem;
     transition: transform 0.3s ease;
 }

 .about .feature-item:hover {
     transform: translateY(-5px);
 }

 .about .feature-item .feature-icon {
     width: 80px;
     height: 80px;
     margin: 0 auto 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     background: color-mix(in srgb, var(--accent-color), transparent 90%);
     border-radius: 50%;
     transition: all 0.3s ease;
 }

 .about .feature-item .feature-icon i {
     font-size: 2rem;
     color: var(--accent-color);
     transition: all 0.3s ease;
 }

 .about .feature-item h5 {
     font-size: 1.125rem;
     font-weight: 400;
     margin-bottom: 1rem;
     color: var(--heading-color);
 }

 .about .feature-item p {
     font-size: 0.875rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 25%);
     margin: 0;
 }

 .about .feature-item:hover .feature-icon {
     background: var(--accent-color);
     transform: scale(1.05);
 }

 .about .feature-item:hover .feature-icon i {
     color: var(--contrast-color);
 }

 @media (max-width: 768px) {
     .about {
         padding: 40px 0;
     }

     .about .image-stack {
         margin-top: 3rem;
     }

     .about .stat-item {
         padding: 1rem 0;
     }

     .about .stat-item .stat-number {
         font-size: 2rem;
     }
 }

 /*--------------------------------------------------------------
# Travel Destinations Section
--------------------------------------------------------------*/
 .travel-destinations .filter-tabs {
     text-align: center;
     margin-bottom: 40px;
 }

 .travel-destinations .filter-tabs .destination-filters {
     display: inline-flex;
     background: var(--surface-color);
     border-radius: 50px;
     padding: 8px;
     box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
     list-style: none;
     margin: 0;
     gap: 4px;
 }

 @media (max-width: 768px) {
     .travel-destinations .filter-tabs .destination-filters {
         flex-wrap: wrap;
         border-radius: 20px;
         padding: 6px;
         gap: 2px;
     }
 }

 .travel-destinations .filter-tabs .destination-filters li {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     cursor: pointer;
     font-size: 14px;
     font-weight: 500;
     padding: 10px 20px;
     border-radius: 40px;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 @media (max-width: 768px) {
     .travel-destinations .filter-tabs .destination-filters li {
         padding: 8px 16px;
         font-size: 13px;
     }
 }

 .travel-destinations .filter-tabs .destination-filters li:hover,
 .travel-destinations .filter-tabs .destination-filters li.filter-active {
     color: var(--contrast-color);
     background: var(--accent-color);
     transform: translateY(-1px);
 }

 .travel-destinations .destination-grid .destination-overlay {
     position: relative;
     overflow: hidden;
     border-radius: 16px;
     height: 100%;
     cursor: pointer;
 }

 .travel-destinations .destination-grid .destination-overlay img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .travel-destinations .destination-grid .destination-overlay::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, color-mix(in srgb, var(--default-color), transparent 70%) 0%, color-mix(in srgb, var(--default-color), transparent 40%) 100%);
     transition: all 0.3s ease;
     z-index: 1;
 }

 .travel-destinations .destination-grid .destination-overlay:hover img {
     transform: scale(1.05);
 }

 .travel-destinations .destination-grid .destination-overlay:hover::before {
     background: linear-gradient(135deg, color-mix(in srgb, var(--default-color), transparent 80%) 0%, color-mix(in srgb, var(--default-color), transparent 50%) 100%);
 }

 .travel-destinations .destination-grid .destination-overlay:hover .overlay-content {
     transform: translateY(-8px);
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 24px;
     z-index: 2;
     transition: transform 0.3s ease;
     color: #fff;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper {
     margin-bottom: 16px;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag {
     display: inline-block;
     padding: 6px 16px;
     border-radius: 20px;
     font-size: 11px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.featured {
     background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.popular {
     background: linear-gradient(135deg, #4ecdc4, #70e2d9);
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.adventure {
     background: linear-gradient(135deg, #ff9f43, #ffb366);
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.culture {
     background: linear-gradient(135deg, #c44569, #d76894);
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.luxury {
     background: linear-gradient(135deg, #6c5ce7, #8b7ded);
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.romantic {
     background: linear-gradient(135deg, #ff6b9d, #ff8bb5);
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.vibrant {
     background: linear-gradient(135deg, #ff9f43, #ffb366);
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.scenic {
     background: linear-gradient(135deg, #00b894, #00d2aa);
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper {
     color: white;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h3 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 8px;
     font-family: var(--heading-font);
     color: #fff;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 12px;
     font-family: var(--heading-font);
     color: #fff;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-excerpt {
     font-size: 14px;
     line-height: 1.5;
     margin-bottom: 16px;
     opacity: 0.9;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 16px;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .info-item {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 13px;
     opacity: 0.9;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .info-item i {
     font-size: 14px;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .tours-count {
     font-size: 13px;
     opacity: 0.8;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .price,
 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .price-tag {
     font-weight: 600;
     font-size: 16px;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: white;
     text-decoration: none;
     font-weight: 600;
     font-size: 14px;
     transition: all 0.3s ease;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn:hover {
     color: white;
     transform: translateX(4px);
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn i {
     transition: transform 0.3s ease;
 }

 .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn:hover i {
     transform: translateX(4px);
 }

 .travel-destinations .destination-grid .destination-large .destination-overlay {
     height: 480px;
 }

 @media (max-width: 992px) {
     .travel-destinations .destination-grid .destination-large .destination-overlay {
         height: 360px;
     }
 }

 @media (max-width: 768px) {
     .travel-destinations .destination-grid .destination-large .destination-overlay {
         height: 300px;
     }
 }

 .travel-destinations .destination-grid .destination-medium .destination-overlay {
     height: 320px;
 }

 @media (max-width: 992px) {
     .travel-destinations .destination-grid .destination-medium .destination-overlay {
         height: 280px;
     }
 }

 @media (max-width: 768px) {
     .travel-destinations .destination-grid .destination-medium .destination-overlay {
         height: 250px;
     }
 }

 .travel-destinations .destination-grid .destination-small .destination-overlay {
     height: 238px;
 }

 @media (max-width: 992px) {
     .travel-destinations .destination-grid .destination-small .destination-overlay {
         height: 200px;
     }
 }

 @media (max-width: 768px) {
     .travel-destinations .destination-grid .destination-small .destination-overlay {
         height: 180px;
     }
 }

 .travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content {
     padding: 16px;
 }

 .travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper h4 {
     font-size: 16px;
     margin-bottom: 8px;
 }

 .travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info {
     margin-bottom: 0;
 }

 .travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info .tours-count,
 .travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info .price {
     font-size: 12px;
 }

 .travel-destinations .explore-more {
     background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
     padding: 40px;
     border-radius: 20px;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .travel-destinations .explore-more h4 {
     color: var(--heading-color);
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 12px;
     font-family: var(--heading-font);
 }

 .travel-destinations .explore-more p {
     color: color-mix(in srgb, var(--default-color), transparent 25%);
     font-size: 16px;
     line-height: 1.6;
 }

 .travel-destinations .explore-more .btn-explore {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: var(--accent-color);
     color: var(--contrast-color);
     text-decoration: none;
     padding: 14px 28px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 15px;
     transition: all 0.3s ease;
 }

 .travel-destinations .explore-more .btn-explore:hover {
     background: color-mix(in srgb, var(--accent-color), transparent 15%);
     color: var(--contrast-color);
     transform: translateY(-2px);
 }

 .travel-destinations .explore-more .btn-explore:hover i {
     transform: translateX(4px);
 }

 .travel-destinations .explore-more .btn-explore i {
     transition: transform 0.3s ease;
     font-size: 16px;
 }

 @media (max-width: 768px) {
     .travel-destinations .explore-more {
         padding: 30px 20px;
     }

     .travel-destinations .explore-more h4 {
         font-size: 20px;
     }

     .travel-destinations .explore-more p {
         font-size: 15px;
     }
 }

 @media (max-width: 768px) {
     .travel-destinations .destination-grid .destination-overlay .overlay-content {
         padding: 16px;
     }

     .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h3 {
         font-size: 20px;
     }

     .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-excerpt {
         font-size: 13px;
     }
 }

 /*--------------------------------------------------------------
# Travel Destination Details Section
--------------------------------------------------------------*/
 .travel-destination-details .destination-hero {
     margin-bottom: 120px;
     position: relative;
 }

 .travel-destination-details .destination-hero .hero-content {
     text-align: center;
     margin-bottom: 60px;
 }

 .travel-destination-details .destination-hero .hero-content .destination-name {
     font-size: 3.5rem;
     font-weight: 300;
     color: var(--heading-color);
     margin-bottom: 20px;
     letter-spacing: -0.02em;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-hero .hero-content .destination-name {
         font-size: 2.5rem;
     }
 }

 .travel-destination-details .destination-hero .hero-content .destination-tagline {
     font-size: 1.25rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     font-weight: 300;
     letter-spacing: 0.1em;
     text-transform: uppercase;
 }

 .travel-destination-details .destination-hero .hero-image {
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
 }

 .travel-destination-details .destination-hero .hero-image img {
     width: 100%;
     height: 500px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-hero .hero-image img {
         height: 350px;
     }
 }

 .travel-destination-details .destination-hero .hero-image:hover img {
     transform: scale(1.02);
 }

 .travel-destination-details .destination-overview {
     margin-bottom: 120px;
 }

 .travel-destination-details .destination-overview .overview-content h2 {
     font-size: 2.5rem;
     font-weight: 300;
     margin-bottom: 40px;
     line-height: 1.3;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-overview .overview-content h2 {
         font-size: 2rem;
     }
 }

 .travel-destination-details .destination-overview .overview-content p {
     font-size: 1.125rem;
     line-height: 1.8;
     margin-bottom: 30px;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
 }

 .travel-destination-details .destination-overview .overview-content p:last-child {
     margin-bottom: 0;
 }

 .travel-destination-details .destination-overview .overview-image {
     border-radius: 8px;
     overflow: hidden;
 }

 .travel-destination-details .destination-overview .overview-image img {
     width: 100%;
     height: 400px;
     object-fit: cover;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-overview .overview-image img {
         height: 300px;
     }
 }

 .travel-destination-details .destination-highlights {
     margin-bottom: 120px;
 }

 .travel-destination-details .destination-highlights .section-header {
     text-align: center;
     margin-bottom: 80px;
 }

 .travel-destination-details .destination-highlights .section-header h2 {
     font-size: 2.5rem;
     font-weight: 300;
     margin-bottom: 20px;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-highlights .section-header h2 {
         font-size: 2rem;
     }
 }

 .travel-destination-details .destination-highlights .section-header p {
     font-size: 1.125rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     max-width: 600px;
     margin: 0 auto;
 }

 .travel-destination-details .destination-highlights .highlight-item {
     height: 100%;
 }

 .travel-destination-details .destination-highlights .highlight-item .highlight-image {
     margin-bottom: 30px;
     border-radius: 8px;
     overflow: hidden;
 }

 .travel-destination-details .destination-highlights .highlight-item .highlight-image img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .travel-destination-details .destination-highlights .highlight-item .highlight-image:hover img {
     transform: scale(1.05);
 }

 .travel-destination-details .destination-highlights .highlight-item .highlight-content h4 {
     font-size: 1.5rem;
     font-weight: 400;
     margin-bottom: 15px;
 }

 .travel-destination-details .destination-highlights .highlight-item .highlight-content p {
     font-size: 1rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
 }

 .travel-destination-details .available-tours {
     margin-bottom: 120px;
 }

 .travel-destination-details .available-tours .section-header {
     text-align: center;
     margin-bottom: 80px;
 }

 .travel-destination-details .available-tours .section-header h2 {
     font-size: 2.5rem;
     font-weight: 300;
     margin-bottom: 20px;
 }

 @media (max-width: 768px) {
     .travel-destination-details .available-tours .section-header h2 {
         font-size: 2rem;
     }
 }

 .travel-destination-details .available-tours .section-header p {
     font-size: 1.125rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .travel-destination-details .available-tours .tour-card {
     background: var(--surface-color);
     border-radius: 8px;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     height: 100%;
 }

 .travel-destination-details .available-tours .tour-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .travel-destination-details .available-tours .tour-card .tour-image {
     position: relative;
     overflow: hidden;
 }

 .travel-destination-details .available-tours .tour-card .tour-image img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .travel-destination-details .available-tours .tour-card .tour-image .tour-duration {
     position: absolute;
     top: 20px;
     right: 20px;
     background: color-mix(in srgb, var(--accent-color), transparent 10%);
     color: var(--contrast-color);
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.875rem;
     font-weight: 500;
 }

 .travel-destination-details .available-tours .tour-card .tour-image:hover img {
     transform: scale(1.1);
 }

 .travel-destination-details .available-tours .tour-card .tour-content {
     padding: 30px;
 }

 .travel-destination-details .available-tours .tour-card .tour-content h4 {
     font-size: 1.375rem;
     font-weight: 500;
     margin-bottom: 15px;
 }

 .travel-destination-details .available-tours .tour-card .tour-content p {
     font-size: 1rem;
     line-height: 1.6;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     margin-bottom: 25px;
 }

 .travel-destination-details .available-tours .tour-card .tour-content .tour-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 25px;
 }

 .travel-destination-details .available-tours .tour-card .tour-content .tour-meta .tour-price {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--accent-color);
 }

 .travel-destination-details .available-tours .tour-card .tour-content .tour-meta .tour-rating {
     display: flex;
     align-items: center;
     gap: 5px;
     color: #ffc107;
 }

 .travel-destination-details .available-tours .tour-card .tour-content .tour-meta .tour-rating span {
     color: var(--default-color);
     font-weight: 500;
 }

 .travel-destination-details .available-tours .tour-card .tour-content .btn-tour {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: var(--accent-color);
     font-weight: 500;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .travel-destination-details .available-tours .tour-card .tour-content .btn-tour:hover {
     color: var(--heading-color);
     gap: 12px;
 }

 .travel-destination-details .available-tours .tour-card .tour-content .btn-tour i {
     transition: transform 0.3s ease;
 }

 .travel-destination-details .available-tours .tour-card .tour-content .btn-tour:hover i {
     transform: translateX(3px);
 }

 .travel-destination-details .practical-info {
     margin-bottom: 120px;
 }

 .travel-destination-details .practical-info .section-header {
     text-align: center;
     margin-bottom: 80px;
 }

 .travel-destination-details .practical-info .section-header h2 {
     font-size: 2.5rem;
     font-weight: 300;
     margin-bottom: 20px;
 }

 @media (max-width: 768px) {
     .travel-destination-details .practical-info .section-header h2 {
         font-size: 2rem;
     }
 }

 .travel-destination-details .practical-info .section-header p {
     font-size: 1.125rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .travel-destination-details .practical-info .info-grid {
     display: flex;
     flex-direction: column;
     gap: 40px;
 }

 .travel-destination-details .practical-info .info-item {
     display: flex;
     gap: 20px;
 }

 .travel-destination-details .practical-info .info-item .info-icon {
     flex-shrink: 0;
     width: 60px;
     height: 60px;
     background: color-mix(in srgb, var(--accent-color), transparent 90%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--accent-color);
     font-size: 1.5rem;
 }

 .travel-destination-details .practical-info .info-item .info-content h5 {
     font-size: 1.25rem;
     font-weight: 500;
     margin-bottom: 15px;
 }

 .travel-destination-details .practical-info .info-item .info-content p {
     font-size: 1rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     margin-bottom: 0;
 }

 .travel-destination-details .destination-gallery {
     margin-bottom: 120px;
 }

 .travel-destination-details .destination-gallery .section-header {
     text-align: center;
     margin-bottom: 80px;
 }

 .travel-destination-details .destination-gallery .section-header h2 {
     font-size: 2.5rem;
     font-weight: 300;
     margin-bottom: 20px;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-gallery .section-header h2 {
         font-size: 2rem;
     }
 }

 .travel-destination-details .destination-gallery .section-header p {
     font-size: 1.125rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .travel-destination-details .destination-gallery .gallery-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     grid-template-rows: auto auto;
     gap: 20px;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-gallery .gallery-grid {
         grid-template-columns: 1fr;
         grid-template-rows: auto;
     }
 }

 .travel-destination-details .destination-gallery .gallery-grid .gallery-item {
     border-radius: 8px;
     overflow: hidden;
     position: relative;
 }

 .travel-destination-details .destination-gallery .gallery-grid .gallery-item.large {
     grid-row: span 2;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-gallery .gallery-grid .gallery-item.large {
         grid-row: span 1;
     }
 }

 .travel-destination-details .destination-gallery .gallery-grid .gallery-item a {
     display: block;
     height: 100%;
 }

 .travel-destination-details .destination-gallery .gallery-grid .gallery-item a img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-gallery .gallery-grid .gallery-item a img {
         height: 250px;
     }
 }

 .travel-destination-details .destination-gallery .gallery-grid .gallery-item a:hover img {
     transform: scale(1.05);
 }

 .travel-destination-details .destination-cta {
     text-align: center;
     padding: 80px 0;
     background: color-mix(in srgb, var(--accent-color), transparent 95%);
     border-radius: 8px;
     margin-bottom: 60px;
 }

 .travel-destination-details .destination-cta .cta-content {
     max-width: 600px;
     margin: 0 auto;
 }

 .travel-destination-details .destination-cta .cta-content h2 {
     font-size: 2.5rem;
     font-weight: 300;
     margin-bottom: 25px;
 }

 @media (max-width: 768px) {
     .travel-destination-details .destination-cta .cta-content h2 {
         font-size: 2rem;
     }
 }

 .travel-destination-details .destination-cta .cta-content p {
     font-size: 1.125rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     margin-bottom: 40px;
 }

 .travel-destination-details .destination-cta .cta-content .cta-actions {
     display: flex;
     gap: 20px;
     justify-content: center;
 }

 @media (max-width: 576px) {
     .travel-destination-details .destination-cta .cta-content .cta-actions {
         flex-direction: column;
         align-items: center;
     }
 }

 .travel-destination-details .destination-cta .cta-content .cta-actions .btn-primary,
 .travel-destination-details .destination-cta .cta-content .cta-actions .btn-outline {
     padding: 15px 35px;
     font-size: 1.125rem;
     font-weight: 500;
     border-radius: 6px;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
 }

 .travel-destination-details .destination-cta .cta-content .cta-actions .btn-primary {
     background: var(--accent-color);
     color: var(--contrast-color);
     border: 2px solid var(--accent-color);
 }

 .travel-destination-details .destination-cta .cta-content .cta-actions .btn-primary:hover {
     background: transparent;
     color: var(--accent-color);
 }

 .travel-destination-details .destination-cta .cta-content .cta-actions .btn-outline {
     background: transparent;
     color: var(--accent-color);
     border: 2px solid var(--accent-color);
 }

 .travel-destination-details .destination-cta .cta-content .cta-actions .btn-outline:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
 }

 /*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
 .travel-tours {
     color: var(--default-color);
 }

 .travel-tours .hero-title {
     font-size: 3.5rem;
     font-weight: 300;
     color: var(--heading-color);
     margin-bottom: 1.5rem;
     line-height: 1.2;
 }

 @media (max-width: 768px) {
     .travel-tours .hero-title {
         font-size: 2.5rem;
     }
 }

 .travel-tours .hero-description {
     font-size: 1.25rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     margin-bottom: 0;
 }

 .travel-tours .search-container {
     background: var(--surface-color);
     border-radius: 60px;
     padding: 1rem;
     box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
 }

 .travel-tours .search-container .search-bar {
     position: relative;
     margin-bottom: 1.5rem;
 }

 .travel-tours .search-container .search-bar .form-control {
     border: none;
     background: transparent;
     font-size: 1.125rem;
     padding: 1.25rem 4rem 1.25rem 1.5rem;
     color: var(--default-color);
 }

 .travel-tours .search-container .search-bar .form-control:focus {
     box-shadow: none;
     background: transparent;
 }

 .travel-tours .search-container .search-bar .form-control::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 60%);
 }

 .travel-tours .search-container .search-bar .search-btn {
     position: absolute;
     right: 0.75rem;
     top: 50%;
     transform: translateY(-50%);
     background: var(--accent-color);
     border: none;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     color: var(--contrast-color);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .travel-tours .search-container .search-bar .search-btn:hover {
     transform: translateY(-50%) scale(1.05);
     background: color-mix(in srgb, var(--accent-color), #000 10%);
 }

 .travel-tours .search-container .search-bar .search-btn i {
     font-size: 1.25rem;
 }

 .travel-tours .search-container .filter-pills {
     display: flex;
     gap: 0.75rem;
     flex-wrap: wrap;
     justify-content: center;
 }

 .travel-tours .search-container .filter-pills .filter-pill {
     background: transparent;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     padding: 0.75rem 1.5rem;
     border-radius: 30px;
     color: var(--default-color);
     font-weight: 500;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .travel-tours .search-container .filter-pills .filter-pill:hover,
 .travel-tours .search-container .filter-pills .filter-pill.active {
     background: var(--accent-color);
     border-color: var(--accent-color);
     color: var(--contrast-color);
     transform: translateY(-1px);
 }

 .travel-tours .featured-hero-tour {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     background: var(--surface-color);
     border-radius: 20px;
     overflow: hidden;
     padding: 3rem;
 }

 @media (max-width: 992px) {
     .travel-tours .featured-hero-tour {
         grid-template-columns: 1fr;
         gap: 2rem;
         padding: 2rem;
     }
 }

 .travel-tours .featured-hero-tour .featured-image img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 12px;
 }

 @media (max-width: 992px) {
     .travel-tours .featured-hero-tour .featured-image img {
         height: 300px;
     }
 }

 .travel-tours .featured-hero-tour .featured-content .featured-badge {
     display: inline-block;
     background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
     color: var(--contrast-color);
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.875rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
 }

 .travel-tours .featured-hero-tour .featured-content h3 {
     font-size: 2.5rem;
     font-weight: 300;
     color: var(--heading-color);
     margin-bottom: 1.5rem;
     line-height: 1.3;
 }

 @media (max-width: 768px) {
     .travel-tours .featured-hero-tour .featured-content h3 {
         font-size: 2rem;
     }
 }

 .travel-tours .featured-hero-tour .featured-content p {
     font-size: 1.125rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 25%);
     margin-bottom: 2rem;
 }

 .travel-tours .featured-hero-tour .featured-content .featured-meta {
     display: flex;
     gap: 2rem;
     margin-bottom: 1.5rem;
     flex-wrap: wrap;
 }

 .travel-tours .featured-hero-tour .featured-content .featured-meta span {
     font-size: 0.95rem;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     font-weight: 500;
 }

 .travel-tours .featured-hero-tour .featured-content .featured-meta span.rating {
     color: var(--accent-color);
 }

 .travel-tours .featured-hero-tour .featured-content .featured-meta span.rating i {
     font-size: 0.875rem;
     margin-right: 0.25rem;
 }

 .travel-tours .featured-hero-tour .featured-content .featured-price {
     margin-bottom: 2rem;
 }

 .travel-tours .featured-hero-tour .featured-content .featured-price .from {
     font-size: 1rem;
     color: color-mix(in srgb, var(--default-color), transparent 50%);
 }

 .travel-tours .featured-hero-tour .featured-content .featured-price .amount {
     font-size: 2.5rem;
     font-weight: 300;
     color: var(--accent-color);
     margin-left: 0.5rem;
 }

 .travel-tours .featured-hero-tour .featured-content .featured-actions {
     display: flex;
     gap: 1.5rem;
     align-items: center;
 }

 @media (max-width: 576px) {
     .travel-tours .featured-hero-tour .featured-content .featured-actions {
         flex-direction: column;
         align-items: stretch;
     }
 }

 .travel-tours .section-subtitle {
     font-size: 2rem;
     font-weight: 300;
     color: var(--heading-color);
     margin-bottom: 3rem;
     text-align: center;
 }

 .travel-tours .categories-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 1.5rem;
 }

 .travel-tours .categories-grid .category-item {
     text-align: center;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .travel-tours .categories-grid .category-item:hover {
     transform: translateY(-5px);
 }

 .travel-tours .categories-grid .category-item:hover .category-visual img {
     transform: scale(1.05);
 }

 .travel-tours .categories-grid .category-item .category-visual {
     margin-bottom: 1.5rem;
     border-radius: 12px;
     overflow: hidden;
     aspect-ratio: 1;
 }

 .travel-tours .categories-grid .category-item .category-visual img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .travel-tours .categories-grid .category-item h5 {
     font-size: 1.25rem;
     font-weight: 500;
     color: var(--heading-color);
     margin-bottom: 0.5rem;
 }

 .travel-tours .categories-grid .category-item .tour-count {
     font-size: 0.95rem;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
 }

 .travel-tours .tours-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 2rem;
 }

 .travel-tours .tours-header .view-toggle {
     display: flex;
     gap: 0.5rem;
 }

 .travel-tours .tours-header .view-toggle .toggle-btn {
     padding: 0.75rem;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     background: transparent;
     border-radius: 8px;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     transition: all 0.3s ease;
 }

 .travel-tours .tours-header .view-toggle .toggle-btn.active,
 .travel-tours .tours-header .view-toggle .toggle-btn:hover {
     background: var(--accent-color);
     border-color: var(--accent-color);
     color: var(--contrast-color);
 }

 .travel-tours .tours-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .travel-tours .tours-grid .tour-item {
     background: var(--surface-color);
     border-radius: 16px;
     overflow: hidden;
     transition: all 0.4s ease;
     cursor: pointer;
 }

 .travel-tours .tours-grid .tour-item:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
 }

 .travel-tours .tours-grid .tour-item:hover .tour-image img {
     transform: scale(1.03);
 }

 .travel-tours .tours-grid .tour-item .tour-image {
     position: relative;
     overflow: hidden;
 }

 .travel-tours .tours-grid .tour-item .tour-image img {
     width: 100%;
     height: 240px;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .travel-tours .tours-grid .tour-item .tour-image .tour-availability {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: color-mix(in srgb, var(--contrast-color), transparent 10%);
     backdrop-filter: blur(10px);
     color: var(--default-color);
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.875rem;
     font-weight: 500;
 }

 .travel-tours .tours-grid .tour-item .tour-details {
     padding: 2rem;
 }

 .travel-tours .tours-grid .tour-item .tour-details h4 {
     font-size: 1.375rem;
     font-weight: 500;
     color: var(--heading-color);
     margin-bottom: 1rem;
     line-height: 1.4;
 }

 .tour-detail.tour-detail-2.over-view-text h2,
 .tour-detail.tour-detail-2 h3 {
     font-size: 1.2rem;
     font-weight: 600;
     color: var(--heading-color);
     margin: 1.5rem 0 0.8rem;
     line-height: 1.4;
 }

 .travel-tours .tours-grid .tour-item .tour-details p {
     color: color-mix(in srgb, var(--default-color), transparent 25%);
     line-height: 1.6;
     margin-bottom: 1.5rem;
 }

 .travel-tours .tours-grid .tour-item .tour-details .tour-highlights {
     display: flex;
     gap: 1rem;
     margin-bottom: 1.5rem;
     flex-wrap: wrap;
 }

 .travel-tours .tours-grid .tour-item .tour-details .tour-highlights span {
     font-size: 0.9rem;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     display: flex;
     align-items: center;
     gap: 0.25rem;
 }

 .travel-tours .tours-grid .tour-item .tour-details .tour-highlights span i {
     color: var(--accent-color);
     font-size: 0.875rem;
 }

 .travel-tours .tours-grid .tour-item .tour-details .tour-pricing {
     display: flex;
     align-items: baseline;
     gap: 0.5rem;
 }

 .travel-tours .tours-grid .tour-item .tour-details .tour-pricing .price {
     font-size: 1.75rem;
     font-weight: 500;
     color: var(--accent-color);
 }

 .travel-tours .tours-grid .tour-item .tour-details .tour-pricing .per {
     font-size: 0.95rem;
     color: color-mix(in srgb, var(--default-color), transparent 50%);
 }

 .travel-tours .offers-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 2rem;
 }

 .travel-tours .offers-container .offer-card {
     background: var(--surface-color);
     border-radius: 20px;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .travel-tours .offers-container .offer-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .travel-tours .offers-container .offer-card .offer-image {
     height: 200px;
     overflow: hidden;
 }

 .travel-tours .offers-container .offer-card .offer-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .travel-tours .offers-container .offer-card .offer-content {
     padding: 2rem;
 }

 .travel-tours .offers-container .offer-card .offer-content .offer-tag {
     display: inline-block;
     background: var(--accent-color);
     color: var(--contrast-color);
     padding: 0.5rem 1rem;
     border-radius: 15px;
     font-size: 0.875rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .travel-tours .offers-container .offer-card .offer-content h4 {
     font-size: 1.5rem;
     font-weight: 500;
     color: var(--heading-color);
     margin-bottom: 1rem;
 }

 .travel-tours .offers-container .offer-card .offer-content p {
     color: color-mix(in srgb, var(--default-color), transparent 25%);
     line-height: 1.6;
     margin-bottom: 1.5rem;
 }

 .travel-tours .offers-container .offer-card .offer-content .offer-validity {
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
 }

 .travel-tours .consultation-cta {
     text-align: center;
     background: var(--surface-color);
     padding: 4rem 3rem;
     border-radius: 20px;
 }

 .travel-tours .consultation-cta h3 {
     font-size: 2.25rem;
     font-weight: 300;
     color: var(--heading-color);
     margin-bottom: 1.5rem;
 }

 .travel-tours .consultation-cta p {
     font-size: 1.125rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 25%);
     margin-bottom: 2.5rem;
     max-width: 500px;
     margin-left: auto;
     margin-right: auto;
 }

 .travel-tours .consultation-cta .cta-actions {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
     align-items: center;
 }

 @media (max-width: 576px) {
     .travel-tours .consultation-cta .cta-actions {
         flex-direction: column;
     }
 }

 .travel-tours .btn-primary {
     background: var(--accent-color);
     border: none;
     color: var(--contrast-color);
     padding: 1rem 2rem;
     border-radius: 12px;
     font-weight: 500;
     font-size: 1rem;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .travel-tours .btn-primary:hover {
     background: color-mix(in srgb, var(--accent-color), #000 10%);
     transform: translateY(-2px);
     color: var(--contrast-color);
 }

 .travel-tours .btn-accent {
     background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
     border: none;
     color: var(--contrast-color);
     padding: 0.875rem 1.75rem;
     border-radius: 12px;
     font-weight: 500;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .travel-tours .btn-accent:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
     color: var(--contrast-color);
 }

 .travel-tours .btn-text {
     background: transparent;
     border: none;
     color: var(--accent-color);
     font-weight: 500;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
 }

 .travel-tours .btn-text::after {
     content: "";
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 1px;
     background: var(--accent-color);
     transition: width 0.3s ease;
 }

 .travel-tours .btn-text:hover {
     color: color-mix(in srgb, var(--accent-color), #000 15%);
 }

 .travel-tours .btn-text:hover::after {
     width: 100%;
 }

 /*--------------------------------------------------------------
# Travel Tour Details Section
--------------------------------------------------------------*/
 .travel-tour-details .tour-hero {
     margin-bottom: 80px;
 }

 .travel-tour-details .tour-hero .hero-image-wrapper {
     position: relative;
     border-radius: 24px;
     overflow: hidden;
     height: 70vh;
     min-height: 500px;
 }

 @media (max-width: 768px) {
     .travel-tour-details .tour-hero .hero-image-wrapper {
         height: 60vh;
         min-height: 400px;
         border-radius: 16px;
     }
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
     display: flex;
     align-items: flex-end;
     padding: 60px;
 }

 @media (max-width: 768px) {
     .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay {
         padding: 40px 30px;
     }
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content {
     color: var(--contrast-color);
     max-width: 600px;
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .tour-type {
     display: inline-block;
     background: color-mix(in srgb, var(--contrast-color), transparent 80%);
     color: var(--contrast-color);
     padding: 8px 20px;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 500;
     margin-bottom: 16px;
     backdrop-filter: blur(10px);
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
     font-size: 3.5rem;
     font-weight: 300;
     color: var(--contrast-color);
     margin-bottom: 16px;
     line-height: 1.1;
 }

 @media (max-width: 768px) {
     .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
         font-size: 2.4rem;
     }
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
     font-size: 1.2rem;
     margin-bottom: 24px;
     opacity: 0.9;
     line-height: 1.5;
 }

 @media (max-width: 768px) {
     .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
         font-size: 1rem;
     }
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
     display: flex;
     gap: 32px;
     flex-wrap: wrap;
 }

 @media (max-width: 576px) {
     .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
         gap: 20px;
     }
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.9rem;
     font-weight: 500;
 }

 .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item i {
     font-size: 1rem;
     opacity: 0.8;
 }

 .travel-tour-details .tour-essence {
     margin-bottom: 100px;
 }

 @media (max-width: 992px) {
     .travel-tour-details .tour-essence {
         margin-bottom: 80px;
     }
 }

 .travel-tour-details .tour-essence .essence-content h2 {
     font-size: 2.5rem;
     font-weight: 300;
     color: var(--heading-color);
     margin-bottom: 24px;
     line-height: 1.2;
 }

 @media (max-width: 768px) {
     .travel-tour-details .tour-essence .essence-content h2 {
         font-size: 2rem;
     }
 }

 .travel-tour-details .tour-essence .essence-content p {
     font-size: 1.1rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     margin-bottom: 40px;
 }

 .travel-tour-details .tour-essence .essence-content .highlights-compact {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
 }

 @media (max-width: 576px) {
     .travel-tour-details .tour-essence .essence-content .highlights-compact {
         grid-template-columns: 1fr;
     }
 }

 .travel-tour-details .tour-essence .essence-content .highlights-compact .highlight-item {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 0.95rem;
     color: var(--default-color);
 }

 .travel-tour-details .tour-essence .essence-content .highlights-compact .highlight-item i {
     color: var(--accent-color);
     font-size: 1.1rem;
     flex-shrink: 0;
 }

 .travel-tour-details .tour-essence .pricing-card {
     background: var(--surface-color);
     padding: 40px;
     border-radius: 20px;
     text-align: center;
     box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
 }

 @media (max-width: 992px) {
     .travel-tour-details .tour-essence .pricing-card {
         margin-top: 40px;
     }
 }

 .travel-tour-details .tour-essence .pricing-card .price-header {
     margin-bottom: 12px;
 }

 .travel-tour-details .tour-essence .pricing-card .price-header .price-label {
     display: block;
     font-size: 0.9rem;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     margin-bottom: 8px;
 }

 .travel-tour-details .tour-essence .pricing-card .price-header .price-amount {
     font-size: 3rem;
     font-weight: 300;
     color: var(--accent-color);
 }

 .travel-tour-details .tour-essence .pricing-card .price-description {
     font-size: 0.85rem;
     color: color-mix(in srgb, var(--default-color), transparent 50%);
     margin-bottom: 32px;
 }

 .travel-tour-details .tour-essence .pricing-card .btn-reserve {
     display: inline-block;
     background: var(--accent-color);
     color: var(--contrast-color);
     padding: 16px 32px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .travel-tour-details .tour-essence .pricing-card .btn-reserve:hover {
     background: color-mix(in srgb, var(--accent-color), black 15%);
     color: var(--contrast-color);
     transform: translateY(-2px);
 }

 .travel-tour-details .tour-essence .pricing-card .booking-notes {
     margin-top: 20px;
     padding-top: 20px;
     border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .travel-tour-details .tour-essence .pricing-card .booking-notes span {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     font-size: 0.85rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .travel-tour-details .tour-essence .pricing-card .booking-notes span i {
     color: var(--accent-color);
 }

 .travel-tour-details .journey-timeline {
     margin-bottom: 100px;
 }

 @media (max-width: 992px) {
     .travel-tour-details .journey-timeline {
         margin-bottom: 80px;
     }
 }

 .travel-tour-details .journey-timeline h2 {
     font-size: 2.2rem;
     font-weight: 300;
     color: var(--heading-color);
     text-align: center;
     margin-bottom: 60px;
 }

 .journey-so-far-year.change-color {
     color: #2755b0;
     border-color: #2755b0;
 }

 .travel-tour-details .journey-timeline .timeline-wrapper {
     position: relative;
     max-width: 800px;
     margin: 0 auto;
 }

 .travel-tour-details .journey-timeline .timeline-wrapper::before {
     content: "";
     position: absolute;
     left: 25px;
     top: 40px;
     bottom: 40px;
     width: 2px;
     background: color-mix(in srgb, var(--accent-color), transparent 80%);
 }

 @media (max-width: 768px) {
     .travel-tour-details .journey-timeline .timeline-wrapper::before {
         left: 22px;
     }
 }

 .travel-tour-details .journey-timeline .timeline-item {
     position: relative;
     margin-bottom: 50px;
     display: flex;
     gap: 40px;
 }

 @media (max-width: 768px) {
     .travel-tour-details .journey-timeline .timeline-item {
         gap: 30px;
         margin-bottom: 40px;
     }
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-marker {
     position: relative;
     z-index: 1;
     flex-shrink: 0;
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-marker .day-number {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 50px;
     height: 50px;
     background: var(--accent-color);
     color: var(--contrast-color);
     border-radius: 50%;
     font-weight: 600;
     font-size: 0.9rem;
 }

 @media (max-width: 768px) {
     .travel-tour-details .journey-timeline .timeline-item .timeline-marker .day-number {
         width: 44px;
         height: 44px;
     }
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-content {
     background: var(--surface-color);
     padding: 32px;
     border-radius: 16px;
     flex-grow: 1;
 }

 @media (max-width: 768px) {
     .travel-tour-details .journey-timeline .timeline-item .timeline-content {
         padding: 24px;
     }
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-content .day-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 16px;
 }

 @media (max-width: 576px) {
     .travel-tour-details .journey-timeline .timeline-item .timeline-content .day-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 4px;
     }
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-content .day-header h3 {
     font-size: 1.3rem;
     font-weight: 500;
     color: var(--heading-color);
     margin: 0;
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-content .day-header .location {
     font-size: 0.85rem;
     color: var(--accent-color);
     font-weight: 500;
     background: color-mix(in srgb, var(--accent-color), transparent 90%);
     padding: 4px 12px;
     border-radius: 12px;
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-content p {
     font-size: 0.95rem;
     line-height: 1.6;
     color: color-mix(in srgb, var(--default-color), transparent 10%);
     margin-bottom: 16px;
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-content .day-features {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
 }

 .travel-tour-details .journey-timeline .timeline-item .timeline-content .day-features .feature-tag {
     font-size: 0.75rem;
     background: color-mix(in srgb, var(--default-color), transparent 92%);
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     padding: 4px 10px;
     border-radius: 8px;
 }

 .travel-tour-details .inclusions-overview {
     margin-bottom: 100px;
 }

 @media (max-width: 992px) {
     .travel-tour-details .inclusions-overview {
         margin-bottom: 80px;
     }
 }

 .travel-tour-details .inclusions-overview .included-section h3,
 .travel-tour-details .inclusions-overview .not-included-section h3 {
     font-size: 1.4rem;
     font-weight: 500;
     color: var(--heading-color);
     margin-bottom: 32px;
 }

 .travel-tour-details .inclusions-overview .inclusion-list .inclusion-item,
 .travel-tour-details .inclusions-overview .inclusion-list .exclusion-item,
 .travel-tour-details .inclusions-overview .exclusion-list .inclusion-item,
 .travel-tour-details .inclusions-overview .exclusion-list .exclusion-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 16px;
     font-size: 0.95rem;
     line-height: 1.5;
 }

 .travel-tour-details .inclusions-overview .inclusion-list .inclusion-item i,
 .travel-tour-details .inclusions-overview .inclusion-list .exclusion-item i,
 .travel-tour-details .inclusions-overview .exclusion-list .inclusion-item i,
 .travel-tour-details .inclusions-overview .exclusion-list .exclusion-item i {
     margin-top: 2px;
     flex-shrink: 0;
 }

 .travel-tour-details .inclusions-overview .inclusion-list .inclusion-item i,
 .travel-tour-details .inclusions-overview .exclusion-list .inclusion-item i {
     color: #28a745;
 }

 .travel-tour-details .inclusions-overview .inclusion-list .exclusion-item i,
 .travel-tour-details .inclusions-overview .exclusion-list .exclusion-item i {
     color: color-mix(in srgb, var(--default-color), transparent 50%);
 }

 .travel-tour-details .booking-section {
     margin-bottom: 100px;
 }

 @media (max-width: 992px) {
     .travel-tour-details .booking-section {
         margin-bottom: 80px;
     }
 }

 .travel-tour-details .booking-section .departure-dates h3 {
     font-size: 1.8rem;
     font-weight: 400;
     color: var(--heading-color);
     margin-bottom: 40px;
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid {
     display: grid;
     gap: 16px;
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: var(--surface-color);
     padding: 24px 28px;
     border-radius: 12px;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     transition: all 0.3s ease;
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option:hover {
     border-color: var(--accent-color);
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option .date-info .month {
     display: block;
     font-size: 0.85rem;
     color: var(--accent-color);
     font-weight: 500;
     margin-bottom: 4px;
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option .date-info .dates {
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--heading-color);
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option .date-details {
     text-align: right;
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .price {
     display: block;
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--default-color);
     margin-bottom: 4px;
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability {
     font-size: 0.8rem;
     padding: 3px 8px;
     border-radius: 8px;
     font-weight: 500;
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability.available {
     background: color-mix(in srgb, #28a745, transparent 85%);
     color: #28a745;
 }

 .travel-tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability.limited {
     background: color-mix(in srgb, #ffc107, transparent 75%);
     color: #856404;
 }

 .travel-tour-details .booking-section .booking-form-card {
     background: var(--surface-color);
     padding: 40px;
     border-radius: 20px;
     position: sticky;
     top: 100px;
 }

 @media (max-width: 992px) {
     .travel-tour-details .booking-section .booking-form-card {
         margin-top: 40px;
         position: static;
     }
 }

 @media (max-width: 768px) {
     .travel-tour-details .booking-section .booking-form-card {
         padding: 30px;
     }
 }

 .travel-tour-details .booking-section .booking-form-card h3 {
     font-size: 1.4rem;
     font-weight: 500;
     color: var(--heading-color);
     margin-bottom: 32px;
     text-align: center;
 }

 .travel-tour-details .booking-section .booking-form-card .form-group {
     margin-bottom: 24px;
 }

 .travel-tour-details .booking-section .booking-form-card .form-group label {
     display: block;
     font-size: 0.9rem;
     font-weight: 500;
     color: var(--heading-color);
     margin-bottom: 8px;
 }

 .travel-tour-details .booking-section .booking-form-card .form-group .form-control {
     width: 100%;
     padding: 14px 16px;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     border-radius: 8px;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     color: var(--default-color);
     background-color: var(--surface-color);
 }

 .travel-tour-details .booking-section .booking-form-card .form-group .form-control:focus {
     border-color: var(--accent-color);
     outline: none;
 }

 .travel-tour-details .booking-section .booking-form-card .form-group .form-control::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 70%);
 }

 .travel-tour-details .booking-section .booking-form-card .btn-submit {
     width: 100%;
     background: var(--accent-color);
     color: var(--contrast-color);
     padding: 16px;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 500;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .travel-tour-details .booking-section .booking-form-card .btn-submit:hover {
     background: color-mix(in srgb, var(--accent-color), black 15%);
     transform: translateY(-2px);
 }

 .travel-tour-details .booking-section .booking-form-card .booking-assurance {
     margin-top: 24px;
     padding-top: 24px;
     border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .travel-tour-details .booking-section .booking-form-card .booking-assurance .assurance-item {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 8px;
     font-size: 0.85rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .travel-tour-details .booking-section .booking-form-card .booking-assurance .assurance-item i {
     color: var(--accent-color);
     font-size: 1rem;
 }

 .travel-tour-details .booking-section .booking-form-card .booking-assurance .assurance-item:last-child {
     margin-bottom: 0;
 }

 .travel-tour-details .visual-gallery {
     margin-bottom: 100px;
 }

 .travel-tour-details .visual-gallery h2 {
     font-size: 2rem;
     font-weight: 300;
     color: var(--heading-color);
     text-align: center;
     margin-bottom: 60px;
 }

 .travel-tour-details .visual-gallery .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     grid-template-rows: repeat(3, 200px);
     gap: 16px;
 }

 @media (max-width: 992px) {
     .travel-tour-details .visual-gallery .gallery-grid {
         grid-template-columns: repeat(3, 1fr);
         grid-template-rows: repeat(4, 180px);
     }
 }

 @media (max-width: 768px) {
     .travel-tour-details .visual-gallery .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
         grid-template-rows: repeat(6, 160px);
     }
 }

 .travel-tour-details .visual-gallery .gallery-grid .gallery-piece {
     border-radius: 12px;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .travel-tour-details .visual-gallery .gallery-grid .gallery-piece:hover {
     transform: scale(1.02);
 }

 .travel-tour-details .visual-gallery .gallery-grid .gallery-piece.large {
     grid-column: span 2;
     grid-row: span 2;
 }

 @media (max-width: 768px) {
     .travel-tour-details .visual-gallery .gallery-grid .gallery-piece.large {
         grid-column: span 2;
         grid-row: span 2;
     }
 }

 .travel-tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
     grid-column: span 2;
     grid-row: span 1;
 }

 @media (max-width: 992px) {
     .travel-tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
         grid-column: span 1;
     }
 }

 @media (max-width: 768px) {
     .travel-tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
         grid-column: span 1;
     }
 }

 .travel-tour-details .visual-gallery .gallery-grid .gallery-piece a {
     display: block;
     width: 100%;
     height: 100%;
 }

 .travel-tour-details .visual-gallery .gallery-grid .gallery-piece img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .travel-tour-details .final-call .call-content {
     background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
     color: var(--contrast-color);
     padding: 80px 60px;
     border-radius: 24px;
     text-align: center;
 }

 @media (max-width: 768px) {
     .travel-tour-details .final-call .call-content {
         padding: 60px 40px;
     }
 }

 .travel-tour-details .final-call .call-content h2 {
     font-size: 2.5rem;
     font-weight: 300;
     color: var(--contrast-color);
     margin-bottom: 16px;
 }

 @media (max-width: 768px) {
     .travel-tour-details .final-call .call-content h2 {
         font-size: 2rem;
     }
 }

 .travel-tour-details .final-call .call-content p {
     font-size: 1.2rem;
     margin-bottom: 40px;
     opacity: 0.9;
     max-width: 500px;
     margin-left: auto;
     margin-right: auto;
 }

 @media (max-width: 768px) {
     .travel-tour-details .final-call .call-content p {
         font-size: 1rem;
     }
 }

 .travel-tour-details .final-call .call-content .call-actions {
     display: flex;
     gap: 20px;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
 }

 .travel-tour-details .final-call .call-content .call-actions .btn-primary-cta,
 .travel-tour-details .final-call .call-content .call-actions .btn-contact {
     padding: 16px 32px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .travel-tour-details .final-call .call-content .call-actions .btn-primary-cta {
     background: var(--contrast-color);
     color: var(--accent-color);
 }

 .travel-tour-details .final-call .call-content .call-actions .btn-primary-cta:hover {
     background: color-mix(in srgb, var(--contrast-color), black 10%);
     color: var(--accent-color);
     transform: translateY(-2px);
 }

 .travel-tour-details .final-call .call-content .call-actions .btn-contact {
     background: transparent;
     color: var(--contrast-color);
     border: 2px solid var(--contrast-color);
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .travel-tour-details .final-call .call-content .call-actions .btn-contact:hover {
     background: var(--contrast-color);
     color: var(--accent-color);
     transform: translateY(-2px);
 }

 /*--------------------------------------------------------------
# Travel Booking Section
--------------------------------------------------------------*/
 .travel-booking .booking-form {
     background-color: var(--surface-color);
     border-radius: 15px;
     padding: 40px;
     box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
 }

 @media (max-width: 768px) {
     .travel-booking .booking-form {
         padding: 30px 20px;
     }
 }

 .travel-booking .booking-step {
     margin-bottom: 50px;
     padding-bottom: 40px;
     border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .travel-booking .booking-step:last-of-type {
     margin-bottom: 0;
     border-bottom: none;
 }

 .travel-booking .booking-step .step-header {
     margin-bottom: 30px;
 }

 .travel-booking .booking-step .step-header h3 {
     color: var(--heading-color);
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .travel-booking .booking-step .step-header p {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     margin-bottom: 0;
     font-size: 16px;
 }

 .travel-booking .form-group {
     margin-bottom: 25px;
 }

 .travel-booking .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: var(--heading-color);
     font-size: 14px;
 }

 .travel-booking .form-group .form-control,
 .travel-booking .form-group .form-select {
     padding: 12px 16px;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     border-radius: 8px;
     font-size: 14px;
     transition: all 0.3s ease;
     background-color: var(--surface-color);
     color: var(--default-color);
 }

 .travel-booking .form-group .form-control:focus,
 .travel-booking .form-group .form-select:focus {
     border-color: var(--accent-color);
     box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
     outline: none;
 }

 .travel-booking .form-group .form-control::placeholder,
 .travel-booking .form-group .form-select::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 70%);
 }

 .travel-booking .add-ons-grid {
     display: grid;
     gap: 20px;
 }

 .travel-booking .add-ons-grid .add-on-item {
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     border-radius: 10px;
     padding: 20px;
     transition: all 0.3s ease;
 }

 .travel-booking .add-ons-grid .add-on-item:hover {
     border-color: var(--accent-color);
     box-shadow: 0 3px 15px color-mix(in srgb, var(--accent-color), transparent 90%);
 }

 .travel-booking .add-ons-grid .add-on-item .add-on-header {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     margin-bottom: 10px;
 }

 .travel-booking .add-ons-grid .add-on-item .add-on-header input[type=checkbox] {
     margin-top: 2px;
     accent-color: var(--accent-color);
 }

 .travel-booking .add-ons-grid .add-on-item .add-on-header label {
     flex: 1;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 0;
     font-weight: 600;
 }

 .travel-booking .add-ons-grid .add-on-item .add-on-header label i {
     color: var(--accent-color);
     font-size: 20px;
 }

 .travel-booking .add-ons-grid .add-on-item .add-on-header label .price {
     margin-left: auto;
     color: var(--accent-color);
     font-weight: 700;
 }

 .travel-booking .add-ons-grid .add-on-item p {
     margin: 0;
     padding-left: 35px;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     font-size: 14px;
 }

 .travel-booking .payment-methods {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 15px;
     margin-bottom: 30px;
 }

 .travel-booking .payment-methods .payment-method {
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     border-radius: 8px;
     padding: 15px;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .travel-booking .payment-methods .payment-method.active,
 .travel-booking .payment-methods .payment-method:hover {
     border-color: var(--accent-color);
     background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
 }

 .travel-booking .payment-methods .payment-method input[type=radio] {
     display: none;
 }

 .travel-booking .payment-methods .payment-method label {
     cursor: pointer;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     margin: 0;
     font-weight: 600;
 }

 .travel-booking .payment-methods .payment-method label i {
     font-size: 24px;
     color: var(--accent-color);
 }

 .travel-booking .credit-card-form {
     background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
     border-radius: 10px;
     padding: 25px;
     margin-bottom: 20px;
 }

 .travel-booking .secure-badge {
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--heading-color);
     font-weight: 500;
     font-size: 14px;
 }

 .travel-booking .secure-badge i {
     color: var(--accent-color);
     font-size: 20px;
 }

 .travel-booking .terms-conditions {
     margin-bottom: 30px;
 }

 .travel-booking .terms-conditions .form-check {
     margin-bottom: 15px;
 }

 .travel-booking .terms-conditions .form-check .form-check-input {
     accent-color: var(--accent-color);
     margin-top: 2px;
 }

 .travel-booking .terms-conditions .form-check .form-check-label {
     font-size: 14px;
     cursor: pointer;
 }

 .travel-booking .terms-conditions .form-check .form-check-label a {
     color: var(--accent-color);
     text-decoration: underline;
 }

 .travel-booking .terms-conditions .form-check .form-check-label a:hover {
     color: color-mix(in srgb, var(--accent-color), transparent 25%);
 }

 .travel-booking .form-actions {
     text-align: center;
 }

 .travel-booking .form-actions .btn {
     padding: 15px 40px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 16px;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background-color: var(--accent-color);
     border-color: var(--accent-color);
     color: var(--contrast-color);
     transition: all 0.3s ease;
 }

 .travel-booking .form-actions .btn:hover {
     background-color: color-mix(in srgb, var(--accent-color), black 15%);
     border-color: color-mix(in srgb, var(--accent-color), black 15%);
     transform: translateY(-2px);
     box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
 }

 .travel-booking .booking-summary {
     background-color: var(--surface-color);
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
     position: sticky;
     top: 100px;
 }

 @media (max-width: 992px) {
     .travel-booking .booking-summary {
         position: static;
         margin-top: 40px;
     }
 }

 .travel-booking .booking-summary .summary-header {
     border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     padding-bottom: 20px;
     margin-bottom: 25px;
 }

 .travel-booking .booking-summary .summary-header h4 {
     color: var(--heading-color);
     font-weight: 700;
     margin: 0;
 }

 .travel-booking .booking-summary .selected-tour {
     display: flex;
     gap: 15px;
     margin-bottom: 25px;
 }

 .travel-booking .booking-summary .selected-tour img {
     width: 80px;
     height: 60px;
     object-fit: cover;
     border-radius: 8px;
 }

 .travel-booking .booking-summary .selected-tour .tour-info {
     flex: 1;
 }

 .travel-booking .booking-summary .selected-tour .tour-info h5 {
     color: var(--heading-color);
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 5px;
 }

 .travel-booking .booking-summary .selected-tour .tour-info p {
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     font-size: 14px;
     margin-bottom: 8px;
 }

 .travel-booking .booking-summary .selected-tour .tour-info .tour-rating {
     display: flex;
     align-items: center;
     gap: 2px;
     font-size: 12px;
 }

 .travel-booking .booking-summary .selected-tour .tour-info .tour-rating i {
     color: #ffc107;
     font-size: 12px;
 }

 .travel-booking .booking-summary .selected-tour .tour-info .tour-rating span {
     margin-left: 5px;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
 }

 .travel-booking .booking-summary .booking-details {
     margin-bottom: 25px;
     padding-bottom: 20px;
     border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .travel-booking .booking-summary .booking-details .detail-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: 10px;
     font-size: 14px;
 }

 .travel-booking .booking-summary .booking-details .detail-row:last-child {
     margin-bottom: 0;
 }

 .travel-booking .booking-summary .booking-details .detail-row span:first-child {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .travel-booking .booking-summary .booking-details .detail-row span:last-child {
     color: var(--heading-color);
     font-weight: 600;
 }

 .travel-booking .booking-summary .price-breakdown {
     margin-bottom: 25px;
 }

 .travel-booking .booking-summary .price-breakdown h6 {
     color: var(--heading-color);
     font-weight: 700;
     margin-bottom: 15px;
     font-size: 16px;
 }

 .travel-booking .booking-summary .price-breakdown .price-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: 12px;
     font-size: 14px;
 }

 .travel-booking .booking-summary .price-breakdown .price-row:last-child {
     margin-bottom: 0;
 }

 .travel-booking .booking-summary .price-breakdown .price-row span:first-child {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .travel-booking .booking-summary .price-breakdown .price-row span:last-child {
     color: var(--heading-color);
     font-weight: 500;
 }

 .travel-booking .booking-summary .price-breakdown .price-total {
     display: flex;
     justify-content: space-between;
     padding-top: 15px;
     border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     font-weight: 700;
     font-size: 18px;
     color: var(--heading-color);
 }

 .travel-booking .booking-summary .payment-security {
     margin-bottom: 25px;
     padding: 15px;
     background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
     border-radius: 8px;
 }

 .travel-booking .booking-summary .payment-security .security-badges,
 .travel-booking .booking-summary .payment-security .accepted-cards {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 8px;
     font-size: 12px;
 }

 .travel-booking .booking-summary .payment-security .security-badges:last-child,
 .travel-booking .booking-summary .payment-security .accepted-cards:last-child {
     margin-bottom: 0;
 }

 .travel-booking .booking-summary .payment-security .security-badges i,
 .travel-booking .booking-summary .payment-security .accepted-cards i {
     color: var(--accent-color);
     font-size: 16px;
 }

 .travel-booking .booking-summary .payment-security .security-badges span,
 .travel-booking .booking-summary .payment-security .accepted-cards span {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     font-weight: 500;
 }

 .travel-booking .booking-summary .help-section h6 {
     color: var(--heading-color);
     font-weight: 700;
     margin-bottom: 10px;
     font-size: 16px;
 }

 .travel-booking .booking-summary .help-section p {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     font-size: 14px;
     margin-bottom: 15px;
 }

 .travel-booking .booking-summary .help-section .contact-info .contact-item {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 8px;
     font-size: 14px;
 }

 .travel-booking .booking-summary .help-section .contact-info .contact-item:last-child {
     margin-bottom: 0;
 }

 .travel-booking .booking-summary .help-section .contact-info .contact-item i {
     color: var(--accent-color);
     font-size: 16px;
     width: 16px;
 }

 .travel-booking .booking-summary .help-section .contact-info .contact-item span {
     color: var(--heading-color);
     font-weight: 500;
 }

 .travel-booking input[type=text],
 .travel-booking input[type=email],
 .travel-booking input[type=tel],
 .travel-booking input[type=date],
 .travel-booking select,
 .travel-booking textarea {
     color: var(--default-color);
     background-color: var(--surface-color);
     font-size: 14px;
     border-color: color-mix(in srgb, var(--default-color), transparent 80%);
 }

 .travel-booking input[type=text]:focus,
 .travel-booking input[type=email]:focus,
 .travel-booking input[type=tel]:focus,
 .travel-booking input[type=date]:focus,
 .travel-booking select:focus,
 .travel-booking textarea:focus {
     border-color: var(--accent-color);
 }

 .travel-booking input[type=text]::placeholder,
 .travel-booking input[type=email]::placeholder,
 .travel-booking input[type=tel]::placeholder,
 .travel-booking input[type=date]::placeholder,
 .travel-booking select::placeholder,
 .travel-booking textarea::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 70%);
 }

 /*--------------------------------------------------------------
# Gallery Slider Section
--------------------------------------------------------------*/
 .gallery-slider {
     overflow: hidden;
 }

 .gallery-slider .gallery-container {
     padding: 20px 0 40px;
     position: relative;
 }

 .gallery-slider .swiper-wrapper {
     height: auto !important;
     align-items: center;
     padding: 30px 0;
 }

 .gallery-slider .gallery-item {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     transition: all 0.4s ease;
 }

 .gallery-slider .gallery-img {
     position: relative;
     overflow: hidden;
 }

 .gallery-slider .gallery-img img {
     transition: transform 0.6s ease;
     width: 100%;
     aspect-ratio: 4/3;
     object-fit: cover;
 }

 .gallery-slider .gallery-img .gallery-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: color-mix(in srgb, var(--accent-color), transparent 70%);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: all 0.4s ease;
 }

 .gallery-slider .gallery-img .gallery-overlay i {
     color: var(--contrast-color);
     font-size: 3rem;
     transform: scale(0.5);
     transition: all 0.3s ease;
 }

 .gallery-slider .gallery-img:hover img {
     transform: scale(1.1);
 }

 .gallery-slider .gallery-img:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery-slider .gallery-img:hover .gallery-overlay i {
     transform: scale(1);
 }

 .gallery-slider .swiper-pagination {
     position: relative;
     margin-top: 20px;
 }

 .gallery-slider .swiper-pagination .swiper-pagination-bullet {
     width: 12px;
     height: 12px;
     background: transparent;
     border: 2px solid var(--accent-color);
     opacity: 0.7;
     transition: all 0.3s ease;
 }

 .gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
     background: var(--accent-color);
     opacity: 1;
     transform: scale(1.2);
 }

 .gallery-slider .swiper-button-next,
 .gallery-slider .swiper-button-prev {
     color: var(--accent-color);
     background: var(--surface-color);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     opacity: 0;
     transition: all 0.3s ease;
 }

 .gallery-slider .swiper-button-next:after,
 .gallery-slider .swiper-button-prev:after {
     font-size: 16px;
     font-weight: bold;
 }

 .gallery-slider:hover .swiper-button-next,
 .gallery-slider:hover .swiper-button-prev {
     opacity: 0.9;
 }

 .gallery-slider:hover .swiper-button-next:hover,
 .gallery-slider:hover .swiper-button-prev:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
 }

 @media (max-width: 991px) {
     .gallery-slider .gallery-item {
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
     }

     .gallery-slider .swiper-button-next,
     .gallery-slider .swiper-button-prev {
         display: none;
     }
 }

 @media (max-width: 767px) {
     .gallery-slider .swiper-wrapper {
         padding: 15px 0;
     }

     .gallery-slider .gallery-img .gallery-overlay i {
         font-size: 2rem;
     }
 }

 /*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
 .gallery {
     padding: 70px 0;
 }

 .gallery .gallery-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     grid-gap: 15px;
 }

 @media (min-width: 576px) {
     .gallery .gallery-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (min-width: 992px) {
     .gallery .gallery-grid {
         grid-template-columns: repeat(4, 1fr);
         grid-gap: 20px;
     }
 }

 .gallery .gallery-item {
     position: relative;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transform: translateY(0);
     transition: all 0.4s ease;
 }

 .gallery .gallery-item.featured {
     grid-row: span 2;
 }

 @media (min-width: 768px) {
     .gallery .gallery-item.featured {
         grid-column: span 2;
     }
 }

 .gallery .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .gallery .gallery-item .gallery-overlay {
     position: absolute;
     inset: 0;
     background: color-mix(in srgb, var(--accent-color), transparent 70%);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .gallery .gallery-item .gallery-overlay i {
     color: var(--contrast-color);
     font-size: 2rem;
     transform: scale(0.5);
     transition: transform 0.4s ease;
 }

 .gallery .gallery-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .gallery .gallery-item:hover img {
     transform: scale(1.1);
 }

 .gallery .gallery-item:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery .gallery-item:hover .gallery-overlay i {
     transform: scale(1);
 }

 .gallery .btn-view-more {
     display: inline-block;
     background-color: transparent;
     color: var(--accent-color);
     font-weight: 600;
     padding: 12px 30px;
     border: 2px solid var(--accent-color);
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
 }

 .gallery .btn-view-more i {
     transition: transform 0.3s ease;
     margin-left: 5px;
 }

 .gallery .btn-view-more:hover {
     background-color: var(--accent-color);
     color: var(--contrast-color);
 }

 .gallery .btn-view-more:hover i {
     transform: translateX(5px);
 }

 /*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
 .blog-hero .featured-post {
     border-radius: 8px;
     overflow: hidden;
     margin-bottom: 2rem;
 }

 .blog-hero .featured-post img {
     width: 100%;
     height: 500px;
     object-fit: cover;
 }

 .blog-hero .featured-post .post-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
     padding: 2rem;
     color: var(--contrast-color);
 }

 .blog-hero .featured-post .post-content {
     max-width: 800px;
 }

 .blog-hero .featured-post .post-title {
     font-size: 2rem;
     margin: 1rem 0;
 }

 .blog-hero .featured-post .post-title a {
     color: var(--contrast-color);
 }

 .blog-hero .featured-post .post-title a:hover {
     color: color-mix(in srgb, var(--contrast-color), transparent 20%);
 }

 .blog-hero .featured-post .post-excerpt {
     font-size: 1rem;
     margin-bottom: 1rem;
     opacity: 0.9;
 }

 .blog-hero .secondary-post {
     background-color: var(--surface-color);
     border-radius: 8px;
     overflow: hidden;
     height: 100%;
 }

 .blog-hero .secondary-post .post-image img {
     width: 100%;
     height: 240px;
     object-fit: cover;
 }

 .blog-hero .secondary-post .post-content {
     padding: 1.5rem;
 }

 .blog-hero .secondary-post .post-title {
     font-size: 1.25rem;
     margin: 0.5rem 0;
     line-height: 1.4;
 }

 .blog-hero .secondary-post .post-title a {
     color: var(--heading-color);
 }

 .blog-hero .secondary-post .post-title a:hover {
     color: var(--accent-color);
 }

 .blog-hero .news-tabs {
     background-color: var(--surface-color);
     border-radius: 8px;
     overflow: hidden;
 }

 .blog-hero .news-tabs .nav-tabs {
     border: none;
     padding: 1rem 1rem 0;
     gap: 0.5rem;
     background-color: var(--surface-color);
 }

 .blog-hero .news-tabs .nav-tabs .nav-link {
     border: none;
     padding: 0.5rem 1rem;
     font-size: 0.875rem;
     color: var(--default-color);
     font-weight: 500;
     border-radius: 20px;
     transition: 0.3s;
 }

 .blog-hero .news-tabs .nav-tabs .nav-link:hover {
     color: var(--accent-color);
 }

 .blog-hero .news-tabs .nav-tabs .nav-link.active {
     background-color: var(--accent-color);
     color: var(--contrast-color);
 }

 .blog-hero .news-tabs .tab-content {
     padding: 1.5rem;
 }

 .blog-hero .tab-post {
     padding: 1rem 0;
     border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .blog-hero .tab-post:first-child {
     padding-top: 0;
 }

 .blog-hero .tab-post:last-child {
     padding-bottom: 0;
     border-bottom: none;
 }

 .blog-hero .tab-post img {
     border-radius: 8px;
     width: 100%;
     height: 100px;
     object-fit: cover;
 }

 .blog-hero .tab-post .post-content {
     padding-left: 1rem;
 }

 .blog-hero .tab-post .post-title {
     font-size: 0.9375rem;
     margin: 0.5rem 0;
     line-height: 1.4;
 }

 .blog-hero .tab-post .post-title a {
     color: var(--heading-color);
 }

 .blog-hero .tab-post .post-title a:hover {
     color: var(--accent-color);
 }

 .blog-hero .category {
     display: inline-block;
     padding: 0.25rem 0.75rem;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 500;
     background-color: var(--accent-color);
     color: var(--contrast-color);
     margin-right: 0.5rem;
 }

 .blog-hero .date {
     font-size: 0.875rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .blog-hero .post-author {
     font-size: 0.8125rem;
     margin-top: 0.5rem;
 }

 .blog-hero .post-author span {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .blog-hero .post-author a {
     color: var(--accent-color);
     font-weight: 500;
 }

 .blog-hero .post-author a:hover {
     color: color-mix(in srgb, var(--accent-color), transparent 25%);
 }

 @media (max-width: 991.98px) {
     .blog-hero .featured-post img {
         height: 400px;
     }

     .blog-hero .featured-post .post-title {
         font-size: 1.75rem;
     }

     .blog-hero .secondary-post .post-image img {
         height: 220px;
     }

     .blog-hero .news-tabs {
         margin-top: 2rem;
     }
 }

 @media (max-width: 767.98px) {
     .blog-hero .featured-post img {
         height: 500px;
     }

     .blog-hero .featured-post .post-title {
         font-size: 1.5rem;
     }

     .blog-hero .featured-post .post-overlay {
         padding: 1.5rem;
     }

     .blog-hero .tab-post .post-title {
         font-size: 0.875rem;
     }

     .blog-hero .tab-post img {
         height: 80px;
     }
 }

 /*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
 .blog-posts article {
     background-color: var(--surface-color);
     box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
     transition: 0.3s;
     border-radius: 8px;
     overflow: hidden;
 }

 .blog-posts .post-img img {
     transition: 0.5s;
 }

 .blog-posts .post-content {
     padding: 30px;
 }

 .blog-posts .post-title {
     font-size: 20px;
     line-height: 24px;
     color: var(--heading-color);
     font-weight: 600;
     transition: 0.3s;
     margin-bottom: 20px;
 }

 .blog-posts .meta {
     position: relative;
     margin-top: -20px;
     padding: 0 30px;
 }

 .blog-posts .meta i {
     font-size: 16px;
     color: var(--accent-color);
 }

 .blog-posts .meta span {
     font-size: 15px;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
 }

 .blog-posts .meta .post-date {
     background-color: var(--accent-color);
     color: var(--contrast-color);
     font-size: 13px;
     padding: 6px 12px;
     text-align: center;
     margin-right: 15px;
     border-radius: 4px;
 }

 .blog-posts .meta .post-date span {
     display: block;
     color: var(--contrast-color);
     font-weight: 700;
     font-size: 20px;
 }

 .blog-posts .readmore {
     display: flex;
     align-items: center;
     font-weight: 400;
     line-height: 1;
     transition: 0.3s;
     color: color-mix(in srgb, var(--heading-color), transparent 20%);
 }

 .blog-posts .readmore i {
     line-height: 0;
     margin-left: 6px;
     font-size: 16px;
 }

 .blog-posts article:hover .post-title,
 .blog-posts article:hover .readmore {
     color: var(--accent-color);
 }

 .blog-posts article:hover .post-img img {
     transform: scale(1.1);
 }

 /*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
 .pagination-2 {
     padding-top: 0;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
 }

 .pagination-2 ul {
     display: flex;
     padding: 0;
     margin: 0;
     list-style: none;
 }

 .pagination-2 li {
     margin: 0 5px;
     transition: 0.3s;
 }

 .pagination-2 li a {
     color: var(--accent-color);
     display: flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: 1px solid var(--accent-color);
 }

 .pagination-2 li a.active,
 .pagination-2 li a:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
 }

 .pagination-2 li a.active a,
 .pagination-2 li a:hover a {
     color: var(--contrast-color);
 }

 /*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
 .blog-details {
     max-width: 1000px;
     margin: 0 auto;
 }

 .blog-details .hero-img {
     position: relative;
     width: 100%;
     height: 500px;
     margin: -60px auto 3rem;
     border-radius: 0 0 16px 16px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .blog-details .hero-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .blog-details .hero-img .meta-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 2rem;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
 }

 .blog-details .hero-img .meta-overlay .meta-categories .category {
     color: var(--contrast-color);
     background-color: var(--accent-color);
     padding: 0.4rem 1rem;
     border-radius: 30px;
     font-size: 0.9rem;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .blog-details .hero-img .meta-overlay .meta-categories .category:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
 }

 .blog-details .hero-img .meta-overlay .meta-categories .divider {
     color: var(--contrast-color);
     margin: 0 0.75rem;
 }

 .blog-details .hero-img .meta-overlay .meta-categories .reading-time {
     color: var(--contrast-color);
     font-size: 0.9rem;
 }

 .blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
     margin-right: 0.3rem;
 }

 @media (max-width: 768px) {
     .blog-details .hero-img {
         height: 350px;
         margin-top: -30px;
         margin-bottom: 2rem;
     }
 }

 .blog-details .article-content {
     padding: 0 1rem;
 }

 .blog-details .article-content .content-header {
     margin-bottom: 3rem;
 }

 .blog-details .article-content .content-header .title {
     font-size: 2.8rem;
     line-height: 1.2;
     margin-bottom: 2rem;
     font-weight: 700;
     color: var(--heading-color);
 }

 @media (max-width: 768px) {
     .blog-details .article-content .content-header .title {
         font-size: 2rem;
     }
 }

 .blog-details .article-content .content-header .author-info {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     padding-bottom: 2rem;
     border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .blog-details .article-content .content-header .author-info .author-details {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .blog-details .article-content .content-header .author-info .author-details .author-img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
 }

 .blog-details .article-content .content-header .author-info .author-details .info h4 {
     margin: 0;
     font-size: 1.1rem;
     color: var(--heading-color);
 }

 .blog-details .article-content .content-header .author-info .author-details .info .role {
     font-size: 0.9rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .blog-details .article-content .content-header .author-info .post-meta {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     font-size: 0.95rem;
 }

 .blog-details .article-content .content-header .author-info .post-meta i {
     margin-right: 0.3rem;
 }

 .blog-details .article-content .content-header .author-info .post-meta .divider {
     margin: 0 0.75rem;
 }

 .blog-details .article-content .content {
     font-size: 1.15rem;
     line-height: 1.8;
     color: color-mix(in srgb, var(--default-color), transparent 10%);
 }

 .blog-details .article-content .content .lead {
     font-size: 1.3rem;
     color: var(--heading-color);
     margin-bottom: 2rem;
     font-weight: 500;
 }

 .blog-details .article-content .content h2 {
     font-size: 2rem;
     color: var(--heading-color);
     margin: 3rem 0 1.5rem;
 }

 .blog-details .article-content .content p {
     margin-bottom: 1.5rem;
 }

 .blog-details .article-content .content ul {
     margin-bottom: 2rem;
     padding-left: 1.2rem;
 }

 .blog-details .article-content .content ul li {
     margin-bottom: 0.75rem;
     position: relative;
 }

 .blog-details .article-content .content .content-image {
     margin: 2.5rem 0;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .blog-details .article-content .content .content-image.right-aligned {
     float: right;
     max-width: 450px;
     margin: 1rem 0 2rem 2rem;
 }

 @media (max-width: 768px) {
     .blog-details .article-content .content .content-image.right-aligned {
         float: none;
         max-width: 100%;
         margin: 2rem 0;
     }
 }

 .blog-details .article-content .content .content-image img {
     width: 100%;
     height: auto;
 }

 .blog-details .article-content .content .content-image figcaption {
     padding: 1rem;
     text-align: center;
     font-size: 0.9rem;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
 }

 .blog-details .article-content .content .highlight-box {
     background: color-mix(in srgb, var(--accent-color), transparent 95%);
     border-radius: 12px;
     padding: 2rem;
     margin: 2.5rem 0;
 }

 .blog-details .article-content .content .highlight-box h3 {
     color: var(--heading-color);
     margin-bottom: 1.5rem;
     font-size: 1.5rem;
 }

 .blog-details .article-content .content .highlight-box .trend-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .blog-details .article-content .content .highlight-box .trend-list li {
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
     padding: 0.5rem 0;
 }

 .blog-details .article-content .content .highlight-box .trend-list li i {
     color: var(--accent-color);
     font-size: 1.5rem;
     margin-right: 1rem;
 }

 .blog-details .article-content .content .highlight-box .trend-list li span {
     color: var(--heading-color);
     font-weight: 500;
 }

 .blog-details .article-content .content .content-grid {
     margin: 3rem 0;
 }

 .blog-details .article-content .content .content-grid .info-card {
     background: var(--surface-color);
     border-radius: 12px;
     padding: 2rem;
     height: 100%;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .blog-details .article-content .content .content-grid .info-card:hover {
     transform: translateY(-5px);
 }

 .blog-details .article-content .content .content-grid .info-card i {
     font-size: 2rem;
     color: var(--accent-color);
     margin-bottom: 1rem;
 }

 .blog-details .article-content .content .content-grid .info-card h4 {
     color: var(--heading-color);
     margin-bottom: 1rem;
     font-size: 1.3rem;
 }

 .blog-details .article-content .content .content-grid .info-card p {
     margin: 0;
     font-size: 1rem;
     line-height: 1.6;
 }

 .blog-details .article-content .content blockquote {
     position: relative;
     margin: 3rem 0;
     padding: 2rem 3rem;
     background: var(--surface-color);
     border-radius: 12px;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
 }

 .blog-details .article-content .content blockquote::before {
     content: '"';
     position: absolute;
     top: -20px;
     left: 20px;
     font-size: 8rem;
     color: color-mix(in srgb, var(--accent-color), transparent 85%);
     font-family: serif;
     line-height: 1;
 }

 .blog-details .article-content .content blockquote p {
     font-size: 1.3rem;
     font-style: italic;
     color: var(--heading-color);
     margin: 0 0 1rem;
     position: relative;
 }

 .blog-details .article-content .content blockquote cite {
     font-style: normal;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     font-size: 0.95rem;
     display: block;
 }

 .blog-details .article-content .meta-bottom {
     margin-top: 4rem;
     padding-top: 2rem;
     border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     display: grid;
     gap: 2rem;
 }

 .blog-details .article-content .meta-bottom h4 {
     color: var(--heading-color);
     font-size: 1.1rem;
     margin-bottom: 1rem;
 }

 .blog-details .article-content .meta-bottom .tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
 }

 .blog-details .article-content .meta-bottom .tags .tag {
     background: color-mix(in srgb, var(--accent-color), transparent 90%);
     color: var(--accent-color);
     padding: 0.5rem 1rem;
     border-radius: 30px;
     font-size: 0.9rem;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .blog-details .article-content .meta-bottom .tags .tag:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
 }

 .blog-details .article-content .meta-bottom .social-links {
     display: flex;
     gap: 1rem;
 }

 .blog-details .article-content .meta-bottom .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: color-mix(in srgb, var(--accent-color), transparent 90%);
     color: var(--accent-color);
     transition: all 0.3s ease;
 }

 .blog-details .article-content .meta-bottom .social-links a:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
     transform: translateY(-2px);
 }

 .blog-details .article-content .meta-bottom .social-links a i {
     font-size: 1.2rem;
 }

 /*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
 .blog-author .author-card {
     display: flex;
     background-color: var(--surface-color);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     position: relative;
 }

 @media (max-width: 991.98px) {
     .blog-author .author-card {
         flex-direction: column;
     }
 }

 .blog-author .author-background {
     position: relative;
     width: 35%;
     min-height: 400px;
     background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 90%));
     display: flex;
     align-items: center;
     justify-content: center;
 }

 @media (max-width: 991.98px) {
     .blog-author .author-background {
         width: 100%;
         min-height: 300px;
     }
 }

 .blog-author .author-background::after {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     width: 400px;
     background: linear-gradient(to right, transparent, var(--surface-color));
 }

 @media (max-width: 991.98px) {
     .blog-author .author-background::after {
         display: none;
     }
 }

 .blog-author .author-image-wrapper {
     width: 200px;
     height: 200px;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transform: rotate(-5deg);
     transition: transform 0.3s ease;
     z-index: 2;
 }

 .blog-author .author-image-wrapper:hover {
     transform: rotate(0deg);
 }

 .blog-author .author-image-wrapper .author-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .blog-author .author-details {
     flex: 1;
     padding: 2.5rem;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 @media (max-width: 767.98px) {
     .blog-author .author-details {
         padding: 2rem 1.5rem;
     }
 }

 .blog-author .author-meta .author-name {
     font-size: 2rem;
     margin: 0;
     color: var(--heading-color);
     font-weight: 700;
 }

 .blog-author .author-meta .author-credentials {
     margin-top: 1rem;
     display: flex;
     gap: 0.5rem;
     flex-wrap: wrap;
 }

 .blog-author .author-meta .author-credentials .badge {
     background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
     color: var(--accent-color);
     font-size: 0.85rem;
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-weight: 500;
 }

 .blog-author .author-description {
     font-size: 1rem;
     line-height: 1.7;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
 }

 .blog-author .author-stats {
     display: flex;
     gap: 2rem;
     padding: 1.5rem 0;
     border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 @media (max-width: 767.98px) {
     .blog-author .author-stats {
         gap: 1rem;
         justify-content: space-around;
     }
 }

 .blog-author .author-stats .stat-item {
     text-align: center;
 }

 .blog-author .author-stats .stat-item .stat-value {
     display: block;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--heading-color);
     font-family: var(--heading-font);
 }

 .blog-author .author-stats .stat-item .stat-label {
     font-size: 0.875rem;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     margin-top: 0.25rem;
 }

 .blog-author .author-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: auto;
 }

 @media (max-width: 767.98px) {
     .blog-author .author-footer {
         flex-direction: column;
         gap: 1.5rem;
     }
 }

 .blog-author .author-footer .social-links {
     display: flex;
     gap: 1rem;
 }

 .blog-author .author-footer .social-links a {
     color: var(--accent-color);
     font-size: 1.25rem;
     transition: all 0.3s ease;
 }

 .blog-author .author-footer .social-links a:hover {
     transform: translateY(-3px);
     color: var(--heading-color);
 }

 .blog-author .author-footer .btn-connect {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background-color: var(--accent-color);
     color: var(--contrast-color);
     padding: 0.75rem 1.5rem;
     border-radius: 25px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .blog-author .author-footer .btn-connect i {
     transition: transform 0.3s ease;
 }

 .blog-author .author-footer .btn-connect:hover {
     background-color: var(--heading-color);
 }

 .blog-author .author-footer .btn-connect:hover i {
     transform: translateX(5px);
 }

 /*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
 .blog-comments .comments-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 40px;
     padding-bottom: 20px;
     border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
 }

 .blog-comments .comments-header .title {
     color: var(--heading-color);
     font-size: 32px;
     font-weight: 700;
     font-family: var(--heading-font);
     margin: 0;
 }

 .blog-comments .comments-header .comments-stats {
     background: color-mix(in srgb, var(--default-color), transparent 95%);
     padding: 8px 20px;
     border-radius: 30px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .blog-comments .comments-header .comments-stats .count {
     font-size: 18px;
     font-weight: 700;
 }

 .blog-comments .comments-header .comments-stats .label {
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .blog-comments .comments-container {
     display: flex;
     flex-direction: column;
     gap: 40px;
 }

 .blog-comments .comment-thread {
     position: relative;
 }

 .blog-comments .comment-thread:not(:last-child)::after {
     content: "";
     position: absolute;
     left: 25px;
     top: 80px;
     bottom: 0;
     width: 2px;
     background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
     z-index: 0;
 }

 @media (min-width: 768px) {
     .blog-comments .comment-thread:not(:last-child)::after {
         left: 35px;
     }
 }

 .blog-comments .comment-box {
     position: relative;
     transition: all 0.3s ease;
 }

 .blog-comments .comment-box.reply {
     margin-left: 50px;
     margin-top: 25px;
 }

 @media (min-width: 768px) {
     .blog-comments .comment-box.reply {
         margin-left: 70px;
     }
 }

 .blog-comments .comment-wrapper {
     display: flex;
     gap: 20px;
     position: relative;
 }

 .blog-comments .avatar-wrapper {
     position: relative;
     flex-shrink: 0;
 }

 .blog-comments .avatar-wrapper img {
     width: 50px;
     height: 50px;
     border-radius: 15px;
     object-fit: cover;
     border: 3px solid var(--surface-color);
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 @media (min-width: 768px) {
     .blog-comments .avatar-wrapper img {
         width: 70px;
         height: 70px;
     }
 }

 .blog-comments .avatar-wrapper img:hover {
     transform: scale(1.05);
 }

 .blog-comments .avatar-wrapper .status-indicator {
     position: absolute;
     bottom: -2px;
     right: -2px;
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: #4CAF50;
     border: 2px solid var(--surface-color);
     z-index: 1;
 }

 .blog-comments .comment-content {
     flex: 1;
     background-color: var(--surface-color);
     border-radius: 20px;
     padding: 25px;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
     transition: all 0.3s ease;
 }

 .blog-comments .comment-content:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
 }

 .blog-comments .comment-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 15px;
 }

 .blog-comments .comment-header .user-info h4 {
     color: var(--heading-color);
     font-size: 18px;
     font-weight: 600;
     margin: 0 0 5px;
 }

 .blog-comments .comment-header .user-info .time-badge {
     display: flex;
     align-items: center;
     gap: 5px;
     font-size: 14px;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
 }

 .blog-comments .comment-header .user-info .time-badge i {
     font-size: 13px;
 }

 .blog-comments .comment-header .engagement .likes {
     display: flex;
     align-items: center;
     gap: 5px;
     padding: 6px 12px;
     background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
     border-radius: 20px;
     color: var(--accent-color);
     font-size: 14px;
     font-weight: 500;
 }

 .blog-comments .comment-header .engagement .likes i {
     font-size: 13px;
 }

 .blog-comments .comment-body p {
     color: var(--default-color);
     font-size: 15px;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .blog-comments .comment-actions {
     display: flex;
     gap: 15px;
 }

 .blog-comments .comment-actions .action-btn {
     background: none;
     border: none;
     padding: 8px 15px;
     border-radius: 20px;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     font-size: 14px;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 6px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .blog-comments .comment-actions .action-btn i {
     font-size: 15px;
     transition: all 0.3s ease;
 }

 .blog-comments .comment-actions .action-btn:hover {
     color: var(--accent-color);
     background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
 }

 .blog-comments .comment-actions .action-btn:hover.like-btn i {
     transform: scale(1.2);
     color: #ff4b6e;
 }

 .blog-comments .comment-actions .action-btn:hover.reply-btn i {
     transform: translateX(-3px);
 }

 .blog-comments .comment-actions .action-btn:hover.share-btn i {
     transform: translateY(-2px);
 }

 .blog-comments .comment-actions .action-btn.like-btn.active {
     color: #ff4b6e;
 }

 .blog-comments .replies-container {
     margin-top: 25px;
     display: flex;
     flex-direction: column;
     gap: 25px;
 }

 @media (max-width: 768px) {
     .blog-comments .comments-header {
         margin-bottom: 30px;
     }

     .blog-comments .comments-header .title {
         font-size: 24px;
     }

     .blog-comments .comments-header .comments-stats {
         padding: 6px 15px;
     }

     .blog-comments .comments-header .comments-stats .count {
         font-size: 20px;
     }

     .blog-comments .comments-header .comments-stats .label {
         font-size: 12px;
     }

     .blog-comments .comment-content {
         padding: 20px;
     }

     .blog-comments .comment-header .user-info h4 {
         font-size: 16px;
     }

     .blog-comments .comment-header .user-info .time-badge {
         font-size: 13px;
     }

     .blog-comments .comment-body p {
         font-size: 14px;
     }

     .blog-comments .comment-actions .action-btn {
         padding: 6px 12px;
         font-size: 13px;
     }
 }

 /*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
 .blog-comment-form {
     max-width: 900px;
     margin: 30px auto 0 auto;
 }

 .blog-comment-form form {
     padding: 30px;
     background-color: var(--surface-color);
     border-radius: 15px;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
 }

 .blog-comment-form .section-header {
     text-align: center;
     margin-bottom: 30px;
 }

 .blog-comment-form .section-header h3 {
     font-size: 28px;
     margin-bottom: 15px;
     position: relative;
     padding-bottom: 15px;
 }

 .blog-comment-form .section-header h3:after {
     content: "";
     position: absolute;
     display: block;
     width: 50px;
     height: 3px;
     background: var(--accent-color);
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
 }

 .blog-comment-form .section-header p {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     font-size: 15px;
     margin: 0;
 }

 .blog-comment-form .form-group {
     margin-bottom: 20px;
 }

 .blog-comment-form .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
     color: var(--heading-color);
     font-size: 14px;
 }

 .blog-comment-form .form-group .form-control {
     height: 48px;
     padding: 10px 15px;
     color: var(--default-color);
     background-color: var(--surface-color);
     border-radius: 8px;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     font-size: 14px;
     transition: all 0.3s ease-in-out;
 }

 .blog-comment-form .form-group .form-control:focus {
     border-color: var(--accent-color);
     box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
 }

 .blog-comment-form .form-group .form-control::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 70%);
 }

 .blog-comment-form .form-group .form-control:hover:not(:focus) {
     border-color: color-mix(in srgb, var(--default-color), transparent 60%);
 }

 .blog-comment-form .form-group textarea.form-control {
     height: auto;
     min-height: 120px;
     resize: vertical;
 }

 .blog-comment-form .btn-submit {
     padding: 12px 32px;
     border-radius: 50px;
     background: var(--accent-color);
     color: var(--contrast-color);
     border: none;
     font-size: 16px;
     font-weight: 500;
     transition: 0.3s;
     position: relative;
     overflow: hidden;
 }

 .blog-comment-form .btn-submit:hover {
     background: color-mix(in srgb, var(--accent-color), transparent 15%);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
 }

 .blog-comment-form .btn-submit:active {
     transform: translateY(0);
     box-shadow: none;
 }

 @media (max-width: 768px) {
     .blog-comment-form {
         padding: 20px;
     }

     .blog-comment-form .section-header h3 {
         font-size: 24px;
     }

     .blog-comment-form .btn-submit {
         width: 100%;
         padding: 12px 20px;
     }
 }

 /*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
 .testimonials .testimonial-masonry {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     position: relative;
 }

 .testimonials .testimonial-masonry::before {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
     opacity: 0.5;
     z-index: -1;
 }

 .testimonials .testimonial-item:nth-child(3n-1) {
     margin-top: 3rem;
 }

 .testimonials .testimonial-item:nth-child(3n) {
     margin-top: 1.5rem;
 }

 .testimonials .testimonial-item.highlight .testimonial-content {
     background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
     border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
 }

 .testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
     background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
 }

 .testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
     color: var(--accent-color);
 }

 .testimonials .testimonial-content {
     background-color: var(--surface-color);
     border-radius: 20px;
     padding: 2rem;
     position: relative;
     transition: all 0.3s ease;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
 }

 .testimonials .testimonial-content:hover {
     transform: translateY(-5px);
 }

 .testimonials .testimonial-content p {
     font-size: 1rem;
     line-height: 1.7;
     margin: 1.5rem 0;
     position: relative;
 }

 .testimonials .quote-pattern {
     position: absolute;
     top: -1.25rem;
     left: 2rem;
     width: 2.5rem;
     height: 2.5rem;
     background-color: var(--surface-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
 }

 .testimonials .quote-pattern i {
     font-size: 1.25rem;
     color: var(--accent-color);
 }

 .testimonials .client-info {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-top: 1.5rem;
     padding-top: 1.5rem;
     border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
 }

 .testimonials .client-image {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     overflow: hidden;
     flex-shrink: 0;
 }

 .testimonials .client-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .testimonials .client-details h3 {
     font-size: 1.125rem;
     margin-bottom: 0.25rem;
 }

 .testimonials .client-details .position {
     font-size: 0.875rem;
     color: color-mix(in srgb, var(--heading-color), transparent 40%);
 }

 @media (max-width: 1199.98px) {
     .testimonials .testimonial-masonry {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
     }

     .testimonials .testimonial-item:nth-child(3n-1),
     .testimonials .testimonial-item:nth-child(3n) {
         margin-top: 0;
     }

     .testimonials .testimonial-item:nth-child(even) {
         margin-top: 2rem;
     }
 }

 @media (max-width: 767.98px) {
     .testimonials .testimonial-masonry {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .testimonials .testimonial-item:nth-child(even) {
         margin-top: 0;
     }

     .testimonials .testimonial-content {
         padding: 1.5rem;
     }

     .testimonials .testimonial-content p {
         font-size: 0.9375rem;
         margin: 1.25rem 0;
     }

     .testimonials .quote-pattern {
         width: 2.25rem;
         height: 2.25rem;
         top: -1.125rem;
     }

     .testimonials .quote-pattern i {
         font-size: 1.125rem;
     }

     .testimonials .client-info {
         margin-top: 1.25rem;
         padding-top: 1.25rem;
     }

     .testimonials .client-image {
         width: 45px;
         height: 45px;
     }

     .testimonials .client-details h3 {
         font-size: 1rem;
     }

     .testimonials .client-details .position {
         font-size: 0.8125rem;
     }
 }

 /*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
 .faq .faq-card {
     height: 100%;
     padding: 40px;
     background-color: color-mix(in srgb, var(--default-color), transparent 96%);
     border-radius: 8px;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     text-align: center;
 }

 .faq .faq-card i {
     font-size: 48px;
     color: var(--accent-color);
     margin-bottom: 20px;
     display: block;
 }

 .faq .faq-card h3 {
     font-size: 24px;
     margin-bottom: 15px;
 }

 .faq .faq-card p {
     margin-bottom: 25px;
     font-size: 15px;
     line-height: 24px;
     color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .faq .faq-card .btn-primary {
     padding: 8px 20px;
     font-size: 16px;
     font-weight: 500;
     background-color: var(--accent-color);
     border-color: var(--accent-color);
     color: var(--contrast-color);
 }

 .faq .faq-card .btn-primary:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
     border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
 }

 .faq .faq-list .accordion-item,
 .position-detail .faq-list .accordion-item {
     border: none !important;
     border-radius: 15px;
     margin: 0 0 20px;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
 }

 .faq .faq-list .accordion-button:focus,
 .position-detail .faq-list .accordion-button:focus {
     box-shadow: none;
     padding: 0
 }

 .faq .faq-list .accordion-button:not(.collapsed),
 .position-detail .faq-list .accordion-button:not(.collapsed) {
     background-color: var(--contrast-color);
 }

 .faq .faq-list .accordion-button:not(.collapsed),
 .position-detail .faq-list .accordion-button:not(.collapsed) {
     background-color: var(--contrast-color);
 }

 .faq .faq-list .accordion-header,
 .position-detail .faq-list .accordion-header {
     margin-bottom: 0;
     border-radius: 10px;
     padding: 20px;
     margin: 0;
     color: var(--bs-accordion-color);
     background-color: #ffffff;
 }

 .faq .faq-list .accordion-button,
 .position-detail .faq-list .accordion-button {
     padding: 0;
     font-weight: 600;
     color: #000;
 }

 .faq .faq-list .accordion-button:not(.collapsed),
 .position-detail .faq-list .accordion-button:not(.collapsed) {
     color: #000;
 }

 .faq .faq-list .accordion-button:not(.collapsed),
 .position-detail .faq-list .accordion-button:not(.collapsed) {
     box-shadow: none;
 }

 .faq .faq-list .accordion-body,
 .position-detail .faq-list .accordion-body {
     padding: 0 20px 20px;
 }

 .view-more-tag a {
     padding-left: 5px;
     text-align: center;
     font-size: 14px;
     font-weight: 400;
     color: #333;
 }

 .view-more-tag i {
     -webkit-text-stroke: 2px;
 }

 /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
 .contact .container {
     max-width: 1280px;
 }

 .contact .contact-wrapper {
     display: grid;
     grid-template-columns: 1fr;
     gap: 40px;
 }

 @media (min-width: 992px) {
     .contact .contact-wrapper {
         grid-template-columns: 38% 62%;
         gap: 30px;
     }
 }

 .contact .contact-info-panel {
     background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
     color: var(--contrast-color);
     border-radius: 20px;
     padding: 40px 30px;
     height: 100%;
     display: flex;
     flex-direction: column;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .contact .contact-info-panel .contact-info-header {
     margin-bottom: 30px;
 }

 .contact .contact-info-panel .contact-info-header h3 {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--contrast-color);
 }

 .contact .contact-info-panel .contact-info-header p {
     font-size: 15px;
     opacity: 0.85;
     line-height: 1.6;
 }

 .contact .contact-info-cards {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
     margin-bottom: auto;
 }

 @media (min-width: 576px) and (max-width: 991px) {
     .contact .contact-info-cards {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 .contact .info-card {
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     padding: 20px;
     display: flex;
     align-items: center;
     gap: 15px;
     backdrop-filter: blur(5px);
     transition: all 0.3s ease;
 }

 .contact .info-card:hover {
     background-color: rgba(255, 255, 255, 0.2);
     transform: translateY(-5px);
 }

 .contact .info-card .icon-container {
     width: 45px;
     height: 45px;
     flex-shrink: 0;
     background-color: rgba(255, 255, 255, 0.25);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .contact .info-card .icon-container i {
     font-size: 20px;
     color: var(--contrast-color);
 }

 .contact .info-card .card-content h4 {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 5px;
     color: var(--contrast-color);
 }

 .contact .info-card .card-content p {
     font-size: 14px;
     margin-bottom: 0;
     opacity: 0.8;
 }

 .contact .social-links-panel {
     margin-top: 35px;
 }

 .contact .social-links-panel h5 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 15px;
     color: var(--contrast-color);
 }

 .contact .social-links-panel .social-icons {
     display: flex;
     gap: 12px;
 }

 .contact .social-links-panel .social-icons a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.15);
     color: var(--contrast-color);
     font-size: 18px;
     transition: all 0.3s ease;
 }

 .contact .social-links-panel .social-icons a:hover {
     background-color: rgba(255, 255, 255, 0.3);
     transform: translateY(-5px);
 }

 .contact .contact-form-panel {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .contact .map-container {
     width: 100%;
     height: 280px;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
 }

 .contact .form-container {
     background-color: var(--surface-color);
     border-radius: 20px;
     padding: 35px;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
 }

 .contact .form-container h3 {
     font-size: 26px;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--heading-color);
     background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     text-fill-color: transparent;
 }

 .contact .form-container p {
     font-size: 15px;
     color: color-mix(in srgb, var(--default-color), transparent 15%);
     margin-bottom: 25px;
 }

 .contact .form-container .form-floating {
     margin-bottom: 20px;
 }

 .contact .form-container .form-floating .form-control {
     border-radius: 12px;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
     padding: 24px 20px 8px 20px;
     height: calc(3.5rem + 3px);
     background-color: var(--surface-color);
     color: var(--default-color);
     transition: all 0.3s ease;
 }

 .contact .form-container .form-floating .form-control:focus {
     box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
     border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
     background-color: var(--surface-color);
 }

 .contact .form-container .form-floating .form-control::placeholder {
     color: transparent;
 }

 .contact .form-container .form-floating label {
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     padding: 1rem 1.25rem 2.5rem 1.25rem;
 }

 .contact .form-container .form-floating label::after {
     background-color: transparent;
 }

 .contact .form-container .btn-submit {
     background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
     color: var(--contrast-color);
     border: none;
     padding: 15px 25px;
     border-radius: 12px;
     font-weight: 600;
     font-size: 16px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .contact .form-container .btn-submit:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
 }

 .contact .form-container .btn-submit i {
     transition: transform 0.3s ease;
 }

 .contact .form-container .btn-submit:hover i {
     transform: translateX(5px);
 }

 @media (max-width: 768px) {
     .contact .contact-info-panel {
         padding: 30px 25px;
     }

     .contact .form-container {
         padding: 30px 25px;
     }
 }

 @media (max-width: 576px) {
     .contact .social-links-panel .social-icons {
         flex-wrap: wrap;
     }
 }

 /*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
 .terms-of-service .tos-header {
     margin-bottom: 60px;
 }

 .terms-of-service .tos-header .last-updated {
     display: inline-block;
     padding: 8px 20px;
     background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
     border-radius: 30px;
     color: var(--accent-color);
     font-size: 0.95rem;
     margin-bottom: 20px;
 }

 .terms-of-service .tos-header h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .terms-of-service .tos-header p {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto;
 }

 .terms-of-service .tos-content .content-section {
     margin-bottom: 50px;
     scroll-margin-top: 100px;
 }

 .terms-of-service .tos-content .content-section:last-child {
     margin-bottom: 0;
 }

 .terms-of-service .tos-content .content-section h3 {
     font-size: 1.8rem;
     margin-bottom: 20px;
     color: var(--heading-color);
 }

 .terms-of-service .tos-content .content-section p {
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     line-height: 1.7;
     margin-bottom: 20px;
 }

 .terms-of-service .tos-content .content-section p:last-child {
     margin-bottom: 0;
 }

 .terms-of-service .tos-content .content-section .info-box {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     padding: 20px;
     background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
     border-radius: 15px;
     margin-top: 20px;
 }

 .terms-of-service .tos-content .content-section .info-box i {
     font-size: 1.5rem;
     color: var(--accent-color);
     flex-shrink: 0;
 }

 .terms-of-service .tos-content .content-section .info-box p {
     margin: 0;
     font-size: 0.95rem;
 }

 .terms-of-service .tos-content .content-section .list-items {
     list-style: none;
     padding: 0;
     margin: 20px 0;
 }

 .terms-of-service .tos-content .content-section .list-items li {
     position: relative;
     padding-left: 25px;
     margin-bottom: 12px;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
 }

 .terms-of-service .tos-content .content-section .list-items li:last-child {
     margin-bottom: 0;
 }

 .terms-of-service .tos-content .content-section .list-items li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 10px;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background-color: var(--accent-color);
 }

 .terms-of-service .tos-content .content-section .alert-box {
     display: flex;
     gap: 20px;
     padding: 25px;
     background-color: var(--surface-color);
     border-radius: 15px;
     border-left: 4px solid var(--accent-color);
     margin-top: 20px;
 }

 .terms-of-service .tos-content .content-section .alert-box i {
     font-size: 2rem;
     color: var(--accent-color);
     flex-shrink: 0;
 }

 .terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
     font-size: 1.1rem;
     margin-bottom: 8px;
 }

 .terms-of-service .tos-content .content-section .alert-box .alert-content p {
     margin: 0;
     font-size: 0.95rem;
 }

 .terms-of-service .tos-content .content-section .prohibited-list {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-top: 20px;
 }

 @media (max-width: 576px) {
     .terms-of-service .tos-content .content-section .prohibited-list {
         grid-template-columns: 1fr;
     }
 }

 .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 15px;
     background-color: var(--surface-color);
     border-radius: 12px;
 }

 .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
     color: #dc3545;
     font-size: 1.2rem;
 }

 .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
     font-size: 0.95rem;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
 }

 .terms-of-service .tos-content .content-section .disclaimer-box {
     background-color: var(--surface-color);
     padding: 25px;
     border-radius: 15px;
     margin-top: 20px;
 }

 .terms-of-service .tos-content .content-section .disclaimer-box p {
     margin-bottom: 15px;
     font-weight: 500;
 }

 .terms-of-service .tos-content .content-section .disclaimer-box ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .terms-of-service .tos-content .content-section .disclaimer-box ul li {
     position: relative;
     padding-left: 25px;
     margin-bottom: 12px;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     font-size: 0.95rem;
 }

 .terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
     margin-bottom: 0;
 }

 .terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
     content: "•";
     position: absolute;
     left: 8px;
     color: var(--accent-color);
 }

 .terms-of-service .tos-content .content-section .notice-box {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 20px;
     background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
     border-radius: 15px;
     margin-top: 20px;
 }

 .terms-of-service .tos-content .content-section .notice-box i {
     font-size: 1.5rem;
     color: var(--accent-color);
     flex-shrink: 0;
 }

 .terms-of-service .tos-content .content-section .notice-box p {
     margin: 0;
     font-size: 0.95rem;
 }

 .terms-of-service .tos-contact {
     margin-top: 60px;
 }

 .terms-of-service .tos-contact .contact-box {
     background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
     border-radius: 20px;
     padding: 40px;
     display: flex;
     align-items: center;
     gap: 30px;
 }

 @media (max-width: 576px) {
     .terms-of-service .tos-contact .contact-box {
         flex-direction: column;
         text-align: center;
     }
 }

 .terms-of-service .tos-contact .contact-box .contact-icon {
     width: 60px;
     height: 60px;
     background-color: var(--accent-color);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .terms-of-service .tos-contact .contact-box .contact-icon i {
     font-size: 1.8rem;
     color: var(--contrast-color);
 }

 .terms-of-service .tos-contact .contact-box .contact-content {
     flex: 1;
 }

 .terms-of-service .tos-contact .contact-box .contact-content h4 {
     font-size: 1.4rem;
     margin-bottom: 8px;
 }

 .terms-of-service .tos-contact .contact-box .contact-content p {
     color: color-mix(in srgb, var(--default-color), transparent 30%);
     margin-bottom: 15px;
 }

 .terms-of-service .tos-contact .contact-box .contact-content .contact-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 12px 25px;
     background-color: var(--accent-color);
     color: var(--contrast-color);
     border-radius: 30px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s;
 }

 .terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 @media print {
     .terms-of-service .tos-contact {
         display: none;
     }

     .terms-of-service .content-section {
         page-break-inside: avoid;
     }
 }

 /*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
 .privacy {
     font-size: 1rem;
     line-height: 1.7;
 }

 .privacy .privacy-header {
     margin-bottom: 60px;
     text-align: center;
     border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     padding-bottom: 40px;
 }

 .privacy .privacy-header .header-content .last-updated {
     font-size: 0.95rem;
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     margin-bottom: 20px;
 }

 .privacy .privacy-header .header-content h1 {
     font-size: 2.8rem;
     color: var(--heading-color);
     margin-bottom: 20px;
     font-weight: 600;
 }

 .privacy .privacy-header .header-content .intro-text {
     font-size: 1.2rem;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     line-height: 1.6;
 }

 .privacy .privacy-content .content-section {
     margin-bottom: 50px;
 }

 .privacy .privacy-content .content-section:last-child {
     margin-bottom: 0;
 }

 .privacy .privacy-content .content-section h2 {
     font-size: 1.8rem;
     color: var(--heading-color);
     margin-bottom: 25px;
     font-weight: 600;
 }

 .privacy .privacy-content .content-section h3 {
     font-size: 1.4rem;
     color: var(--heading-color);
     margin: 30px 0 20px;
     font-weight: 500;
 }

 .privacy .privacy-content .content-section p {
     margin-bottom: 20px;
 }

 .privacy .privacy-content .content-section p:last-child {
     margin-bottom: 0;
 }

 .privacy .privacy-content .content-section ul {
     list-style: none;
     padding: 0;
     margin: 0 0 20px;
 }

 .privacy .privacy-content .content-section ul li {
     position: relative;
     padding-left: 25px;
     margin-bottom: 12px;
 }

 .privacy .privacy-content .content-section ul li:last-child {
     margin-bottom: 0;
 }

 .privacy .privacy-content .content-section ul li::before {
     content: "•";
     position: absolute;
     left: 8px;
     color: var(--accent-color);
 }

 .privacy .privacy-contact {
     max-width: 800px;
     margin: 0 auto;
     padding-top: 40px;
     border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .privacy .privacy-contact h2 {
     font-size: 1.8rem;
     color: var(--heading-color);
     margin-bottom: 20px;
     font-weight: 600;
 }

 .privacy .privacy-contact p {
     margin-bottom: 20px;
 }

 .privacy .privacy-contact .contact-details {
     background-color: var(--surface-color);
     padding: 25px;
     border-radius: 10px;
 }

 .privacy .privacy-contact .contact-details p {
     margin-bottom: 10px;
 }

 .privacy .privacy-contact .contact-details p:last-child {
     margin-bottom: 0;
 }

 .privacy .privacy-contact .contact-details p strong {
     color: var(--heading-color);
     font-weight: 600;
 }

 @media print {
     .privacy {
         font-size: 12pt;
         line-height: 1.5;
     }

     .privacy .privacy-header {
         text-align: left;
         border-bottom: 1pt solid #000;
         padding-bottom: 20pt;
         margin-bottom: 30pt;
     }

     .privacy h1 {
         font-size: 24pt;
     }

     .privacy h2 {
         font-size: 18pt;
         page-break-after: avoid;
     }

     .privacy h3 {
         font-size: 14pt;
         page-break-after: avoid;
     }

     .privacy p,
     .privacy ul {
         page-break-inside: avoid;
     }

     .privacy .contact-details {
         border: 1pt solid #000;
         padding: 15pt;
     }
 }

 @media (max-width: 767px) {
     .privacy .privacy-header {
         margin-bottom: 40px;
         padding-bottom: 30px;
     }

     .privacy .privacy-header .header-content h1 {
         font-size: 2.2rem;
     }

     .privacy .privacy-header .header-content .intro-text {
         font-size: 1.1rem;
     }

     .privacy .privacy-content .content-section {
         margin-bottom: 40px;
     }

     .privacy .privacy-content .content-section h2 {
         font-size: 1.6rem;
     }

     .privacy .privacy-content .content-section h3 {
         font-size: 1.3rem;
     }
 }

 /*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
 .error-404 {
     padding: 80px 0;
     margin: 0 auto;
 }

 .error-404 .error-icon {
     font-size: 5rem;
     color: color-mix(in srgb, var(--accent-color), transparent 15%);
 }

 .error-404 .error-code {
     font-size: clamp(6rem, 15vw, 12rem);
     font-weight: 800;
     color: color-mix(in srgb, var(--heading-color), transparent 10%);
     font-family: var(--heading-font);
     line-height: 1;
 }

 .error-404 .error-title {
     font-size: 2rem;
     color: var(--heading-color);
     font-weight: 600;
 }

 .error-404 .error-text {
     font-size: 1.1rem;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     max-width: 600px;
     margin: 0 auto;
 }

 .error-404 .search-box {
     max-width: 500px;
     margin: 0 auto;
 }

 .error-404 .search-box .input-group {
     border-radius: 50px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .error-404 .search-box .form-control {
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
     padding: 0.75rem 1.5rem;
     font-size: 1rem;
     color: var(--default-color);
     background-color: var(--surface-color);
     border-radius: 50px;
 }

 .error-404 .search-box .form-control:focus {
     box-shadow: none;
     border-color: var(--accent-color);
 }

 .error-404 .search-box .form-control::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 60%);
 }

 .error-404 .search-box .search-btn {
     background-color: var(--accent-color);
     color: var(--contrast-color);
     border: none;
     padding: 0.75rem 1.5rem;
     transition: all 0.3s ease;
 }

 .error-404 .search-box .search-btn:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
 }

 .error-404 .error-action .btn-primary {
     padding: 0.75rem 2rem;
     font-size: 1.1rem;
     background-color: var(--accent-color);
     border: none;
     color: var(--contrast-color);
     border-radius: 50px;
     transition: all 0.3s ease;
 }

 .error-404 .error-action .btn-primary:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
     transform: translateY(-2px);
 }

 /*--------------------------------------------------------------
# About Page CSS Start
--------------------------------------------------------------*/
 .about-banner #myVideo {
     border-radius: 0;
 }

 .about-banner.hero-banner {
     height: auto;
     background-size: cover !important;
 }

 .about-banner.hero-banner .home .overlay {
     width: 100%;
     height: 75vh;
     background-color: rgb(0 0 0 / 69%);
     border-radius: 0;
 }

 .who-we-sec {
     width: 100%;
     height: 100vh;
     background-position: top;
     background-repeat: no-repeat;
     background-size: cover;
     padding-top: 200px;
     padding-bottom: 50px;
     position: relative;
 }

 .who-we-col img {
     max-width: 60px;
 }

 .who-we-text {
     position: absolute;
     bottom: 0;
     width: 100%;
     text-align: center;
 }

 .who-we-text h4 {
     color: var(--accent-color-2);
 }

 .who-we-text p {
     color: var(--contrast-color);
     margin: 30px 0;
 }

 .who-we-col h5 {
     color: var(--contrast-color);
     margin: 20px 0;
     font-size: 14px;
     line-height: 22px;
 }

 .ofr-pic {
     width: 100px;
     height: 100px;
     line-height: 100px;
     border-radius: 50%;
     background: var(--accent-color);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .ofr-pic img {
     max-width: 60px;
 }

 .offer-col {
     display: flex;
     justify-content: center;
     flex-direction: column;
     align-items: center;
 }

 .offer-col h5 {
     color: #000;
     font-size: 15px;
     line-height: 25px;
     font-weight: 600;
     text-align: center;
     margin: 20px 0 0;
 }

 .founder-sec {
     position: relative;
     width: 100%;
     height: 75vh;
     background-position: 50%;
     background-repeat: no-repeat !important;
     background-size: cover;
     padding: 70px 0 40px;
 }

 .founder-div,
 .founder-pic {
     position: absolute;
     bottom: 0;
 }

 .founder-pic {
     right: 10%;
 }

 .founder-pic img {
     width: 100%;
     max-width: 500px;
 }

 .founder-text {
     margin: 40px 0 0;
 }

 .founder-text h4 {
     font-size: 27px;
     line-height: 40px;
     font-weight: 600;
 }

 .founder-title {
     display: flex;
     align-items: flex-end;
     margin: 0 0 20px
 }

 .founder-title span {
     display: flex;
     align-items: center;
     background: #222;
     padding: 6px 10px;
     border-radius: 12px;
     color: #fff;
     margin: 0 15px 0 0;
 }

 .founder-title h6 {
     font-size: 16px;
     line-height: 25px;
     font-weight: 600;
     margin: 0;
 }

 .team-col {
     padding: 20px;
     border-radius: 20px;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     text-align: center;
     width: 300px;
     margin: auto;
 }

 .team-pic {
     width: 150px;
     height: 150px;
     line-height: 150px;
     display: flex;
     align-items: center;
     justify-content: center;
     object-fit: cover;
     overflow: hidden;
     border-radius: 50%;
     margin: 0 auto;
     border: 2px solid var(--accent-color);
 }

 .team-pic img {
     width: 140px;
     height: 140px;
     border-radius: 50%;
     object-fit: cover;
 }

 .team-title {
     margin: 20px 0;
 }

 .team-title h5 {
     font-size: 16px;
     line-height: 24px;
     font-weight: 600;
     background: var(--accent-color);
     padding: 6px 10px;
     border-radius: 40px;
     color: #fff;
 }

 .team-title p {
     margin: 0;
     font-size: 14px;
     line-height: 20px;
     font-weight: 400;
 }

 .caption-sec {
     width: 100%;
     height: 50vh;
     background-position: center center !important;
     background-repeat: no-repeat !important;
     background-size: cover !important;
     padding-top: 1.5rem;
     position: relative;
     display: flex;
     align-items: center;
 }

 .captain-pic {
     height: 400px;
     object-fit: cover;
     overflow: hidden;
     position: absolute;
     bottom: 0;
 }

 .captain-pic img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     overflow: hidden;
 }

 .caption-text-1 p {
     font-size: 15px;
     font-weight: 400;
     line-height: 25px;
     color: var(--contrast-color);
 }

 .caption-text-1 p strong {
     color: var(--accent-color-2);
 }

 .caption-text-2 {
     text-align: end;
 }

 .caption-text-2 h3 {
     font-size: 27px;
     font-weight: 600;
     line-height: 37px;
     color: var(--contrast-color);
 }

 .caption-text-2 h3 span {
     font-size: 45px;
     font-weight: 700;
     line-height: 55px;
     color: var(--accent-color-2);
 }

 .join-team-sec {
     width: 100%;
     height: 600px;
     background-position: center center !important;
     background-repeat: no-repeat !important;
     background-size: cover !important;
     padding: 0;
 }

 .with-blur-backdrop {
     background: linear-gradient(0deg, #2755b0, transparent);
     -webkit-backdrop-filter: blur(.5px);
     backdrop-filter: blur(.5px);
     padding: 20px 30px 50px;
     height: 100%;
 }

 .join-team-text p {
     font-size: 20px;
     font-weight: 600;
     line-height: 30px;
     color: var(--contrast-color);
 }

 .join-team-text p span {
     color: var(--accent-color-2);
 }

 .join-team-text a {
     display: inline-block;
     text-align: center;
     margin: auto;
     background: var(--contrast-color);
     color: var(--accent-color);
     padding: 12px 20px;
     border-radius: 10px;
     font-size: 18px;
     font-weight: 500;
 }

 .join-team-text a:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
     border: 1px solid var(--contrast-color);
 }

 .go4-night-pics {
     height: 400px;
     object-fit: cover;
     overflow: hidden;
     border-radius: 20px;
 }

 .go4-night-pics {
     object-fit: cover;
     overflow: hidden;
     border-radius: 20px;
 }

 .go4-night-pics.large {
     height: 100%;
 }

 .go4-night-pics.small {
     height: 200px;
 }

 .go4-night-pics img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     overflow: hidden;
     border-radius: 20px;
 }

 .go4-night-pics.small img {
     height: 200px;
 }

 .aim-night .sec-title p {
     width: 1000px;
     margin: auto;
     display: inline-block;
     margin: 0
 }

 .aim-night .sec-title p span {
     color: var(--accent-color-2);
     display: inline-block
 }

 .insta-sec .wander-pic img {
     position: relative;
     z-index: 2;
 }


 @media (max-width: 768px) {
     .error-404 {
         padding: 60px 0;
     }

     .error-404 .error-code {
         font-size: clamp(4rem, 12vw, 8rem);
     }

     .error-404 .error-title {
         font-size: 1.5rem;
     }

     .error-404 .error-text {
         font-size: 1rem;
         padding: 0 20px;
     }

     .error-404 .search-box {
         margin: 0 20px;
     }
 }







 /*--------------------------------------------------------------
# Roadmap Section - About Page
--------------------------------------------------------------*/

 .timeline {
     position: relative;
     padding: 0 60px 0;
 }

 .timeline ul {
     padding: 0
 }

 .timeline .default-line {
     position: absolute;
     top: 8%;
     left: 50%;
     height: 1200px;
     border-left: 2px dashed #000;
     content: ""
 }

 .timeline .draw-line {
     top: 9%;
     width: 2px;
     height: 0;
     position: absolute;
     left: 50%;
     background: #2755b0
 }

 .timeline ul li {
     list-style-type: none;
     position: relative;
     width: 2px;
     margin: 0 auto;
     height: 80px;
     background: transparent;
     display: flex
 }

 .timeline ul li:before {
     content: "";
     position: absolute;
     left: 54%;
     top: -41px;
     transform: translateX(-50%);
     width: 25px;
     height: 25px;
     border-radius: 50%;
     background: #000;
     transition: all .4s ease-in-out
 }

 .timeline ul li.in-view,
 .timeline ul li.in-view:before {
     transition: .125s ease-in-out, background-color .2s ease-out, color .1s ease-out, border .1s ease-out
 }

 .timeline ul li.in-view:before {
     content: "";
     position: absolute;
     left: 54%;
     top: -41px;
     transform: translateX(-50%);
     width: 24px;
     height: 24px;
     border-radius: 50%;
     background-color: #2755b0
 }

 .left-date {
     margin-right: 25px;
     float: right
 }

 .left-date,
 .right-date {
     border: 1px solid #000;
     border-radius: 10px;
     padding: 5px 16px;
     font-weight: 700;
     font-size: 18px;
     color: #000
 }

 .right-date {
     margin-left: 25px;
     float: left
 }

 .right-content {
     margin-left: 25px;
     float: left;
     max-width: 240px
 }

 .left-content,
 .right-content {
     border-radius: 10px;
     background: #f1f3f7;
     padding: 5px 16px;
     text-align: center;
     font-size: 14px;
     font-weight: 500
 }

 .left-content {
     margin-right: 25px;
     float: right;
     max-width: 268px
 }

 .aim-night-section {
     padding: 60px 20px;
     color: #fff
 }

 .aim-night-section .subtext {
     text-align: start;
     font-size: 15px;
     max-width: 900px;
     line-height: 1.6;
     margin: auto auto 30px
 }

 .aim-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
     align-items: flex-start
 }

 .right-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     grid-gap: 16px;
     gap: 16px;
     flex: 1 1
 }

 .right-grid img {
     width: 100%;
     border-radius: 12px;
     object-fit: cover;
 }

 .box-review-small {
     padding: 22px;
     background: #fff;
     transition: all .3s ease-in-out;
     transform: translateY(-4px);
 }

 .img-back-grey {
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: #f4f6fc;
     border-radius: 50%;
     width: 100px !important;
     height: 100px
 }

 /* 
 .presence-section {
     background-color: #fff;
     padding: 60px 20px;
     text-align: center
 }

 .section-title {
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 40px
 }

 .presence-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 90px
 }

 .presence-item {
     max-width: 221px;
     text-align: center
 }

 .con-icon {
     width: 130px;
     height: 130px;
     margin-bottom: 15px;
     border-radius: 50%;
     background-color: #e9f2ff;
     padding: 30px;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-left: auto;
     margin-right: auto
 }

 .presence-icon {
     width: 60px
 }

 .presence-item h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 8px
 }

 .presence-item p {
     font-size: 13px;
     color: #444;
     line-height: 1.5
 } */






















 /*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
 .sec-title h4 {
     font-size: 30px;
     font-weight: 800;
     line-height: 40px;
     color: #000;
 }

 .sec-title span {
     display: block;
 }

 .sec-title p {
     font-size: 16px;
     font-weight: 500;
     line-height: 24px;
     color: #222;
     margin: 12px 0 0;
 }

 .home-sec-title.sec-title h4 {
     color: var(--accent-color);
 }

 .who-we-text .sec-title h4 {
     color: var(--accent-color-2);
 }

 /*--------------------------------------------------------------
# Trending Section 
--------------------------------------------------------------*/
 .div-border {
     width: 100%;
     height: 100%;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 15px;
     padding: 30px;
 }

 .trending-slider,
 .inter-slider {
     margin-top: 40px;
 }

 .trending-slider .item,
 .inter-slider .item {
     text-align: center;
     font-size: 18px;
     display: flex;
     justify-content: center;
     align-items: center;
     background: none;
     width: 100%;
 }

 .owl-carousel__nav.trending-nav,
 .owl-carousel__nav.inter-nav,
 .owl-carousel__nav.domestic-nav,
 .slides-nav,
 .owl-carousel__nav.wander-nav,
 .owl-carousel__nav.escape-nav,
 .owl-carousel__nav.landing-trips-nav-sec,
 .owl-carousel__nav.testi-2-nav-sec,
 .owl-carousel__nav.inner-tour-nav,
 .owl-carousel__nav.best-deal-nav,
 .owl-carousel__nav.why-nav,
 .owl-carousel__nav.living-nav,
 .owl-carousel__nav.corpo-nav {
     display: flex;
     justify-content: flex-end;
     position: relative
 }

 .trending-nav .trending-prev,
 .trending-nav .trending-next,
 .inter-nav .owl-carousel__prev,
 .inter-nav .owl-carousel__next,
 .domestic-nav .owl-carousel__prev,
 .domestic-nav .owl-carousel__next,
 .slides-nav .slides.slides-next,
 .slides-nav .slides.slides-prev,
 .wander-nav .owl-carousel__prev,
 .wander-nav .owl-carousel__next,
 .inner-tour-nav .owl-carousel__prev,
 .inner-tour-nav .owl-carousel__next,
 .best-deal-nav .owl-carousel__prev,
 .best-deal-nav .owl-carousel__next,
 .why-nav .owl-carousel__prev,
 .why-nav .owl-carousel__next,
 .living-nav .owl-carousel__prev,
 .living-nav .owl-carousel__next,
 .corpo-nav .owl-carousel__prev,
 .corpo-nav .owl-carousel__next {
     border-radius: 50%;
     background: var(--accent-color);
     width: 30px;
     height: 30px;
     display: flex;
     justify-content: center;
     align-items: center;
     position: absolute;
 }

 .owl-carousel__nav.escape-nav .owl-carousel__prev,
 .owl-carousel__nav.escape-nav .owl-carousel__next,
 .owl-carousel__nav.landing-trips-nav-sec .owl-carousel__next,
 .owl-carousel__nav.landing-trips-nav-sec .owl-carousel__prev,
 .owl-carousel__nav.testi-2-nav-sec .owl-carousel__prev,
 .owl-carousel__nav.testi-2-nav-sec .owl-carousel__next,
 .owl-carousel__nav.inner-tour-nav .owl-carousel__prev,
 .owl-carousel__nav.inner-tour-nav .owl-carousel__next,
 .owl-carousel__nav.best-deal-nav .owl-carousel__prev,
 .owl-carousel__nav.best-deal-nav .owl-carousel__next,
 .owl-carousel__nav.why-nav .owl-carousel__prev,
 .owl-carousel__nav.why-nav .owl-carousel__next,
 .owl-carousel__nav.living-nav .owl-carousel__prev,
 .owl-carousel__nav.living-nav .owl-carousel__next,
 .owl-carousel__nav.corpo-nav .owl-carousel__prev,
 .owl-carousel__nav.corpo-nav .owl-carousel__next {
     position: absolute;
     z-index: 1;
 }

 .owl-carousel__nav.trending-nav .owl-carousel__prev i,
 .owl-carousel__nav.trending-nav .owl-carousel__next i,
 .owl-carousel__nav.inter-nav .owl-carousel__prev i,
 .owl-carousel__nav.inter-nav .owl-carousel__next i,
 .owl-carousel__nav.domestic-nav .owl-carousel__prev i,
 .owl-carousel__nav.domestic-nav .owl-carousel__next i,
 .slides-nav i,
 .owl-carousel__nav.wander-nav .owl-carousel__prev i,
 .owl-carousel__nav.wander-nav .owl-carousel__next i,
 .owl-carousel__nav.escape-nav .owl-carousel__prev i,
 .owl-carousel__nav.escape-nav .owl-carousel__next i,
 .owl-carousel__nav.inner-tour-nav .owl-carousel__prev i,
 .owl-carousel__nav.inner-tour-nav .owl-carousel__next i,
 .owl-carousel__nav.best-deal-nav .owl-carousel__prev i,
 .owl-carousel__nav.best-deal-nav .owl-carousel__next i,
 .owl-carousel__nav.why-nav .owl-carousel__prev i,
 .owl-carousel__nav.why-nav .owl-carousel__next i,
 .owl-carousel__nav.living-nav .owl-carousel__prev i,
 .owl-carousel__nav.living-nav .owl-carousel__next i,
 .owl-carousel__nav.corpo-nav .owl-carousel__prev i,
 .owl-carousel__nav.corpo-nav .owl-carousel__next i {
     font-size: 14px;
     font-weight: bolder;
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--contrast-color);
 }

 .owl-carousel__nav.trending-nav .owl-carousel__prev {
     left: 75%;
 }

 .owl-carousel__nav.inner-tour-nav .owl-carousel__prev {
     left: 75%;
 }

 .owl-carousel__nav.best-deal-nav .owl-carousel__prev {
     left: 75%;
 }

 .owl-carousel__nav.living-nav .owl-carousel__prev {
     left: 75%;
 }

 .owl-carousel__nav.trending-nav .owl-carousel__next,
 .owl-carousel__nav.inter-nav .owl-carousel__next,
 .slides-nav .slides.slides-next,
 .owl-carousel__nav.inner-tour-nav .owl-carousel__next,
 .owl-carousel__nav.corpo-nav .owl-carousel__next {
     right: 0%;
 }

 .owl-carousel__nav.inter-nav .owl-carousel__prev,
 .owl-carousel__nav.domestic-nav .owl-carousel__prev,
 .owl-carousel__nav.wander-nav .owl-carousel__prev,
 .owl-carousel__nav.corpo-nav .owl-carousel__prev {
     left: 70%;
 }

 .slides-nav .slides.slides-prev {
     left: 75%;
 }

 .trending-nav .trending-prev {
     left: 78%;
 }

 /* .trending-nav .trending-next {
     right: 11%;
 } */

 .trending-nav .trending-prev i,
 .trending-nav .trending-next i {
     color: #fff;
 }

 .owl-carousel__nav.escape-nav .owl-carousel__prev,
 .owl-carousel__nav.escape-nav .owl-carousel__next {
     top: -240px;
 }

 .owl-carousel__nav.escape-nav .owl-carousel__prev {
     left: -2%;
 }

 .owl-carousel__nav.escape-nav .owl-carousel__next {
     right: -2%;
 }

 .owl-carousel__nav.why-nav .owl-carousel__prev,
 .owl-carousel__nav.why-nav .owl-carousel__next {
     top: 100px;
 }

 .owl-carousel__nav.why-nav .owl-carousel__next {
     right: 0
 }

 .owl-carousel__nav.why-nav .owl-carousel__prev {
     left: 0
 }

 .slides-box img {
     width: 100% !important;
     position: relative !important;
     z-index: 0
 }

 /*--------------------------------------------------------------
# Trending Destinations Section 
--------------------------------------------------------------*/
 .trending-places .sec-title img {
     max-width: 25px;
 }

 .trending-div {
     overflow: hidden;
 }

 .zoom-pic {
     overflow: hidden;
     aspect-ratio: 1.9 / 2.8;
     border-radius: 100px;
 }

 .zoom-pic img {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover;
     aspect-ratio: 1.9 / 2.8;
     border-radius: 100px;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
 }

 .trending-div a:hover .zoom-pic img {
     -ms-transform: scale(1.05, 1.05);
     -webkit-transform: scale(1.05, 1.05);
     -moz-transform: scale(1.05, 1.05);
     -o-transform: scale(1.05, 1.05);
     transform: scale(1.05, 1.05);
 }

 .trending-div h5 {
     margin: 15px 0 0;
     font-size: 16px;
     color: #222;
     font-weight: 500;
     text-transform: capitalize;
     text-align: center;
 }

 /*--------------------------------------------------------------
# Home Slider Section 
--------------------------------------------------------------*/

 .hero-banner {
     margin: 90px 0 0;
     padding: 60px 0 0;
     background-size: contain !important;
     background-repeat: no-repeat !important;
     background-position: bottom !important;
     height: auto !important;
 }

 .hero-banner.head-hero {
     margin: 80px 0 0;
 }

 .home {
     height: 75vh;
     position: relative;
     text-align: center;
 }

 .banne-icon img {
     height: auto !important;
 }

 .hero-banner .home .overlay {
     width: 100%;
     height: 75vh;
     background-color: rgb(0 0 0 / 40%);
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     margin: 0 auto;
     z-index: 4;
     border-radius: 20px;
 }

 .hero-banner .home video,
 .hero-banner .home img {
     position: absolute;
     width: 100%;
     height: 75vh;
     object-fit: cover;
     border-radius: 20px;
     margin: 0 auto;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .hero-banner .home img {
     z-index: 1;
 }

 .hero-banner .home video {
     z-index: 2;
 }

 .home .home-content {
     position: absolute;
     color: #fff;
     top: 26%;
     left: 0;
     right: 0;
     margin: auto;
 }

 .home-content h1 {
     font-size: 35px;
     line-height: 1;
     color: var(--accent-color-2);
     font-weight: 400;
     margin-top: 0px;
 }

 .home-content h1 span {
     font-size: 35px;
     line-height: 45px;
     color: #ffffff;
     font-weight: 400;
 }

 .mob-break {
     font-style: normal;
 }

 .home-content .abt-ban-heading {
     font-size: 65px;
     line-height: 75px;
     color: #ffffff;
     font-weight: 700;
 }

 .home-content h2 {
     font-size: 65px;
     line-height: 75px;
     color: #ffffff;
     font-weight: 700;
 }

 .banne-icon {
     display: inline-block;
     width: 60px;
     height: 60px;
     margin: 0 0 0 5px;
 }

 .banne-icon img {
     width: 100%;
     max-width: 60px;
     height: 60px;
 }

 .cta-botm.ban-botm-line span {
     color: var(--accent-color-2);
 }

 .cta-botm.ban-botm-line ul li {
     font-size: 14px;
     border-right: 1px solid #fff;
     border-width: 2px
 }

 .cta-botm.ban-botm-line ul li span {
     padding: 0 2px 0 0;
 }

 .cta-botm.ban-botm-line ul li span i {
     color: var(--accent-color-2);
     -webkit-text-stroke: 0.2px;
     font-size: 14px;
 }

 .h-search-form {
     text-align: center;
     padding: 30px 0 20px;
 }

 .h-search-form .ban-search-form {
     position: relative;
     max-width: 600px;
     margin: auto;
 }

 .h-search-form input {
     padding: 0 60px 0 30px;
     border-radius: 50px;
     border: none;
     font-weight: 400;
     font-size: 14px;
     text-transform: capitalize;
     color: #333;
     height: 70px;
     width: 600px;
     position: relative
 }

 .h-search-form button {
     border: none;
     background: none;
 }

 .h-search-form button .search-ico {
     position: absolute;
     right: 53px;
     top: 17%;
 }

 .h-search-form button .search-ico img {
     width: 40px;
     height: 40px;
 }

 /*--------------------------------------------------------------
# Marquee - News Seen
--------------------------------------------------------------*/
 .marquee {
     box-sizing: border-box;
     position: relative;
     width: 100%;
     overflow: hidden;
 }

 .marquee--inner {
     display: flex;
     width: fit-content;
     animation: marquee 20s linear infinite;
 }

 .marquee--inner:hover {
     animation-play-state: paused;
 }

 .marquee--inner span {
     flex: 0 0 auto;
     margin-right: 20px;
     /* spacing between items */
 }

 .news-div img {
     height: 80px;
     /* adjust as per design */
     width: auto;
     border-radius: 6px;
 }

 @keyframes marquee {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /*--------------------------------------------------------------
# Category Section 
--------------------------------------------------------------*/
 .categ-div {
     text-align: center;
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     margin: 5px auto;
     display: block;
 }

 .cat-img {
     width: 120px;
     height: 120px;
     object-fit: cover;
     overflow: hidden;
     margin: auto;
     display: flex;
     justify-content: center;
 }

 .cat-img img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     overflow: hidden;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
     margin: auto;
     display: flex;
     justify-content: center;
 }

 .categ-div h5 {
     text-align: center;
     font-size: 15px;
     line-height: 20px;
     font-weight: 500;
     margin: 15px 0 0;
     color: #222;
 }

 .categ-div:hover img {
     -ms-transform: scale(1.1, 1.1);
     -webkit-transform: scale(1.1, 1.1);
     -moz-transform: scale(1.1, 1.1);
     -o-transform: scale(1.1, 1.1);
     transform: scale(1.1, 1.1);
 }

 .categ-div:hover h5 {
     font-weight: 600;
 }

 /*--------------------------------------------------------------
# International Getaways Section 
--------------------------------------------------------------*/
 .international .inter-bg,
 .wander .inter-bg {
     margin: 75px 0 0;
 }

 .international .inter-bg img,
 .wander .inter-bg img {
     width: 114%;
 }

 .domestic .inter-bg {
     margin: 0;
 }

 .domestic .inter-bg img {
     width: 122%;
 }

 .inter-div {
     position: relative;
     aspect-ratio: 4 / 3;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 20px;
     width: 290px;
     height: 200px;
 }

 .inter-pic {
     position: relative;
     height: 200px !important;
     width: 100% !important;
     object-fit: cover;
     border-radius: 15px;
     overflow: hidden;
     aspect-ratio: 4 / 3;
 }

 .inter-pic img {
     height: 200px !important;
     width: 100% !important;
     border-radius: 15px;
     object-fit: cover;
     aspect-ratio: 4 / 3;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
 }


 .inter-pic img::before {
     background: #000000;
     background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0.47) 65%, rgba(255, 255, 255, 0) 100%);
     position: absolute;
     content: "";
     top: 0;
     left: 0;
     right: 0;
     margin: auto;
 }

 .inter-text {
     position: absolute;
     bottom: 0%;
     left: 0%;
     padding: 40px 20px 20px;
     border-radius: 15px;
     background: linear-gradient(180deg, rgba(102, 0, 0, 0) 0%, rgb(0 0 0 / 120%) 100%);
     width: 100%;
 }

 .inter-text h5 {
     font-size: 16px;
     color: #fff;
     font-weight: 600;
     margin: 0 0 3px;
     text-align: left;
 }

 .inter-text p {
     font-size: 13px;
     color: #fff;
     font-weight: 500;
     margin: 0;
     text-align: left;
 }

 .inter-div:hover .inter-pic img {
     -ms-transform: scale(1.1, 1.1);
     -webkit-transform: scale(1.1, 1.1);
     -moz-transform: scale(1.1, 1.1);
     -o-transform: scale(1.1, 1.1);
     transform: scale(1.1, 1.1);
 }

 .inter-div .inter-icon {
     position: absolute;
     top: 4%;
     right: 3%;
     border-radius: 50%;
     border: 2px solid var(--contrast-color);
     width: 30px;
     height: 30px;
     line-height: 30px;
     transform: rotate(-45deg);
 }

 .inter-div .inter-icon i {
     font-size: 25px;
     color: var(--contrast-color);
 }

 .inter-div:hover .inter-icon {
     background: var(--contrast-color);
     border: 2px solid var(--contrast-color);
 }

 .inter-div:hover .inter-icon i {
     color: var(--accent-color);
     border: none;
 }

 /*--------------------------------------------------------------
# Upcoming Trips Section 
--------------------------------------------------------------*/
 .month-btns {
     margin: 15px 0 6px 0;
 }

 .month-btns ul {
     display: flex;
     align-items: center;
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .month-btns ul li {
     padding: 0 10px 0 0;
 }

 .month-btn {
     font-size: 12px;
     font-weight: 500;
     color: #222;
     border-radius: 40px;
     padding: 6px 20px;
     border: 1px solid #ffffff;
     background-color: rgb(244, 246, 252);
 }

 .month-btn.active {
     color: white;
     background-color: #2755b0;
     border: 1px solid #2755b0;
 }

 .more-month {
     padding: 8px 14px;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 600;
     transition: all 0.3s ease;
     background-color: var(--accent-color);
     border: 2px solid var(--accent-color);
     color: var(--contrast-color);
     display: inline-block;
     text-align: center;
 }

 .more-month i {
     font-size: 16px;
     padding: 0 5px 0 0;
 }

 .more-month:hover {
     color: var(--accent-color);
     background: var(--contrast-color);
 }

 .tour-connect {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     width: 52%;
 }

 .inner-tour-sec .tour-connect {
     width: 65%;
 }

 .tour-btnicon {
     margin: 0 3px;
 }

 .tour-btnicon {
     width: 32px;
     height: 32px;
     line-height: 32px;
     border-radius: 50%;
     border: 1px solid var(--contrast-color);
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .tour-btnicon i {
     font-size: 17px;
     color: var(--contrast-color);
 }

 .tour-connect a,
 .tour-connect button {
     font-size: 12px;
     font-weight: 600;
     color: #000;
     border-radius: 6px;
     padding: 5px 6px;
     border: 1px solid var(--contrast-color);
     background: var(--contrast-color);
 }

 .destination-card a:hover,
 .destination-card button:hover {
     color: var(--contrast-color);
     border: 1px solid var(--accent-color);
     background: var(--accent-color);
     transition: all 0.4s ease;
 }

 .tour-pricing {
     font-size: 14px;
     line-height: 24px;
     line-height: 15px;

 }

 .tour-pricing .price {
     font-size: 14px;
     line-height: 24px;
     font-weight: 700;
     color: #fff;
 }

 .tour-pricing .per {
     font-size: 11px;
     color: #eee;
     text-decoration: line-through;
     margin: 0 0 0 4px;
 }

 .tour-pricing em {
     font-size: 11px;
     line-height: 10px;
     color: #eee;
     font-weight: 500;
     font-style: normal;
 }

 /*--------------------------------------------------------------
# Featured News Section 
--------------------------------------------------------------*/
 .news-sec {
     text-align: start;
     padding: 20px;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 30px;
 }

 .news-div img {
     width: 100%;
     max-width: 150px;
     padding: 0px;
 }

 .marquee {
     box-sizing: border-box;
     position: relative;
     width: 100%;
     overflow: hidden;
 }

 .marquee--inner {
     display: flex;
     width: fit-content;
     animation: marquee 20s linear infinite;
 }

 .marquee--inner:hover {
     animation-play-state: paused;
 }

 .marquee--inner span {
     flex: 0 0 auto;
     margin-right: 20px;
     /* spacing between items */
 }

 .news-div img {
     height: 80px;
     /* adjust as per design */
     width: auto;
     border-radius: 2px;
 }

 @keyframes marquee {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /*--------------------------------------------------------------
# Wanderlust Section
--------------------------------------------------------------*/
 .wander-pic {
     position: relative;
     width: 100%;
     border-radius: 22px;
     object-fit: contain;
     overflow: hidden !important;
     /* height: 500px; */
     display: flex;
     align-items: start;
     border: none;
     /* border-left: 8px solid #fff;
     border-right: 8px solid #fff;
     border-top: 8px solid #fff; */
 }

 .wander-pic img {
     width: 100%;
     border-radius: 22px;
     position: relative;
     /* height: 500px; */
     object-fit: contain;
 }

 .wander-pic video {
     /* height: 530px; */
     width: 100% !important;
     border-radius: 14px;
     margin: -1px 0 0;
     position: absolute;
     top: 0;
     left: 0;
     z-index: 2;
 }

 .insta-mute {
     position: absolute;
     bottom: 20px;
     right: 20px;
     background: rgba(0, 0, 0, 0.6);
     border-radius: 50%;
     color: #fff;
     border: none;
     cursor: pointer;
     width: 30px;
     height: 30px;
     line-height: 30px;
     z-index: 4;
 }

 .about-pg-insta .wander-pic video {
     /* height: 545px; */
 }

 .insta-sec .wander-pic {
     margin: 0 0 25px;
 }

 .insta-sec .wander-pic video {
     margin: 0;
 }

 /* .loading-image {
  animation: loading 3s linear infinite;
  background-image: linear-gradient(
    90deg,
    #f5f4f4 0px,
    #fafafa 40px,
    #f5f4f4 80px
  );
  background-color: #f5f4f4;
  background-repeat: no-repeat;
}

@keyframes loading {
  0% {
    background-position: -40px;
  }
  30%,
  100% {
    background-position: 128px;
  }
} */
 /*--------------------------------------------------------------
# Brand Slider Section 
--------------------------------------------------------------*/
 .brands-sec {
     margin: 30px 0 0;
 }

 .brands-sec {
     overflow: hidden;
 }

 .brands-sec .marquee {
     box-sizing: border-box;
     position: relative;
     width: 100%;
     overflow: hidden;
     margin-bottom: 15px;
 }

 .brands-sec .marquee--inner {
     display: flex;
     width: fit-content;
     animation: marquee 40s linear infinite;
 }

 .brands-sec .marquee.reverse .marquee--inner {
     animation: marquee-reverse 20s linear infinite;
     /* slightly slower + opposite direction */
 }

 .brands-sec .marquee--inner:hover {
     animation-play-state: paused;
 }

 .brands-sec .marquee--inner span {
     flex: 0 0 auto;
     margin-right: 20px;
 }

 .brands-sec .news-div img {
     max-width: 450px;
     width: auto;
     border-radius: 6px;
 }

 @keyframes marquee {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 @keyframes marquee-reverse {
     0% {
         transform: translateX(-50%);
     }

     100% {
         transform: translateX(0);
     }
 }

 /*--------------------------------------------------------------
# Features Section 
--------------------------------------------------------------*/
 .go-features {
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     width: 100%;
     height: auto;
     padding: 120px 0 0;
     position: relative;
 }

 .feature-left {
     position: absolute;
     bottom: 0;
 }

 .feature-left img {
     width: 100%;
     max-width: 500px;
 }

 .feature-rt h3 {
     font-size: 28px;
     font-weight: 700;
     color: #fff;
     line-height: 34px;
     margin: 0 0 60px;
 }

 .feature-rt .feature-card {
     display: flex;
     align-items: center;
     background: #fff;
     border-radius: 14px;
     padding: 20px;
     margin: 0 0 30px;
 }

 .feature-rt .feature-card .fea-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--accent-color-2);
     border-radius: 50%;
     width: 60px;
     height: 60px;
 }

 .feature-rt .feature-card .fea-icon img {
     max-width: 30px;
 }

 .feature-rt .feature-card .fea-text {
     margin: 0 0 0 25px;
 }

 .feature-rt .feature-card .fea-text h5 {
     font-size: 18px;
     font-weight: 600;
     color: #000;
     line-height: 20px;
     margin: 0 0 10px;
 }

 .feature-rt .feature-card .fea-text p {
     font-size: 14px;
     font-weight: 500;
     color: #222;
     line-height: 18px;
     margin: 0;
 }

 /*--------------------------------------------------------------
# Slides Section 
--------------------------------------------------------------*/
 .slides-box img {
     width: 100%;
     border-radius: 20px;
     overflow: hidden;
     margin: 0 0 20px;
 }

 /*--------------------------------------------------------------
# Why Us Section 
--------------------------------------------------------------*/
 .feature-item {
     padding: 0 75px 0 0;
     height: 100%;
 }

 .feature-item .feature-icon img {
     max-width: 60px;
     margin: 0 0 40px;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
 }

 .feature-item:hover .feature-icon img {
     -ms-transform: scale(1.1, 1.1);
     -webkit-transform: scale(1.1, 1.1);
     -moz-transform: scale(1.1, 1.1);
     -o-transform: scale(1.1, 1.1);
     transform: scale(1.1, 1.1);
 }

 .feature-item h5 {
     font-size: 16px;
     line-height: 22px;
     font-weight: 700;
     margin: 0 0 10px;
     color: var(--heading-color);
 }

 .feature-item p {
     font-size: 14px;
     line-height: 20px;
     color: #222;
     margin: 0;
 }

 /*--------------------------------------------------------------
# Blogs Section 
--------------------------------------------------------------*/
 .blog-card {
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     position: relative;
     border-radius: 15px;
 }

 .blog-card .blog-pic {
     overflow: hidden;
     border-radius: 15px;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
 }

 .blog-card .blog-pic img {
     width: 100%;
     border-radius: 15px;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
 }

 .blog-card .blog-text {
     padding: 15px;
 }

 .blog-card .blog-text h5 {
     font-size: 15px;
     line-height: 20px;
     font-weight: 600;
     margin: 0 0 20px;
     color: #222;
 }

 .blog-card .blog-text p {
     font-size: 12px;
     line-height: 18px;
     font-weight: 400;
     margin: 0;
     color: #626262;
 }

 .blog-card:hover .blog-pic img {
     -ms-transform: scale(1.1, 1.1);
     -webkit-transform: scale(1.1, 1.1);
     -moz-transform: scale(1.1, 1.1);
     -o-transform: scale(1.1, 1.1);
     transform: scale(1.1, 1.1);
 }

 .blog-card .inter-icon {
     position: absolute;
     top: 4%;
     right: 3%;
     border-radius: 50%;
     border: 2px solid var(--contrast-color);
     background-color: transparent;
     width: 30px;
     height: 30px;
     line-height: 30px;
     transform: rotate(-45deg);
 }

 .blog-card .inter-icon i {
     font-size: 25px;
     color: var(--contrast-color);
 }

 .blog-card:hover .inter-icon {
     background: var(--contrast-color) !important;
     border: 2px solid var(--contrast-color);
 }

 /* .blog-card:hover .inter-icon {
     background-color: var(--accent-color);
 } */
 .blog-card:hover i {
     color: var(--accent-color);
 }

 /*--------------------------------------------------------------
# About Section 
--------------------------------------------------------------*/
 .go-about-sec p {
     margin: 10px 0 15px;
     font-size: 16px;
     line-height: 23px;
     text-align: left;
 }

 .go-about-sec ul li {
     font-size: 16px;
     line-height: 23px;
     text-align: left;
     padding: 6px 0;
 }

 .abt-desc h2,
 .go-about-sec h2,
 .go-about-sec h2 strong,
 .go-about-sec h3 {
     font-size: 20px;
     line-height: 30px;
     font-weight: 600;
 }

 .abt-desc a {
     color: var(--accent-color) !important;
     font-weight: 600;
 }

 .go-about-sec details {
     position: relative;
     text-align: center;
 }

 .go-about-sec details summary {
     display: block;
     cursor: pointer;
     color: #000;
     width: 100%;
     text-align: center;
 }

 .go-about-sec details summary:focus {
     outline: none;
 }

 .go-about-sec details[open] {
     display: block;
     padding-bottom: 25px;
     padding-top: 10px;
     animation: open 0.2s linear;
 }

 .go-about-sec details[open] summary {
     position: absolute;
     bottom: 0;
     left: 0;
 }

 .go-about-sec details #open {
     padding-left: 5px;
     text-align: center;
     font-size: 14px;
     font-weight: 400;
     color: #333;
 }

 .go-about-sec details #open i {
     font-size: 14px;
     font-weight: 800;
     -webkit-text-stroke: 2px;
 }

 .go-about-sec details[open] #open {
     display: none;
 }

 .go-about-sec details #close {
     display: none;
 }

 .go-about-sec details[open] #close {
     display: block;
 }

 .go-about-sec ::-webkit-details-marker {
     display: none;
 }

 @keyframes open {
     0% {
         opacity: 0;
         transform: translateY(-10px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /*--------------------------------------------------------------
# Testimonial Section 
--------------------------------------------------------------*/
 .testi-card {
     margin: 15px 2px;
 }

 .testi-left {
     border-radius: 15px;
     padding: 20px;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
 }

 .testi-left .testi-left-title {
     display: flex;
     align-items: center;
 }

 .testi-left .testi-left-title .testi-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--accent-color-2);
     border-radius: 50%;
     width: 40px;
     height: 40px;
     line-height: 40px;
     margin: 0 15px 0 0;
 }

 .testi-left .testi-left-title .testi-icon h6 {
     font-size: 14px;
     line-height: 22px;
     font-weight: 600;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0;
 }

 .testi-left .testi-left-title {
     margin: 0 0 15px;
 }

 .testi-left .testi-left-title .testi-title h5 {
     font-size: 13px;
     line-height: 18px;
     font-weight: 600;
     margin: 0;
 }

 .testi-left .testi-left-title .testi-title p {
     font-size: 11px;
     line-height: 16px;
     font-weight: 500;
     margin: 0;
     color: #9f9f9f;
 }

 .testi-review p {
     margin: 0;
     font-size: 12px;
     line-height: 16px;
     font-weight: 400;
     text-overflow: ellipsis;
     word-wrap: break-word;
     overflow: hidden;
     max-height: 6.5em;
 }

 .testi-image {
     position: relative;
     width: 100%;
     /*     max-width: 350px;*/
     border-radius: 14px;
     overflow: hidden;
     position: relative;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     margin: 15px 0;
     object-fit: cover;
 }

 .testi-image img {
     width: 100%;
     border-radius: 14px;
     position: relative;
     z-index: 0;
     object-fit: cover;
 }

 .testi-image.tall img {
     height: 290px;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
     object-fit: cover;
 }

 .testi-image.short img {
     height: 225px;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
     object-fit: cover;
 }

 .testi-image img:hover {
     -ms-transform: scale(1.1, 1.1);
     -webkit-transform: scale(1.1, 1.1);
     -moz-transform: scale(1.1, 1.1);
     -o-transform: scale(1.1, 1.1);
     transform: scale(1.1, 1.1);
 }

 .testi-location {
     position: absolute;
     left: 0;
     right: 0;
     width: 100%;
     margin: 0 auto;
     text-align: left;
     bottom: 0%;
     padding: 40px 20px 20px;
     border-radius: 4px;
     background: linear-gradient(180deg, rgba(102, 0, 0, 0) 0%, rgb(0 0 0 / 67%) 100%);
     display: flex;
     align-items: center;
 }

 .testi-location i {
     color: #fff;
     font-size: 12px;
     padding: 0 6px 0 0;
 }

 .testi-location h6 {
     color: #fff;
     font-size: 14px;
     margin: 0;
 }

 /*--------------------------------------------------------------
# Inner Page - Banner Section 
--------------------------------------------------------------*/
 .inner-banner {
     padding: 0;
     position: relative;
     z-index: 6
 }

 #banner-carousel {
     position: relative;
     z-index: 44;
     top: 0;
     left: 0;
     right: 0;
     height: 100vh;
     width: 100%;
 }

 .inner-banner-box .inner-ban-pic {
     width: 100%;
     height: 85vh;
     position: relative;
     object-fit: cover;
 }

 .inner-banner-box .inner-ban-pic::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     margin: auto;
     background: #000;
     background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.61) 30%, rgba(0, 0, 0, 0) 59%);
     width: 100%;
     height: 100%;
 }

 .inner-banner-box .inner-ban-pic img {
     object-fit: cover;
     width: 100%;
     height: 100%;
 }

 .inner-fixed-text {
     position: absolute;
     top: 22%;
     left: 0;
     z-index: 99;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     gap: 250px;
     width: 100vw;
     height: 100vh;
 }

 .banner-tour {
     margin: 0 0 280px;
 }

 .banner-tour h1 {
     font-weight: 800;
     color: var(--contrast-color);
     font-size: 50px;
     line-height: 60px;
     margin: 0 0 25px;
 }

 .banner-tour p,
 .banner-btn p {
     font-weight: 500;
     color: var(--contrast-color);
     font-size: 20px;
     line-height: 30px;
     width: 60%
 }

 .banner-btn p span {
     color: var(--accent-color-2);
     font-weight: 600;
 }

 .banner-btn a {
     color: #000;
     font-weight: 600;
     background: var(--accent-color-2);
     border-radius: 40px;
     padding: 10px 25px;
     font-size: 18px;
     margin: 6px 0 0;
     display: inline-block;
 }

 .banner-btn a:hover {
     color: var(--accent-color);
     background: #ffffff;
 }

 /*--------------------------------------------------------------
# Inner Page - Bestsellers Section 
--------------------------------------------------------------*/
 .explore-more a {
     padding: 10px 20px;
     border-radius: 50px;
     font-size: 16px;
     font-weight: 600;
     transition: all 0.3s ease;
     background-color: var(--accent-color);
     border: 1px solid var(--accent-color);
     color: var(--contrast-color);
     display: block;
     text-align: center;
 }

 .explore-more a:hover {
     background-color: var(--contrast-color);
     border: 1px solid var(--accent-color);
     color: var(--accent-color);
 }

 /*--------------------------------------------------------------
# Inner Page - CTA Section 
--------------------------------------------------------------*/
 .inner-cta-left h5 {
     font-weight: 800;
     font-size: 30px;
     color: #000;
     width: 70%
 }

 .inner-cta-left p {
     font-weight: 500;
     font-size: 16px;
     color: #333;
     margin: 30px 0 0;
 }

 .cta-form input,
 .cta-form .form-select,
 .job-form input,
 .job-form .form-select,
 .job-form input[type="file"],
 .job-form textarea,
 .cta-form input[type="file"],
 .cta-form textarea,
 input[type="file" i] {
     background: rgb(244, 246, 252);
     border-radius: 60px;
     border: none;
     padding: 10px 20px 10px 40px;
     height: 50px;
     margin: 0 0 12px;
     font-size: 13px;
     color: #636363;
     width: 100%;
 }

 textarea.form-control {
     padding: 14px 0 0 44px !important;
 }

 .job-form .form-select,
 .cta-form .form-select {
     padding: 10px 20px;
 }

 .job-form ::file-selector-button,
 .cta-form ::file-selector-button {
     border: none;
     padding: 4px 0px;
     background: none;
 }

 .form-control[type=file]:not(:disabled):not([readonly]) {
     cursor: pointer;
     padding: 16px 25px 0;
     font-size: 12px;
 }

 .cta-submit-btn {
     padding: 10px 80px;
     border-radius: 50px;
     font-size: 16px;
     font-weight: 600;
     transition: all 0.3s ease;
     background-color: var(--accent-color);
     border: 1px solid var(--accent-color);
     color: var(--contrast-color);
     display: block;
     text-align: center;
     margin: 20px 0 0;
 }

 .cta-submit-btn:hover {
     background-color: var(--contrast-color);
     border: 1px solid var(--accent-color);
     color: var(--accent-color);
 }


 .cta-botm ul {
     margin: 20px 0 0;
     padding: 0;
     list-style: none;
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
 }

 .cta-botm ul li {
     font-size: 12px;
     border-right: 1px solid #777;
     padding: 0 5px 0 0;
     margin: 0 1px 0 0;
     border-width: 2px
 }

 .cta-botm ul li:last-child {
     border-right: none;
 }

 .cta-botm ul li i {
     font-size: 12px;
     padding: 0 4px;
     color: var(--accent-color);
     -webkit-text-stroke: 1px;
 }

 /*--------------------------------------------------------------
# Inner Page - Explore Section 
--------------------------------------------------------------*/
 .explore-card {
     border-radius: 15px;
     padding: 20px;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
 }

 .explore-pic {
     margin: 0 0 15px;
 }

 .explore-pic {
     overflow: hidden;
     border-radius: 15px;
     height: 200px;
     object-fit: cover;
 }

 .explore-pic img {
     width: 100%;
     border-radius: 15px;
     overflow: hidden;
     height: 200px;
     object-fit: cover;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
 }

 .explore-pic img:hover {
     width: 100%;
     border-radius: 15px;
     -ms-transform: scale(1.1, 1.1);
     -webkit-transform: scale(1.1, 1.1);
     -moz-transform: scale(1.1, 1.1);
     -o-transform: scale(1.1, 1.1);
     transform: scale(1.1, 1.1);
 }

 .explore-card h4 {
     font-size: 16px;
     line-height: 26px;
     font-weight: 600;
 }

 .explore-card p {
     font-size: 12px;
     line-height: 20px;
     font-weight: 400;
 }

 /*--------------------------------------------------------------
# Inner Page - Tour Card Section
--------------------------------------------------------------*/
 .inner-tour-card {
     border: 1px solid #ddd;
     border-radius: 14px;
 }

 .in-tour-head {
     position: relative;
 }

 .in-tour-img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     border-radius: 14px;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
     overflow: hidden;
 }

 .in-tour-img img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     border-radius: 14px;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
 }


 .inner-tour-card:hover .in-tour-img img {
     width: 100%;
     border-radius: 14px;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
     scale: 1.08;
 }

 .top-badge {
     position: absolute;
     top: 5%;
     left: 0;
 }

 .featured-badge {
     color: var(--contrast-color);
     padding: 6px 14px;
     border-radius: 4px;
     border-top-left-radius: 0;
     border-bottom-left-radius: 0;
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
     background: #FF3532;
     background: linear-gradient(82deg, rgba(255, 53, 50, 1) 0%, rgba(255, 102, 64, 1) 65%, rgba(255, 139, 75, 1) 100%);
 }

 .botm-badge {
     position: absolute;
     bottom: 5%;
     right: 5%;
 }

 .botm-badge .price-tag {
     background-color: var(--accent-color-2);
     color: #000;
     padding: 6px 8px;
     border-radius: 8px;
     font-size: 12px;
     font-weight: 600;
     backdrop-filter: blur(10px);
     border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
 }

 .in-tour-body {
     padding: 12px;
 }

 .in-tour-body h5 {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 12px;
     padding-bottom: 12px;
     color: #000;
     line-height: 21px;
     border-bottom: 1px solid #a9a9a985;
     height: 50px;
 }

 .location-category .in-tour-body h5 {
     font-size: 20px;
     line-height: 33px;
     height: 40px;
 }

 .in-tour-body .tour-pricing .price {
     color: #000;
 }

 .in-tour-body .tour-pricing .per,
 .in-tour-body .tour-pricing em {
     color: #333;
 }

 .in-tour-body .tour-connect a,
 .in-tour-body .tour-connect button {
     color: var(--contrast-color);
     border: 1px solid var(--accent-color);
     background: var(--accent-color);
 }

 .in-tour-body .tour-btnicon {
     border: 1px solid var(--accent-color);
 }

 .in-tour-body .tour-btnicon i {
     color: var(--accent-color);
 }

 .in-tour-body:hover .tour-connect a {
     background: var(--contrast-color);
     color: var(--accent-color);
 }

 .in-tour-body:hover .tour-btnicon {
     background: var(--accent-color);
 }

 .in-tour-body:hover .tour-btnicon i {
     color: var(--contrast-color);
 }

 /*--------------------------------------------------------------
# Inner Page - Career Page
--------------------------------------------------------------*/
 .golife-pics img {
     width: 100%;
     border-radius: 10px;
 }

 .long-vertical {
     background-size: cover;
     width: 100%;
     height: 100%;
     background-position: center center;
     border-radius: 15px;
 }

 .small-vertical {
     background-size: cover;
     width: 100%;
     height: 250px;
     background-position: center center;
     border-radius: 15px;
 }

 .long-horizontal {
     background-size: cover;
     width: 100%;
     height: 250px;
     background-position: top center;
     border-radius: 15px;
 }

 .sq-pic {
     background-size: cover;
     width: 100%;
     height: 200px;
     background-position: center center;
     border-radius: 15px;
 }

 .big-square {
     background-size: cover;
     width: 100%;
     height: 100%;
     background-position: center center;
     border-radius: 15px;
 }

 .living-div {
     position: relative;
     border-radius: 20px;
     max-width: 280px;
     display: block;
     box-shadow: rgb(39 85 176) 10px 10px;
 }

 .living-pic {
     position: relative;
     width: 100%;
     max-width: 280px;
     border-radius: 15px;
     object-fit: cover;
     overflow: hidden;
 }

 .living-div .living-pic img {
     width: 100%;
     max-width: 280px;
     border-radius: 15px;
 }

 .living-div .wander-icon {
     position: absolute;
     bottom: 2%;
     right: 2%;
 }

 .position-list ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .position-list ul li .position-links {
     padding: 9px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     transition: all 0.3s ease;
     background-color: var(--accent-color);
     border: 2px solid var(--accent-color);
     color: var(--contrast-color);
     display: block;
     text-align: center;
     margin: 0 0 20px;
 }

 .position-list ul li .position-links.active,
 .position-list ul li .position-links:hover {
     background: rgb(244, 246, 252);
     color: var(--accent-color);
     border: 2px solid rgb(244, 246, 252);
 }

 .job-description h4 {
     font-size: 14px;
     font-weight: 700;
     color: #333;
 }

 .job-description h4 span {
     font-size: 14px;
     font-weight: 400;
     color: #333;
 }

 .job-description ul li {
     font-size: 13px;
     padding: 0 0 6px;
 }

 .position-detail .faq-list .accordion-button:not(.collapsed) {
     color: #000;
     border-bottom: 1px solid #bdbdbd;
     padding: 0 0 15px;
 }

 .faq-list .job-form {
     /* box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2); */
     border: 1px solid #c7c7c7;
 }

 .job-form {
     border-radius: 15px;
     padding: 30px;
 }

 .job-form h5 {
     font-size: 16px;
     margin: 0 0 30px;
 }

 .position-detail .faq-list .accordion-item {
     position: relative;
 }

 .hiring-btn {
     position: absolute;
     z-index: 3;
     color: #000;
     font-weight: 600;
     background: var(--accent-color-2);
     border-radius: 40px;
     padding: 6px 19px 3px;
     font-size: 13px;
     line-height: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     top: 12px;
     right: 75px;
 }

 .input-div,
 .select-div {
     position: relative;
 }

 .input-icon {
     position: absolute;
     top: 11px;
     left: 20px;
     margin: 0;
 }

 .select-icon {
     position: absolute;
     top: 14px;
     right: 20px;
     margin: 0;
 }

 .input-icon i,
 .select-icon i {
     font-size: 12px;
     color: #818181;
 }

 .go4-positions .sec-title p {
     width: 47%;
 }

 /*--------------------------------------------------------------
# CORPORATE PAGE
--------------------------------------------------------------*/
 .corporate-banner {
     background: rgb(244, 246, 252);
     padding: 40px 40px;
     border-radius: 20px;
     width: 100%;
     height: 100%;
     margin: 140px 0 0;
 }

 .corpo-left {
     display: flex;
     flex-direction: column;
     gap: 70px;
 }

 .corpo-text h1 {
     font-size: 40px;
     line-height: 50px;
     font-weight: 800;
     margin: 0 0 30px;
 }

 .corpo-text p {
     font-size: 20px;
     line-height: 30px;
     font-weight: 500;
 }

 .corpo-btn a {
     color: #fff;
     font-weight: 600;
     background: var(--accent-color);
     border-radius: 40px;
     padding: 10px 25px;
     font-size: 18px;
     border: 1px solid var(--accent-color);
 }

 .corpo-btn a:hover {
     background-color: var(--contrast-color);
     color: var(--accent-color);
     border: 1px solid var(--accent-color);
 }

 .corporate-banner .cta-botm ul {
     display: ruby;
 }

 .corporate-banner .cta-botm ul li:last-child {
     display: block;
 }

 .categ-div.corp-serv {
     height: 220px;
 }

 .corp-serv-pic {
     width: 80px;
     height: 80px;
     object-fit: cover;
     margin: 0 auto 10px;
 }

 .corp-serv-pic img {
     width: 100%;
     max-width: 50px;
     height: 50px;
     object-fit: cover;
     overflow: hidden;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
 }

 .cat-img {
     width: 80px;
     height: 120px;
     object-fit: cover;
     overflow: hidden;
     margin: auto;
     display: flex;
     justify-content: center;
 }

 .categ-div h5 {
     text-align: center;
     font-size: 15px;
     line-height: 20px;
     font-weight: 500;
     margin: 15px 0 0;
     color: #222;
 }

 .categ-div:hover img {
     -ms-transform: scale(1.1, 1.1);
     -webkit-transform: scale(1.1, 1.1);
     -moz-transform: scale(1.1, 1.1);
     -o-transform: scale(1.1, 1.1);
     transform: scale(1.1, 1.1);
 }





















 .categ-div.corp-serv h5 {
     font-size: 16px;
     color: #000;
     font-weight: 600;
     margin: 0 0 15px;
 }

 .categ-div.corp-serv p {
     font-size: 13px;
     line-height: 19px;
     margin: 0;
 }

 .corp-why-pic {
     position: relative;
     height: 600px;
     object-fit: cover;
     z-index: 2;
     border-radius: 14px;
     box-shadow: rgb(255 245 0) 15px 15px;
 }

 .corp-why-pic img {
     position: relative;
     width: 100%;
     height: 600px;
     object-fit: cover;
     border-radius: 14px;
     z-index: 2;
 }

 /*

 .corp-why-pic::after {
     position: absolute;
     content: "";
     background: var(--accent-color-2);
     width: 100%;
     max-width: 500px;
     height: 100%;
     bottom: -3%;
     right: 18%;
     z-index: 1;
     border-radius: 14px;
 }
*/

 .corpo-y-card {
     width: 45%;
     display: inline-block;
     float: inline-start;
     margin: 0 10px
 }

 .y-icon {
     width: 70px;
     height: 70px;
     line-height: 70px;
     border-radius: 50%;
     background: rgb(244, 246, 252);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 0 10px;
 }

 .y-icon img {
     max-width: 40px;
     -ms-transition: all 1s ease;
     -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
 }

 .corpo-y-card:hover .y-icon img {
     -ms-transform: scale(1.1, 1.1);
     -webkit-transform: scale(1.1, 1.1);
     -moz-transform: scale(1.1, 1.1);
     -o-transform: scale(1.1, 1.1);
     transform: scale(1.1, 1.1);
 }

 .corpo-y-card h5 {
     font-size: 16px;
     font-weight: 700;
     line-height: 26px;
     margin: 0 0 15px;
 }

 .corpo-y-card p {
     font-size: 13px;
     font-weight: 400;
     line-height: 19px;
     margin: 0 0 20px;
 }

 .corpo-cta {
     width: 100%;
     height: 55vh;
     background-size: cover !important;
     background-position: center !important;
     background-repeat: no-repeat !important;
     position: relative;
     z-index: -1;
 }

 .corpo-cta::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     margin: auto;
     background: #000;
     background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.61) 30%, rgba(0, 0, 0, 0) 59%);
     width: 100%;
     height: 100%;
     z-index: 0;
 }

 .corpo-cta-text {
     width: 40%;
     position: relative;
     z-index: 1;
 }

 .corpo-cta-text h3 {
     font-size: 40px;
     font-weight: 700;
     line-height: 50px;
     margin: 0 0 20px;
     color: #fff;
 }

 .corpo-cta-text h3 span {
     color: var(--accent-color-2);
     display: block;
 }

 .corpo-cta-text p {
     font-size: 18px;
     font-weight: 500;
     line-height: 28px;
     margin: 0 0 50px;
     color: #fff;
 }

 .corpo-cta-text .cta-btn {
     color: #000;
     font-weight: 600;
     background: var(--accent-color-2);
     border-radius: 40px;
     padding: 10px 25px;
     font-size: 18px;
 }

 .corpo-cta-text .cta-btn:hover {
     color: var(--accent-color);
     background: var(--contrast-color);
 }

 .rating-container {
     display: flex;
     gap: 20px;
     text-align: center;
 }

 .rating-container .circle {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: conic-gradient(#2057d4 calc(var(--rating) * 1%), #e0e0e0 0);
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     font-weight: bold;
     font-size: 1.4rem;
 }

 .rating-container .circle::before {
     content: "";
     position: absolute;
     width: 50px;
     height: 50px;
     background-color: #ffeb00;
     border-radius: 50%;
     z-index: 0;
 }

 .rating-container .circle span {
     position: relative;
     z-index: 1;
     font-weight: 700;
     color: #000;
     font-size: 18px;
 }

 .rating-container .label {
     margin-top: 10px;
     font-weight: 600;
     font-size: 12px;
 }

 .corpo-slide-div {
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     margin: 4px;
 }

 .corpo-slide-pic {
     border-radius: 20px;
     overflow: hidden;
     height: 300px;
     object-fit: cover;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
     position: relative;
     z-index: 0;
 }

 .corpo-slide-pic img {
     width: 100%;
     border-radius: 20px;
     overflow: hidden;
     height: 300px;
     object-fit: cover;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
 }

 .corpo-slide-text {
     background: #fff;
     border-radius: 20px;
     border-top-right-radius: 0;
     border-top-left-radius: 0;
     padding: 70px 0 8px;
     text-align: center;
     position: relative;
     z-index: 0;
 }

 .corp-brand-icon {
     position: absolute;
     top: -50px;
     left: 0;
     right: 0;
     margin: auto;
     width: 100px;
     height: 100px;
     line-height: 100px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     overflow: hidden;
     object-fit: cover;
     z-index: 1;
 }

 .corp-brand-icon img {
     width: 100% !important;
     overflow: hidden;
     object-fit: cover;
     height: auto;
     z-index: 1;
     position: relative;
     display: block
 }

 .corpo-slide-text h4 {
     color: #000;
     font-weight: 600;
     font-size: 18px;
     line-height: 28px;
 }

 .corpo-slide-text p {
     color: #000;
     font-weight: 400;
     font-size: 14px;
     line-height: 24px;
     margin: 0;
 }

 .corpo-slide-left {
     display: flex;
     flex-direction: column;
     gap: 100px;
 }

 .corpo-slide-para {
     color: #000;
     font-weight: 500;
     font-size: 14px;
     line-height: 24px;
 }

 .corpo-slider-sec .div-border {
     background: var(--accent-color-2)
 }

 .inner-tour-card.domestic-card .top-badge {
     right: 5%;
     left: auto;
 }

 .inner-tour-card.domestic-card .featured-badge {
     color: #000000;
     border-radius: 4px;
     background: var(--accent-color-2);
     text-transform: capitalize;
     padding: 3px 6px;
 }

 .inner-tour-card.domestic-card .in-tour-body {
     text-align: center;
 }

 .inner-tour-card.domestic-card .tour-connect {
     width: 100%;
 }

 .inner-tour-card.domestic-card .tour-connect .tour-btnicon {
     display: block;
     width: 14%;
     height: 36px;
     line-height: 36px;
 }

 .inner-tour-card.domestic-card .tour-connect a {
     width: 80%;
     display: block;
     margin-left: 20px;
 }

 /*--------------------------------------------------------------
# Trip Detail Page
--------------------------------------------------------------*/
 .det-trip-sec-1 {
     padding: 120px 0 0px 0;
 }

 .det-trip-sec-1 .gallery {
     padding: 0px 0;
 }

 .photos-grid-container {
     height: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     grid-template-rows: 1fr;
     grid-gap: 0;
     align-items: start;
 }

 @media (max-width: 580px) {
     .photos-grid-container {
         grid-template-columns: 1fr;
     }
 }

 .photos-grid-container .img-box {
     border: 1px solid #ffffff;
     position: relative;
 }

 .photos-grid-container .img-box:hover .transparent-box {
     background-color: rgba(0, 0, 0, 0.6);
 }

 .photos-grid-container .img-box:hover .caption {
     transform: translateY(-5px);
 }

 .photos-grid-container img {
     max-width: 100%;
     display: block;
     height: 100%;
     padding: 2px;
     min-height: 100%;
     object-fit: cover;
 }

 .all-radius {
     border-radius: 20px !important;
 }

 .top-left-radius {
     border-top-left-radius: 20px !important;
     border-radius: 0;
 }

 .top-right-radius {
     border-top-right-radius: 20px !important;
     border-radius: 0;
 }

 .bottom-left-radius {
     border-bottom-left-radius: 20px !important;
     border-radius: 0;
 }

 .bottom-right-radius {
     border-bottom-right-radius: 20px !important;
     border-radius: 0;
 }

 .photos-grid-container .caption {
     color: white;
     transition: transform 0.3s ease, opacity 0.3s ease;
     font-size: 14px;
     text-align: center;
 }

 .photos-grid-container .caption i {
     font-size: 35px;
     display: block;
 }

 .photos-grid-container .transparent-box {
     height: 100%;
     width: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     position: absolute;
     top: 0;
     left: 0;
     transition: background-color 0.3s ease;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .photos-grid-container .main-photo {
     grid-row: 1;
     grid-column: 1;
     max-width: 100%;
     display: block;
     height: 100%;
     padding: 2px;
     min-height: 100%;
     object-fit: cover;
 }

 .photos-grid-container .sub {
     display: grid;
     grid-template-columns: 1fr 1fr;
     grid-template-rows: 1fr 1fr;
     grid-gap: 0em;
 }

 .photos-grid-container .sub:nth-child(0) {
     grid-column: 1;
     grid-row: 1;
 }

 .photos-grid-container .sub:nth-child(1) {
     grid-column: 2;
     grid-row: 1;
 }

 .photos-grid-container .sub:nth-child(2) {
     grid-column: 1;
     grid-row: 2;
 }

 .photos-grid-container .sub:nth-child(3) {
     grid-column: 2;
     grid-row: 2;
 }

 .hide-element {
     border: 0;
     clip: rect(1px 1px 1px 1px);
     /* IE6, IE7 */
     clip: rect(1px, 1px, 1px, 1px);
     height: 1px;
     margin: -1px;
     overflow: hidden;
     padding: 0;
     position: absolute;
     width: 1px;
 }

 .det-trip-sec-2 .sec-title h4 {
     font-size: 23px;
     line-height: 32px;
     font-weight: 600;
     color: #000;
     margin: 0 0 40px;
 }

 .trips-info {
     background: rgb(244, 246, 252);
     padding: 10px 20px;
     border-radius: 10px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .td-info-icon {
     width: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .td-info-icon img {
     max-width: 30px;
 }

 .td-info-text {
     text-align: start;
 }

 .td-info-text span {
     font-size: 13px;
     line-height: 25px;
     font-weight: 500;
 }

 .td-info-text h4 {
     font-size: 14px;
     line-height: 28px;
     font-weight: 600;
     margin: 0
 }

 .trips-info-2 {
     padding: 0 15px;
     display: flex;
     gap: 10px;
     align-items: center;
 }

 .trips-info-2 .td-info-icon {
     width: 22%;
 }

 .trips-info-2 .td-info-icon img {
     max-width: 30px;
 }

 .trips-info-2 .td-info-text {
     width: 65%
 }

 .trips-info-2 .td-info-text h4 {
     font-size: 15px;
     line-height: 25px;
 }

 .div-5-col {
     width: 15%;
     margin: 0 20px;
     display: contents;
 }

 .tour-detail,
 .trip-price,
 .price-sum {
     width: 100%;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 15px;
     padding: 30px;
     margin: 0 0 30px;
 }

 .tour-detail.tour-detail-2.bg-light-green ul li,
 .tour-detail.tour-detail-2.bg-light-red ul li {
     position: relative;
     list-style: none;
     padding: 6px 0;
 }

 .tour-detail.tour-detail-2.bg-light-green ul li:before {
     content: "";
     position: absolute;
     left: -33px;
     top: 50%;
     transform: translateY(-50%);
     width: 16px;
     height: 16px;
     background-image: url(/assets/img/trip-detail/correct.webp);
     background-size: cover;
 }

 .tour-detail.tour-detail-2.bg-light-red ul li:before {
     content: "";
     position: absolute;
     left: -33px;
     top: 50%;
     transform: translateY(-50%);
     width: 16px;
     height: 16px;
     background-image: url(/assets/img/trip-detail/worng.webp);
     background-size: cover;
 }

 .bg-light-red {
     background: #fef4f3;
 }

 .bg-light-green {
     background: #f5fff6;
 }

 .trip-price .crossed-price {
     font-size: 23px;
     line-height: 37px;
     font-weight: 700;
     color: #000;
     margin: 0;
 }

 .trip-price h4 {
     font-size: 38px;
     line-height: 45px;
     font-weight: 600;
     color: #000;
     margin: 0 0 10px;
 }

 .trip-price p {
     font-size: 16px;
     line-height: 23px;
     font-weight: 500;
     color: #000;
     margin: 0 0 25px;
 }

 .trip-price button,
 .book-trip a {
     padding: 8px 14px;
     border-radius: 50px;
     font-size: 4px 12px;
     font-weight: 600;
     transition: all 0.3s ease;
     background-color: var(--accent-color);
     border: 2px solid var(--accent-color);
     color: var(--contrast-color);
     display: block;
     text-align: center;
     width: 100%;
 }

 .trip-price button:hover,
 .book-trip a:hover {
     background-color: var(--contrast-color);
     color: var(--accent-color);
     border: 2px solid var(--accent-color);
 }

 .occupancy {
     width: 100%;
     display: block;
 }

 .occupancy h5 {
     font-size: 16px;
     line-height: 26px;
     font-weight: 500;
     color: #000;
     margin: 0;
 }

 .occupancy a {
     font-size: 15px;
     line-height: 25px;
     font-weight: 500;
     color: var(--accent-color);
     margin: 0;
     background: none;
     border: none;
     text-decoration: underline;
 }

 .occupancy a:hover {
     background-color: var(--contrast-color);
     color: var(--accent-color);
     border: none;
 }

 .occu-tabs {
     display: flex;
     justify-content: space-between;
     align-items: center
 }

 .occu-tabs .nav-item,
 .batch-tabs .nav-item {
     border: none !important;
 }

 .occu-tabs .nav-link,
 .batch-tabs .nav-link {
     padding: 2px 8px;
     color: #222;
     font-weight: 400 !important;
 }

 .occu-tabs .nav-pills .nav-link.active,
 .nav-pills .show>.nav-link,
 .batch-tabs .nav-pills .nav-link.active,
 .nav-pills .show>.nav-link {
     color: var(--accent-color) !important;
     background-color: transparent !important;
     border-bottom: 3px solid var(--accent-color);
     border-radius: 0;
 }

 .occupancy-price {
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 15px;
     padding: 4px 12px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 10px 0 20px;
 }

 .occupancy-price h5 {
     font-size: 15px;
     line-height: 25px;
     font-weight: 500;
     color: #000;
     margin: 0 0 6px;
 }

 .occu-price {
     text-align: right;
     margin-left: 15px;
 }

 .occu-price strike {
     font-size: 13px;
     line-height: 17px;
     font-weight: 600;
     color: #000;
     margin: 0;
     opacity: 40%;
 }

 .occu-price h4 {
     font-size: 18px;
     line-height: 17px;
     font-weight: 600;
     color: #000;
     margin: 0;
 }

 .occu-price span {
     font-size: 11px;
     line-height: 11px;
     font-weight: 400;
     color: #000;
     margin: 0;
     opacity: 80%;
 }

 .price-botm-btns {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 20px 0 0;
 }

 .price-botm-btns button,
 .price-botm-btns a {
     padding: 8px 14px;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 600;
     transition: all 0.3s ease;
     background-color: var(--contrast-color);
     color: var(--accent-color);
     border: 2px solid var(--accent-color);
     display: block;
     text-align: center;
     width: 48%;
 }

 .price-botm-btns button:hover,
 .price-botm-btns a:hover {
     background-color: var(--accent-color);
     border: 2px solid var(--accent-color);
     color: var(--contrast-color);
 }

 .trip-faq .accordion-header {
     display: flex;
     align-items: center;
 }

 .trip-faq.faq-list .accordion-item .accordion-header .accordion-button div {
     font-weight: 500;
 }

 .trip-faq .accordion-item {
     margin: 0 0 15px;
     border: 1px solid #b3b3b3;
     border-radius: 8px !important;
     padding: 10px;
 }

 .trip-faq .accordion-button:not(.collapsed) {
     color: #222;
     background-color: transparent;
     border: none;
     box-shadow: none !important;
 }

 .trip-faq .accordion-button:focus {
     z-index: 3;
     outline: 0;
     box-shadow: none;
 }

 .trip-faq-detail ul li {
     padding: 6px 0;
     font-size: 14px;
     font-weight: 400;
 }

 .trip-faq .day-no {
     padding: 8px 14px;
     border-radius: 50px;
     font-size: 12px;
     font-weight: 600;
     transition: all 0.3s ease;
     background-color: var(--accent-color);
     border: 2px solid var(--accent-color);
     color: var(--contrast-color);
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 15px;
     width: 10%;
 }

 .pack-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .pack-list li {
     display: flex;
     align-items: center;
     padding: 10px 0;
 }

 .things-icon {
     width: 50px;
     height: 50px;
     overflow: hidden;
     object-fit: cover;
     display: flex;
     align-items: center;
     padding-right: 65px;
 }

 .things-icon img {
     max-width: 42px;
 }

 .review-div {
     border-bottom: 1px solid #ddd;
     padding: 0 0 20px;
     margin: 0 0 20px;
 }

 .review-div:last-of-type {
     border-bottom: none;
     padding: 0 0 0px;
     margin: 0 0 0px;
 }

 .review-head {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin: 0 0 15px;
 }

 .reviewer {
     display: flex;
     align-items: center;
 }

 .rev-img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     overflow: hidden;
     object-fit: cover;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 10px 0 0;
 }

 .rev-img img {
     max-width: 45px;
     border-radius: 50%;
 }

 .rate-icons {
     display: flex;
     align-items: center;
 }

 .rate-icons i {
     font-size: 20px;
     color: #e5be37;
     margin: 0 5px;
 }

 .rev-title h6 {
     font-size: 18px;
     margin: 0;
 }

 .rev-title span {
     font-size: 12px;
     margin: 0;
 }

 .review-body p {
     font-size: 16px;
     line-height: 26px;
     color: #6c757d;
 }

 .batch-tabs {
     padding: 12px;
     display: flex;
     justify-content: flex-end;
 }

 .batch-list {
     display: flex;
     flex-wrap: wrap;
     margin: 0;
     padding: 0;
     justify-content: space-between;
 }

 .batch-list li {
     display: inline-block;
     width: 47%;
     margin: 6px;
 }

 .batch-det {
     display: flex;
     align-items: center;
     justify-content: space-between;
     border: 1px solid #ddd;
     padding: 12px 30px;
     border-radius: 10px;
 }

 .batch-det:hover {
     border: 1px solid var(--accent-color) !important;
     color: var(--accent-color) !important;
     background-color: #85a4e334;
 }

 .batch-det .batch-btn button {
     background: #127c42;
     color: #fff;
     padding: 3px 8px;
     border-radius: 80px;
     font-size: 10px;
     line-height: 16px;
     border: none;
 }

 .batch-det .batch-btn.seats-full button {
     background-color: #9c1b22
 }

 .batch-det .batch-btn.seats-Available button {
     background-color: #127c42
 }

 .batch-det .batch-btn.filling-fast button {
     background-color: #c1ab19
 }

 .batch-det h5 {
     font-size: 13px;
     line-height: 20px;
     color: #000;
     font-weight: 500;
     margin: 0
 }

 .sticky-tabs {
     background: rgb(244, 246, 252);
     padding: 16px 12px;
     border-radius: 10px;
     margin: 0px 0 30px;
 }

 .sticky-tabs ul {
     margin: 0;
     padding: 0;
     list-style: none;
     display: inline;
 }

 .sticky-tabs ul li {
     display: inline;
     padding: 6px 22px;
 }

 .sticky-tabs ul li.active {
     border-bottom: 2px solid #2755b0;
 }

 .sticky-tabs ul li button {
     color: #000;
     font-weight: 500;
     font-size: 16px;
     line-height: 26px;
     background-color: rgb(244, 246, 252);
     border: none;
 }

 .sticky-tabs ul li.active button {
     color: var(--accent-color);
 }

 .inclusions {
     background: #f5f7fa;
     border-radius: 12px;
     padding: 15px 25px;
     display: inline-block;
     width: 100%;
 }

 .inclusions h5 {
     font-size: 15px;
     margin: 15px 35px 10px 0px;
 }

 .incl-pic img {
     max-width: 28px;
 }

 .inc-div {
     display: flex;
     align-items: center;
     justify-content: start;
     margin: 0 0 12px;
 }

 .incl-text {
     margin: 0 0 0 12px;
 }

 .incl-text h6 {
     font-size: 14px;
     line-height: 18px;
     margin: 0;
 }

 .incl-text span {
     font-size: 12px;
     line-height: 18px;
     color: #23a455;
 }

 .react-hook-form-error {
     font-size: 12px !important;
     color: red !important;
     font-weight: 400 !important;
     text-align: start !important;
 }

 .border-danger {
     border: 1px solid red !important;
 }

 .batch-det.active {
     background-color: #a3c2ff5e;
     border: 1px solid #2755b0;
 }

 .occupancy-price.buk-payment ul {
     display: inline-block;
     width: 100%;
     padding: 0;
     list-style: none;
     margin: 0;
 }

 .occupancy-price.buk-payment ul li {
     text-align: start;
     width: 100%;
     display: flex;
     justify-content: space-between;
 }

 .occupancy-price.buk-payment ul li span {
     text-align: end;
     width: 50%;
 }

 .tours-buttons {
     font-size: 16px;
     line-height: 26px;
     color: #000;
     font-weight: 500;
     margin: 0;
 }

 /* ============================
    Booking Details 
 ========================= :) */
 .book-det-sec {
     padding: 120px 0 80px;
 }

 .booking-form {
     display: block;
     justify-content: center;
     margin: 0px auto 0;
     padding: 60px;
     background: #fff;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 20px;
 }

 .booking-form .card-header {
     margin: 0 0 60px;
 }

 .booking-form .nav-pills .show>.nav-link {
     color: #000;
     font-size: 12px;
 }

 .booking-form .nav-pills .nav-link.active {
     color: var(--accent-color);
     background-color: transparent !important;
 }

 .booking-form .nav-fill .nav-item,
 .booking-form .nav-fill>.nav-link {
     flex: 1 1 auto;
     text-align: center;
     color: #000;
     font-weight: 600;
     padding: 0;
 }

 .booking-form .nav-fill>.nav-link span {
     border-top: 1px dashed rgb(207 207 207);
     width: 100%;
     float: left;
     position: relative;
 }

 .booking-form .nav-fill>.nav-link span::after {
     position: absolute;
     content: "";
     top: -5px;
     left: 50%;
     width: 10px;
     height: 10px;
     background-color: rgb(207 207 207);
     border-radius: 50%;
 }

 .booking-form .nav-fill>.nav-link.active span::after {
     background-color: var(--accent-color);
 }

 .booking-form .nav-fill>.nav-link.active span {
     border-top: 1px dashed var(--accent-color);
 }

 .booking-form .card-footer {
     margin: 20px 0 0;
 }

 /* .first-btn {
    text-align: start !important;
}
  .booking-form .first-btn  span::after{
     left: 0% !important;
    }
    .last-btn {
    text-align: end !important;
}
  .booking-form .last-btn  span::after{
     left: 100% !important;
    } */
 .booking-form input,
 .booking-form .form-select,
 .booking-form input[type="file"],
 .booking-form textarea {
     background: rgb(244, 246, 252);
     border-radius: 4px;
     border: none;
     padding: 10px 20px;
     height: 50px;
     margin: 0 0 12px;
     font-size: 13px;
     color: #636363;
     width: 100%;
 }

 .back-btn,
 .next-btn {
     padding: 6px 15px;
     border-radius: 4px;
     font-size: 14px;
     line-height: 24px;
     border: none;
 }

 .next-btn {
     background: var(--accent-color);
     color: var(--contrast-color);
 }

 .back-btn {
     background: #ddd;
     color: #000;
 }

 .next-btn:hover {
     background: var(--contrast-color);
     color: var(--accent-color);
     border: 1px solid var(--accent-color);
 }

 .buk-no span {
     cursor: pointer;
 }

 .buk-no .number {
     margin: 100px;
 }

 .buk-d-left h4 {
     font-size: 16px;
     font-weight: 600;
 }

 .booking-form .occupancy-price.active {
     background: var(--accent-color);
     border-radius: 6px;
 }

 .booking-form .occupancy-price.active .buk-d-left h5,
 .booking-form .occupancy-price.active .buk-d-left h4 {
     color: var(--contrast-color);
 }

 .buk-no .minus,
 .buk-no .plus {
     height: 40px;
     width: 30px;
     text-align: center;
     font-size: 15px;
     line-height: 38px;
     color: #000;
     font-weight: 600;
     background: rgb(244, 246, 252);
     border: 1px solid #ffffff;
     border-radius: 4px;
     display: inline-block;
     vertical-align: middle;
 }

 .buk-no input {
     height: 40px;
     width: 40px;
     padding: 4px !important;
     text-align: center;
     font-size: 16px;
     color: #000;
     font-weight: 600;
     border: 1px solid #ffffff;
     border-radius: 4px;
     background: rgb(244, 246, 252);
     display: inline-block;
     vertical-align: middle;
     margin: 0 !important
 }

 .book-form-title {
     font-size: 20px;
     line-height: 30px;
     font-weight: 600;
 }

 .pay-no {
     text-align: right;
 }

 .buk-total-amnt {
     padding: 0 15px;
 }

 .buk-total-amnt p {
     margin: 0;
     font-weight: 700;
     text-transform: capitalize;
 }

 .buk-total-amnt h4 {
     text-align: right;
     font-size: 30px;
     font-weight: 700;
     line-height: 40px;
     color: var(--accent-color);
 }

 .buk-total-amnt h4 span {
     text-align: right;
     font-size: 14px;
     line-height: 20px;
     color: #333;
     display: block;
     font-weight: 400;
 }

 .day-nt {
     text-align: end;
 }

 .day-nt span {
     background: var(--accent-color);
     color: var(--contrast-color);
     font-size: 12px;
     border-radius: 40px;
     padding: 5px 10px;
 }

 .day-nt p {
     font-size: 14px;
     line-height: 22px;
     font-weight: 500;
     color: #000;
     margin: 15px 0 0;
 }

 .buk-trip-name {
     margin: 0 0 20px;
 }

 .trip-report {
     display: block;
     padding: 15px;
     background: #fbfbfb;
     border-radius: 10px;
 }

 .trip-report h5 {
     font-size: 13px;
     line-height: 20px;
     font-weight: 600;
 }

 .trip-report i {
     font-size: 15px;
     color: #8f8f8f;
 }

 .trip-report.final-amt-div {
     background: var(--accent-color);
 }

 .trip-report.final-amt-div h5,
 .trip-report.final-amt-div h4 {
     color: var(--contrast-color);
 }

 .final-pay-btn {
     margin: 20px 0 0;
 }

 .final-pay-btn button {
     padding: 12px 24px;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 600;
     transition: all 0.3s ease;
     background-color: var(--accent-color);
     border: 2px solid var(--accent-color);
     color: var(--contrast-color);
     display: inline-block;
     text-align: center;
     width: 100%;
 }

 .final-pay-btn button:hover {
     background: var(--contrast-color);
     color: var(--accent-color);
     border: 1px solid var(--accent-color);
 }

 .coupon__link button {
     background: none;
     border: none;
     color: #5B5B5B;
     font-weight: 500;
     font-size: 12px;
     line-height: 35px;
     text-align: right;
 }

 .coupon__link button:hover {
     background: none;
     color: #5B5B5B;
     border: none;
 }

 /*--------------------------------------------------------------
# Sale Page CSS Start
--------------------------------------------------------------*/
 .home-img {
     position: absolute;
     top: 30%;
     left: 0;
     right: 0;
     z-index: 2;
 }

 .home-img img {
     width: 100%;
     max-width: 400px;
 }

 .box {
     background-image: url(/assets/img/sale-page/yellow-paper-bg.webp);
     background-position: 50%;
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: 20px;
     padding: 26px 40px 24px 28px
 }






 /*--------------------------------------------------------------
# Blogs Page CSS Start
--------------------------------------------------------------*/
 .blogs-sec {
     padding: 150px 0 80px 0;
 }

 .main-blog-card-img {
     width: 185px;
     height: 185px;
     object-fit: cover;
     border-radius: 10px;
 }

 .main-blog-card-img img {
     width: 185px;
     height: 185px;
     object-fit: cover;
     border-radius: 10px;
 }

 .horizontal-pic.main-blog-card-img,
 .horizontal-pic.main-blog-card-img img {
     width: 100%;
 }

 .main-blog-card-img.large,
 .main-blog-card-img.large img {
     width: 100%;
     height: 100%;
 }

 .main-blog-card {
     width: 100%;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 15px;
     padding: 30px;
 }

 /*--------------------------------------------------------------
# Blog Detail Page
--------------------------------------------------------------*/
 .blog-detail-sec {
     padding: 150px 0 80px 0;
 }

 .blog-detail-sec img {
     border-radius: 20px;
 }

 .blog-detail-sec h3 {
     padding: 30px 0 10px;
     font-size: 25px;
     line-height: 35px;
     font-weight: 600;
 }

 .blog-det-side {
     text-align: center;
 }

 .blog-det-side .more-month {
     width: 100%;
 }

 .blog-det-side h5 {
     font-size: 16px;
     line-height: 26px;
     font-weight: 600;
     text-align: center;
 }

 .blog-det-side p {
     font-size: 13px;
     line-height: 23px;
     color: #737373;
     text-align: center;
 }

 .clr_gray {
     color: #737373;
 }

 .blog-det-img,
 .blog-det-hero-img {
     object-fit: cover;
     overflow: hidden;
     border-radius: 20px;
     margin: 30px 0;
 }

 .blog-det-img img,
 .blog-det-hero-img img {
     width: 100%;
     object-fit: cover;
     overflow: hidden;
     border-radius: 20px;
 }

 .blog-det-hero-img,
 .blog-det-hero-img img {
     height: 500px;
 }

 .blog-det-img,
 .blog-det-img img {
     height: 300px;
 }

 /*--------------------------------------------------------------
# Extra Care Page CSS Start
--------------------------------------------------------------*/

 /* Typewriter effect 1 */
 @keyframes typing {

     0.0000%,
     27.3488% {
         content: "";
     }

     1.1395%,
     26.2093% {
         content: "G";
     }

     2.2791%,
     25.0698% {
         content: "O";
     }

     3.4186%,
     23.9302% {
         content: "GOL";
     }

     4.5581%,
     22.7907% {
         content: "GOLD";
     }

     5.6977%,
     21.6512% {
         content: "GOLDE";
     }

     6.8372%,
     20.5116% {
         content: "GOLDEN";
     }

     7.9767%,
     19.3721% {
         content: "GOLDEN A";
     }

     9.1163%,
     18.2326% {
         content: "GOLDEN AG";
     }

     10.2558%,
     17.0930% {
         content: "GOLDEN AGE";
     }

 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0;
     }
 }

 .typewriter {
     color: var(--accent-color-2)
 }

 .typewriter::before {
     content: "";
     animation: typing 13.5s steps(1) infinite;
 }

 .typewriter::after {
     content: "";
     border-right: 1px solid var(--caret);
     animation: blink 0.5s linear steps(1) infinite;
 }

 .typewriter.thick::after {
     border-right: 1ch solid var(--caret);
 }

 .typewriter.nocaret::after {
     border-right: 0;
 }


 @media (prefers-reduced-motion) {
     .typewriter::after {
         animation: none;
     }

     @keyframes sequencePopup {

         0%,
         100% {
             content: "GOLDEN";
         }
     }

     .typewriter::before {
         content: "GOLDEN";
         animation: sequencePopup 12s steps(1) linear infinite;
     }
 }

 .extra-care-card {
     padding: 10px 38px;
     height: 100%;
     box-shadow: 0 0 10px rgba(0, 0, 0, .03);
     transition: all .3s ease;
     border: 1px solid #2755b0 !important;
 }

 .extra-care-card:hover {
     box-shadow: 0 8px 20px rgba(0, 0, 0, .08)
 }

 .extra-card-content {
     position: relative;
     bottom: 25px
 }

 .icon-circle {
     width: 80px;
     height: 80px;
     position: relative;
     bottom: 53px;
     border-radius: 50%;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: center
 }

 .icon-circle img {
     width: 50px;
     height: 50px;
     object-fit: contain;
     filter: brightness(0) invert(1)
 }

 .extra-care-heading {
     color: var(--accent-color);
     margin: 0 0 20px;
     font-weight: 600;
     font-size: 16px;
 }

 .extra-care-text {
     font-size: 14px;
     line-height: 20px;
     margin: 0;

 }

 .what-we-offer .custom-img {
     border-radius: 16px;
     max-width: 100%;
     height: auto;
     border-right: 8px solid #2755b0;
     border-bottom: 8px solid #2755b0
 }

 .extra-care-what-we-icon {
     height: 60px;
     width: 60px
 }

 .extra-care-what-we-icon img {
     width: 53%
 }

 .cta-query .bg_blue {
     padding: 20px;
     border-radius: 20px;
     position: relative;
 }

 .cta-query .bg_blue h5 {
     font-size: 27px;
     line-height: 37px;
     font-weight: 700;
     color: var(--contrast-color);
     width: 61%;
 }

 .cta-query .bg_blue p {
     font-size: 14px;
     line-height: 24px;
     font-weight: 400;
     color: var(--contrast-color);
     width: 95%;
     margin: 20px 0 50px;
 }

 .enq-img {
     position: absolute;
     bottom: 0;
 }

 .enq-img img {
     width: 100%;
 }

 .enq-btn {
     display: inline-block;
     text-align: center;
     margin: auto;
     background: var(--contrast-color);
     color: var(--accent-color);
     padding: 12px 20px;
     border-radius: 10px;
     font-size: 18px;
     font-weight: 500;
     border: 1px solid var(--accent-color);
 }

 .enq-btn:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
     border: 1px solid var(--contrast-color);
 }

 .extra-care-cta {
     width: 100%;
     height: 100%;
     background-position: top left;
     background-size: cover;
     background-repeat: no-repeat;
     padding: 60px 0;
 }

 .query-section-2 {
     width: 100%;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 15px;
     padding: 30px;
     background: var(--contrast-color);
 }

 /*--------------------------------------------------------------
# Forum Page CSS Start
--------------------------------------------------------------*/
 .forum-sec {
     padding: 150px 0 80px 0;
 }

 .bg_blue {
     background-color: var(--accent-color);
 }

 .bg-white {
     --bs-bg-opacity: 1;
     background-color: rgb(255 255 255 / 25%) !important;
 }

 .bg-opacity-25 {
     --bs-bg-opacity: 0.25;
 }

 .max_width {
     margin: auto;
     max-width: 850px !important;
 }

 .forum-page-form input,
 .forum-page-form :focus-visible {
     outline: none !important;
     border: none !important;
 }

 .Suggested_btn {
     border: 3px solid #fff;
     border-radius: 50px;
     transition: all .3s ease-in-out;
     text-align: center;
     color: #fff;
     padding: 6px 16px;
 }

 .forum-search.h-search-form {
     text-align: center;
     padding: 20px 0;
 }

 .forum-search.h-search-form .ban-search-form {
     width: 100% !important;
     max-width: 100%;
     margin: 0;
 }

 .forum-search.h-search-form .ban-search-form input {
     background: none;
     width: 90%;
     border: none;
     padding: 0;
     height: auto;
     font-size: 16px;
     font-weight: 400;
 }

 .forum-search.h-search-form .ban-search-form input::placeholder {
     color: #fff;
 }

 .forum-submit {
     position: absolute;
     right: 10px;
     top: -8px;
 }

 .post-btn button,
 .forum-submit button {
     padding: 8px 30px;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 600;
     transition: all 0.3s ease;
     background: var(--accent-color);
     border: 2px solid var(--accent-color);
     color: var(--contrast-color);
     display: inline-block;
     text-align: center;
     white-space: nowrap;
 }

 [type=search] {
     outline: none;
     box-shadow: none;
 }

 input:-internal-autofill-selected {
     background: none;
     box-shadow: none;
 }

 .f-ques-div {
     width: 100%;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 15px;
     padding: 30px;
     margin: 0 0 40px;
 }

 .social-forum a i {
     font-size: 18px;
 }

 /*--------------------------------------------------------------
# Refund Page CSS Start
--------------------------------------------------------------*/
 .refund-sec {
     padding: 150px 0 80px 0;
 }

 .refund-sec h3 {
     padding: 30px 0 10px;
     font-size: 25px;
     line-height: 35px;
     font-weight: 600;
 }

 /*--------------------------------------------------------------
# Contact Page CSS Start
--------------------------------------------------------------*/
 .contact-sec {
     padding: 150px 0 80px 0;
 }

 .contact-form.job-form {
     box-shadow: none;
     border-radius: none;
     padding: 40px 0 0px;
 }

 .presence-section {
     padding: 60px 20px;
     text-align: center;
 }

 .section-title {
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 40px;
 }

 .presence-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 90px;
 }

 .presence-item {
     max-width: 221px;
     text-align: center;
 }

 .con-icon {
     width: 130px;
     height: 130px;
     margin-bottom: 15px;
     border-radius: 50%;
     background-color: #e9f2ff;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-left: auto;
     margin-right: auto;
 }

 .presence-icon {
     width: 60px;
 }

 .presence-item h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 8px;
 }

 .presence-item p {
     font-size: 13px;
     color: #444;
     line-height: 1.5;
 }

 .box-review-small {
     padding: 0 0 50px;
     margin: 50px 0;
     border-bottom: 1px solid #eee;
 }

 .box-review-small:last-child {
     padding: 0;
     border: none
 }

 .img-back-grey {
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: #f4f6fc;
     border-radius: 50%;
     width: 100px !important;
     height: 100px;
 }

 .img-back-grey img {
     width: 100%;
     height: 55px;
     object-fit: cover;
 }

 .map_height {
     height: 500px !important;
 }

 /*--------------------------------------------------------------
# Sale Live Page CSS Start
--------------------------------------------------------------*/
 .home-img {
     position: absolute;
     top: 30%;
     left: 0;
     right: 0;
     z-index: 2;
 }

 .home-img img {
     width: 100%;
     max-width: 400px;
 }

 .crumbled-box {
     position: relative;
     z-index: 3;
 }

 .crumbled-box::after {
     position: absolute;
     content: "";
     background: var(--accent-color);
     width: 100%;
     max-width: 500px;
     height: 100%;
     bottom: -5%;
     right: -3%;
     z-index: -1;
     border-radius: 14px;
 }

 .box {
     background-image: url(/assets/img/sale-page/yellow-paper-bg.webp);
     background-position: 50%;
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: 20px;
     padding: 26px 40px 24px 28px
 }

 /*--------------------------------------------------------------
# Login Page CSS Start
--------------------------------------------------------------*/
 .log-box {
     margin: 200px 300px 80px;
 }

 .log-box .row {
     background: #f4f6fc;
     border-radius: 40px;
 }

 .login-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     overflow: hidden;
     border-radius: 35px;
     border-top-right-radius: 0;
     border-bottom-right-radius: 0;
 }

 .login-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     overflow: hidden;
 }

 .login-form.job-form {
     box-shadow: none;
     padding: 80px;
 }

 .login-form.job-form input,
 .login-form.job-form input[type="email"],
 .login-form.job-form input[type="password"] {
     background: var(--contrast-color) !important;
 }

 .login-form.job-form input:focus,
 .login-form.job-form input[type="email"]:focus,
 .login-form.job-form input[type="password"]:focus {
     background: var(--contrast-color) !important;
 }

 .log-title {
     text-align: center;
 }

 .login-form .log-title h1 {
     font-size: 38px;
     font-weight: 700;
     color: var(--accent-color);
     margin: 0 0 6px;
 }

 .login-form .log-title p {
     font-size: 20px;
     font-weight: 400;
     margin: 0 0 60px !important;
 }

 .login-form.job-form .input-div {
     margin: 0 0 30px;
 }

 .login-form.job-form .input-div label {
     font-size: 12px;
     font-weight: 600;
     color: #333;
     margin: 0 0px 6px 22px;
 }

 .login-form.job-form a {
     font-size: 12px;
     margin: 0 0 40px;
 }

 .login-form.job-form p {
     font-size: 15px;
     line-height: 22px;
     margin: 20px 0 0;
 }

 .login-form.job-form p a {
     font-size: 15px;
     margin: 0;
 }

 .login-form.job-form .form-check {
     display: block;
     min-height: auto;
     padding-left: 1.5em;
     margin-bottom: 3.125rem;
 }

 .login-form.job-form .form-check .form-check-input {
     width: 25px !important;
     height: 25px !important;
     box-shadow: none;
     border: 1px solid #2755b01f;
     margin: 0 -1.5em 0;
     padding: 0;
 }

 .login-form.job-form .form-check .form-check-input:checked {
     background-color: #fff;
     border-color: 1px solid #0d6efd;
 }

 .login-form.job-form .form-check-label {
     display: flex;
     margin: 0 0 0 30px;
 }

 .login-form.job-form .input-div .form-control {
     padding: 10px 30px;
 }

 .login-check input {
     padding: 0;
     height: initial;
     width: initial;
     margin-bottom: 0;
     display: none;
     cursor: pointer;
 }

 .login-check label {
     position: relative;
     cursor: pointer;
 }

 .login-check label:before {
     content: '';
     -webkit-appearance: none;
     background-color: transparent;
     border: 2px solid #0079bf;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
     padding: 10px;
     display: inline-block;
     position: relative;
     vertical-align: middle;
     cursor: pointer;
     margin-right: 5px;
 }

 .login-check input:checked+label:after {
     content: '';
     display: block;
     position: absolute;
     top: 2px;
     left: 9px;
     width: 6px;
     height: 14px;
     border: solid #0079bf;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }

 /*--------------------------------------------------------------
# Signup Page CSS Start
--------------------------------------------------------------*/
 .signup-page .login-form.job-form {
     box-shadow: none;
     padding: 80px;
 }

 /*--------------------------------------------------------------
# Upcoming Page CSS Start
--------------------------------------------------------------*/
 .upcoming-page {
     padding: 120px 0 60px;
 }

 /*--------------------------------------------------------------
# Thankyou Page CSS Start
--------------------------------------------------------------*/
 .thanku-page {
     padding: 0px;
 }

 .thanku-div {
     display: block;
     text-align: center;
 }

 .thanku-div h1 {
     font-size: 45px;
     margin: 0 0 30px;
 }

 .thanku-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .thanku-img img {
     width: 100%;
     max-width: 300px;
     object-fit: cover;
 }

 .thanku-btn {
     display: flex;
     justify-content: center;
     margin: 30px 0 0;
 }

 /*--------------------------------------------------------------
# Forms Page CSS Start
--------------------------------------------------------------*/
 .FormStepList {
     display: flex;
     overflow: hidden;
     margin: 5em auto;
     width: 600px;
 }

 .FormStepList-item {
     flex: 1 1 50px;
     text-align: center;
     list-style: none;
 }

 .FormStepList-item:before {
     content: none !important;
     display: none !important;
 }

 .FormStepIcon {
     display: inline-block;
     width: 50px;
     text-align: center;
     position: relative;
 }

 .FormStepIcon.is-active .FormStepIcon-circle {
     background: #43B69A;
     border: 4px solid #8ED3C2;
     color: #fff;
 }

 .FormStepIcon.is-passed:after {
     background: #43B69A;
 }

 .FormStepIcon.is-passed .FormStepIcon-circle {
     background: #43B69A;
     color: #fff;
 }

 .FormStepIcon:after {
     content: "";
     background: #D4D4D4;
     position: absolute;
     right: -1000%;
     top: 20px;
     left: 10px;
     height: 4px;
     z-index: 1;
 }

 .FormStepIcon.FormStepIcon--last:after {
     background: #fff;
 }

 .FormStepIcon-circle {
     background: #D4D4D4;
     color: #A9A9A9;
     font-size: 16px;
     font-weight: bold;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     position: relative;
     z-index: 2;
 }

 .FormStepIcon-title {
     display: block;
     font-size: 0.7em;
     margin-top: 0.5em;
 }


 /*--------------------------------------------------------------
# Extra last minute CSS Start
--------------------------------------------------------------*/
 .testi-item {
     margin: 6px;
 }


 .react-hook-form-error {
     font-size: 12px !important;
     color: red !important;
     font-weight: 400 !important;
     text-align: start !important;
 }

 .border-danger {
     border: 1px solid red !important;
 }

 .batch-det.active {
     background-color: #a3c2ff5e;
     border: 1px solid #2755b0;
 }

 .occupancy-price.buk-payment ul {
     display: inline-block;
     width: 100%;
     padding: 0;
     list-style: none;
     margin: 0;
 }

 .occupancy-price.buk-payment ul li {
     text-align: start;
     width: 100%;
     display: flex;
     justify-content: space-between;
 }

 .occupancy-price.buk-payment ul li span {
     text-align: end;
     width: 50%;
 }

 .modal {
     background: #00000078 !important;
 }

 .cursor-pointer {
     cursor: pointer;
 }

 .sticky-packag-left {
     height: 100%;
 }

 .sticky-packag-right {
     height: 100%;
     position: sticky;
     top: 88px;
     z-index: 9;
 }

 .sticky-packag-right-tabs {
     height: 100%;
     position: sticky;
     top: 95px;
     z-index: 9;
 }

 .navmenu ul h4 {
     display: none;
 }

 /*--------------------------------------------------------------
# Responsive CSS Start
--------------------------------------------------------------*/
 @media only screen and (min-width: 1400px) and (max-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) {

     .founder-pic img {
         width: 100%;
         max-width: 375px;
     }

     .caption-sec {
         height: 66vh;
     }
 }



 @media (min-width: 1367px) and (max-width: 1450px) {
     .sticky-tabs ul li {
         padding: 6px 21px;
     }

     .inner-fixed-text {
         top: 0;
     }

     .home .home-content {
         top: 19%;
     }
 }

 @media screen and (min-width: 1200px) and (max-width: 1300px) {
     .founder-sec {
         height: 70vh;
         padding: 0 0 40px !important;
     }
 }

 @media (min-width: 768px) and (max-width: 1366px) {

     .sec-title h4,
     .inner-cta-left h5 {
         font-size: 22px;
         line-height: 30px;
     }

     .div-5-col {
         width: 15%;
         margin: 0 15px;
     }

     .sec-title h4 {
         font-size: 25px;
         line-height: 35px;
     }

     .contact-sec {
         padding: 100px 0 80px 0;
     }

     .blog-detail-sec h3,
     .refund-sec h3 {
         padding: 20px 0 10px;
     }

     .cta-form input,
     .cta-form .form-select,
     .job-form input,
     .job-form .form-select,
     .job-form input[type="file"],
     .job-form textarea,
     .cta-form input[type="file"],
     .cta-form textarea,
     input[type="file" i] {
         height: 42px;
         margin: 0 0 12px;
         font-size: 11px;
         line-height: 23px;
     }

     .trending-nav .trending-prev {
         left: 83%;
     }

     .testi-review p {
         max-height: 5.5em;
     }

     .testi-left .testi-left-title .testi-title p {
         font-size: 10px;
         line-height: 11px;
     }

     .forum-sec {
         padding: 130px 0 0px 0;
     }

     .trips-info-2 {
         padding: 0 10px;
     }

     .tour-btnicon i {
         font-size: 15px;
     }

     .tour-connect a {
         font-size: 10px;
         padding: 5px;
     }

     .featured-tours .destination-card .destination-overlay .card-details h5 {
         font-size: 14px;
         margin-bottom: 6px;
         padding-bottom: 6px;
     }

     .featured-tours .destination-card .destination-overlay .price-tag {
         font-size: 11px;
     }

     .td-info-text h4 {
         font-size: 13px;
         line-height: 22px;
     }

     .trip-faq .day-no {
         padding: 8px 6px;
     }

     .det-trip-sec-1 {
         padding: 170px 0 0px 0;
     }

     .det-trip-sec-2 .sec-title h4 {
         margin: 0 0 25px;
     }

     .sticky-tabs ul li {
         padding: 6px 12px;
     }

     .tour-detail,
     .trip-price,
     .price-sum {
         padding: 20px;
         margin: 0 0 20px;
     }

     .landing-page-best-deals .in-tour-body h5 {
         font-size: 14px;
     }

     .landing-page-best-deals .tour-pricing .price {
         font-size: 13px;
     }

     .in-tour-body h5 {
         font-size: 14px;
     }

     .corporate-banner {
         margin: 100px 0 0;
     }

     .banner-tour {
         margin: 0 0 160px;
     }

     .banner-tour h1 {
         font-size: 40px;
         line-height: 50px;
     }

     .new-container {
         margin: 0 auto;
     }

     .login-form.job-form {
         padding: 60px;
     }

     .login-form h1 {
         margin: 0 0 30px;
     }

     .login-form.job-form .form-check {
         margin-bottom: 1.125rem;
     }

     .footer {
         padding: 60px 0;
     }

     .log-box {
         margin: 180px 80px 60px;
     }

     .login-form .log-title p {
         margin: 0 0 30px !important;
     }

     .home-img img {
         width: 100%;
         max-width: 220px;
     }

     .corp-why-pic::after {
         right: 5%;
     }

     .corpo-cta {
         height: 70vh;
     }

     .inner-banner-box .inner-ban-pic {
         height: 90vh;
     }

     .hero-banner {
         height: 85vh;
     }

     .cat-img {
         width: 80px;
         height: 80px;
     }

     .cat-img img {
         width: 60px;
         height: 60px;
     }

     .inter-div {
         width: 100%;
         height: 185px;
     }

     .inter-text {
         padding: 25px 12px 12px;
     }

     .inter-text p {
         font-size: 11px;
         line-height: 16px;
     }

     .inter-div .inter-icon {
         width: 25px;
         height: 25px;
         line-height: 25px;
     }

     .inter-div .inter-icon i {
         font-size: 19px;
     }

     .inter-pic {
         height: 185px !important;
     }

     .inter-pic img {
         height: 185px !important;
     }

     .founder-text {
         margin: 60px 0 0;
     }

     .founder-sec {
         height: 100vh;
         padding: 0 0 40px !important;
     }

     .caption-sec {
         height: 66vh;
     }

     .slides-nav .slides.slides-prev {
         left: 75%;
     }

     .categ-div h5 {
         font-size: 13px;
         line-height: 17px;
     }

     .tour-connect a,
     .tour-connect button {
         font-size: 10px;
         border-radius: 6px;
         padding: 3px 6px;
     }

 }

 @media screen and (max-width: 900px) and (orientation: landscape) {

     .home .home-content {
         top: 12%;
     }

     .login-div {
         margin: 0 8px 0 20px;
     }

     .sec-title p {
         font-size: 14px;
     }

     .hero-banner {
         margin: 60px 0 0;
         padding: 25px 0 0;
     }

     .owl-carousel__nav.inter-nav .owl-carousel__prev,
     .owl-carousel__nav.domestic-nav .owl-carousel__prev,
     .owl-carousel__nav.wander-nav .owl-carousel__prev,
     .owl-carousel__nav.corpo-nav .owl-carousel__prev {
         left: 52%;
     }

     .international .inter-bg,
     .wander .inter-bg {
         margin: 250px 0 0;
     }

     .early-btn,
     .menu-cta {
         display: flex !important;
     }

     .header .logo img {
         max-height: 65px;
     }

     .fixed-top {
         box-shadow: 0 2px 8px 0 rgb(99 99 99 / 4%);
     }

     .month-btn {
         font-size: 10px;
         line-height: 15px;
     }

     .slides-nav .slides.slides-prev {
         left: 52%;
     }

     .feature-left {
         left: 0;
     }

     .feature-left img {
         max-width: 300px;
     }

     .feature-rt .feature-card {
         padding: 10px;
         margin: 0 0 10px;
     }

     .feature-rt .feature-card .fea-icon {
         width: 50px;
         height: 50px;
         line-height: 50px;
         vertical-align: middle;
     }

     .feature-rt .feature-card .fea-icon img {
         max-width: 22px;
     }

     .feature-rt .feature-card .fea-text h5 {
         font-size: 14px;
         line-height: 20px;
         margin: 0 0 5px;
     }

     .go-features {
         padding: 40px 0 0;
     }

     .feature-rt .feature-card .fea-text p {
         font-size: 12px;
         line-height: 15px;
         margin: 0;
     }

     .wander .sec-title p {
         margin: 0px 0 20px;
     }

     .feature-item {
         padding: 0 5px 0 0;
     }

     .mt-5 {
         margin-top: 1rem !important;
     }

     .footer-logo img {
         max-width: 85px;
     }

     .testi-left {
         border-radius: 10px;
         padding: 10px;
     }

     .testi-location {
         padding: 40px 10px 10px;
     }

     .footer-links h4 {
         font-size: 18px;
         margin-bottom: 15px;
     }

     .testi-review p {
         font-size: 11px;
         line-height: 15px;
     }

     body,
     .go-about-sec ul li,
     .go-about-sec p,
     .feature-item p {
         font-size: 13px;
         line-height: 20px;
     }

     .blog-card .blog-text h5,
     .feature-item h5 {
         font-size: 14px;
         line-height: 20px;
     }

     .feature-item .feature-icon img {
         max-width: 45px;
         margin: 0 0 20px;
     }

     .testi-left .testi-left-title .testi-icon {
         width: 35%;
         max-width: 30px;
         height: 30px;
         line-height: 30px;
         margin: 0 8px 0 0;
     }

     .testi-left .testi-left-title {
         margin: 0 0 10px;
     }

     .testi-title {
         width: 75%;
     }

     .testi-left .testi-left-title .testi-title h5 {
         font-size: 13px;
         line-height: 18px;
     }

     .testi-left .testi-left-title .testi-title p {
         font-size: 8px;
         line-height: 11px;
     }

     .who-we-col h5 {
         font-size: 12px;
         line-height: 17px;
     }

     .offer-col h5 {
         font-size: 13px;
         line-height: 18px;
     }

     .founder-pic,
     .founder-pic img {
         max-width: 285px;
     }

     .caption-sec {
         height: 90vh;
     }

     .captain-pic,
     .captain-pic img {
         height: 325px;
         overflow: inherit;
     }

     .caption-text-2 {
         text-align: start;
     }

     .caption-text-2 h3 span {
         font-size: 35px;
         line-height: 43px;
     }

     .contact-sec {
         padding: 85px 0 80px 0;
     }

     .box-review-small {
         padding: 0 0 20px;
         margin: 20px 0;
     }

     .img-back-grey img {
         width: 100%;
         max-width: 30px;
         height: 30px;
         object-fit: cover;
     }

     .blogs-sec,
     .blog-detail-sec {
         padding: 80px 0 50px 0;
     }

     .main-blog-card {
         padding: 15px;
     }

     .main-blog-card-img,
     .main-blog-card-img img {
         width: 115px;
         height: 115px;
     }

     .fs_xsm.mt-3.text-black.fw-medium.font_poppins {
         font-size: 11px !important;
         line-height: 14px !important;
         margin: 0 !important;
     }

     .fs_sm.text-black.font_poppins {
         font-size: 11px !important;
         line-height: 16px !important;
     }

     .blog-det-hero-img,
     .blog-det-hero-img img {
         height: 300px;
         margin: 15px 0;
     }

     .blog-det-side h5 {
         font-size: 14px;
         line-height: 20px;
     }

     .img-back-grey {
         width: 50px !important;
         height: 50px;
     }

     .contact-form.job-form {
         padding: 15px 0 0px;
     }

     .banner-tour {
         margin: 0 0 50px;
     }

     .banner-tour h1 {
         font-size: 30px;
         line-height: 40px;
         margin: 10px 0 0;
     }

     .inner-fixed-text {
         top: 20%;
         padding: 0 40px;
     }

     .corpo-text h1 {
         font-size: 30px;
         line-height: 35px;
         margin: 0 0 20px;
     }

     .corpo-text p {
         font-size: 16px;
         line-height: 22px;
     }

     .sq-pic {
         height: 165px;
     }

     .trending-nav .trending-prev {
         left: 78%;
     }

     .shape.corp-serv .col-xl-6.col-lg-6.col-md-8.col-12.offset-1 {
         margin: 0 0 0 0px;
     }

     .corpo-y-card {
         width: 40%;
         float: none;
         margin: 0 10px;
         height: 33px;
     }

     .y-icon {
         width: 55px;
         height: 55px;
         line-height: 55px;
     }

     .y-icon img {
         max-width: 30px;
     }

     .corpo-y-card h5 {
         font-size: 14px;
         line-height: 16px;
         margin: 0 0 8px;
         height: 30px;
     }

     .corp-why-pic {
         height: 565px;
         box-shadow: rgb(255 245 0) 5px 5px;
     }

     .corp-why-pic img {
         height: 565px;
     }

     .corpo-cta-text {
         width: 44%;
     }

     .corpo-cta-text h3 {
         font-size: 30px;
         line-height: 35px;
         margin: 0 0 20px;
     }

     .corpo-cta-text p {
         font-size: 14px;
         line-height: 19px;
         margin: 0 0 40px;
     }

     .corpo-cta {
         height: 92vh;
     }

     .corpo-slide-left {
         gap: 30px;
     }

     .corpo-slide-para {
         font-size: 13px;
         line-height: 19px;
     }

     .col-lg-3.col-md-5.col-12.d-flex.flex-column.justify-content-end {
         justify-content: flex-start !important;
     }

     .corpo-slide-pic,
     .corpo-slide-pic img {
         height: 160px;
     }

     .corp-brand-icon {
         top: -35px;
         width: 60px;
         height: 60px;
         line-height: 60px;
     }

     .corpo-slide-text {
         padding: 40px 5px 8px;
     }

     .owl-carousel__nav.best-deal-nav .owl-carousel__prev {
         left: 53%;
     }

     .inner-cta-left h5 {
         width: 100%;
     }

     textarea.form-control {
         padding: 9px 0 0 44px !important;
     }

     .inner-banner-box .inner-ban-pic {
         height: 100vh;
     }

     .position-list ul li .position-links {
         font-size: 11px;
         line-height: 14px;
     }

     .det-trip-sec-1 {
         padding: 100px 0 0px 0;
     }

     .trips-info {
         padding: 8px;
     }

     .td-info-text span {
         font-size: 10px;
         line-height: 20px;
     }

     .td-info-text h4 {
         font-size: 11px;
         line-height: 14px;
     }

     .td-info-icon img {
         max-width: 22px;
     }

     .trips-info-2 .td-info-text h4 {
         font-size: 12px;
         line-height: 18px;
     }

     .trips-info-2 .td-info-icon {
         width: 12%;
     }

     .trips-info-2 .td-info-icon img {
         max-width: 14px;
     }

     .sticky-tabs ul li {
         padding: 6px 1px 10px;
     }

     .sticky-tabs ul li button {
         font-size: 11px;
         line-height: 32px;
     }

     .sticky-packag-right-tabs {
         top: 70px;
     }

     .trip-price h5 {
         font-size: 18px;
         line-height: 22px;
     }

     .trip-price h4 {
         font-size: 30px;
         line-height: 40px;
     }

     .trip-price p {
         font-size: 12px;
         line-height: 15px;
     }

     .sticky-packag-right {
         top: 75px;
     }

     .trip-faq .day-no {
         margin: 0 6px 0 0px;
         width: 14%;
     }

     .trip-faq .day-no {
         padding: 8px 14px;
         border-radius: 50px;
         font-size: 10px;
     }

     .accordion-button {
         font-size: 12px;
     }

     .trip-faq-detail ul li {
         font-size: 12px;
         line-height: 16px;
     }

     .batch-det {
         padding: 12px;
     }

     .review-body p {
         font-size: 12px;
         line-height: 18px;
     }

     .price-botm-btns {
         display: block;
         margin: 10px 0 0;
     }

     .price-botm-btns button,
     .price-botm-btns a {
         font-size: 12px;
         width: 100%;
         margin: 0 0 10px;
     }

     .tour-detail,
     .trip-price,
     .price-sum {
         padding: 12px;
         margin: 0 0 12px;
     }

     .occupancy h5 {
         font-size: 10px;
         line-height: 26px;
     }

     .occu-tabs .nav-link,
     .batch-tabs .nav-link {
         padding: 2px 4px;
         color: #222;
         font-weight: 400 !important;
         font-size: 8px;
     }

     .trip-price .crossed-price {
         font-size: 18px;
         line-height: 32px;
     }

     .tour-connect {
         width: 92%;
     }

     .tour-btnicon {
         width: 26px;
         height: 26px;
         line-height: 26px;
     }

     .tour-btnicon i {
         font-size: 11px;
     }

     .tour-pricing {
         font-size: 9px;
         line-height: 12px;
     }

     .landing-page-best-deals .tour-pricing .price {
         font-size: 11px;
         line-height: 12px;
     }

     .landing-page-best-deals .in-tour-body h5 {
         font-size: 12px;
         line-height: 16px;
     }









 }

 @media (min-width: 320px) and (max-width: 768px) {
     .topbar {
         background: var(--accent-color-2)
     }

     .navmenu ul h4 {
         display: block;
     }

     .topbar p {
         font-size: 9px;
     }

     .topbar {
         padding: 4px 6px 4px 9px;
         font-size: 9px;
         line-height: 8px;
         margin: 0;
     }

     .topbar a i,
     .topbar button i {
         padding: 0 0 0 3px;
         font-size: 6px;
     }

     button.top-close {
         right: 0%;
     }

     .header {
         padding: 0px;
     }

     .btn-getstarted i {
         font-size: 12px;
     }

     .header .logo img {
         max-height: 60px;
         padding: 5px 10px;
         margin-right: 0px;
     }

     .header .btn-getstarted,
     .header .btn-getstarted:focus {
         font-size: 11px;
         font-weight: 700;
         padding: 5px 14px;
         margin: 0 auto;
     }

     .login-div {
         display: none
     }

     .sec-title span {
         display: inline-block;
     }

     .slides-nav .slides.slides-prev {
         left: 60%;
     }

     .inner-banner-box .inner-ban-pic {
         height: 400px;
         object-fit: cover;
     }

     .inner-banner-box .inner-ban-pic img {
         height: 400px;
         object-fit: cover;
     }

     .inner-banner-box .inner-ban-pic::before {
         display: none
     }

     .inner-fixed-text {
         position: relative;
         background: var(--contrast-color);
         bottom: 24px;
         border-radius: 20px;
         padding: 20px;
         text-align: center;
         gap: 30px;
         margin: 5px 0 0;
         height: 32vh;
     }

     #banner-carousel {
         height: 51vh;
     }

     .banner-tour {
         margin: 0 0 40px;
     }

     .banner-tour h1 {
         font-weight: 800;
         color: #000;
         font-size: 23px;
         line-height: 28px;
         margin: 0 0 15px;
         text-align: center;
     }

     .banner-tour p,
     .banner-btn p {
         font-weight: 500;
         color: #000;
         font-size: 12px;
         line-height: 18px;
         width: 100%;
         text-align: center;
     }

     .cta-botm ul li:last-child {
         width: 100%;
         white-space: nowrap;
         float: left;
     }

     .banner-btn p span {
         color: #000;
         font-weight: 700;
     }

     .banner-btn a {
         color: var(--contrast-color);
         font-weight: 600;
         background: var(--accent-color);
         border-radius: 40px;
         padding: 8px 25px;
         font-size: 15px;
     }

     .banner-slider.owl-carousel .owl-dots {
         position: absolute;
         bottom: 15%;
         left: 53%;
         transform: translateX(-50%);
         margin: 0 auto;
     }

     .banner-slider.owl-carousel .owl-nav button.owl-next,
     .banner-slider.owl-carousel .owl-nav button.owl-prev,
     .banner-slider.owl-carousel button.owl-dot {
         background: #fff;
         color: inherit;
         border: none;
         border-radius: 50%;
         margin: 2px;
         padding: 3px !important;
     }

     .first-div {
         order: 2;
     }

     .second-div {
         order: 1;
     }

     .third-div {
         order: 3;
     }

     .inner-cta {
         text-align: center;
     }

     .inner-cta-left h5 {
         font-size: 18px;
         line-height: 28px;
         width: 100%;
     }

     .inner-cta-left p {
         font-size: 12px;
         margin: 8px 0 30px;
     }

     .cta-form input,
     .cta-form .form-select,
     .cta-form textarea,
     .cta-form input[type="file"],
     .cta-form input[type="file"] {
         padding: 7px 31px;
         height: 40px;
         margin: 0 0 12px;
         font-size: 10px;
     }

     .cta-form .input-icon {
         top: 8px;
         left: 14px;
     }

     .input-icon {
         top: 12px;
         left: 19px;
     }

     .input-icon i,
     .select-icon i {
         font-size: 12px;
     }

     .select-icon {
         top: 8px;
         right: 15px;
     }

     .cta-botm {
         margin: 30px 0 0;
         text-align: center;
     }

     .div-border {
         border-radius: 10px;
         padding: 20px;
     }

     .cta-submit-btn {
         padding: 8px 70px;
         font-size: 14px;
     }

     .cta-botm.ban-botm-line ul,
     .cta-botm ul {
         display: ruby;
     }

     .cta-botm.ban-botm-line ul li,
     .cta-botm ul li {
         font-size: 10px;
         line-height: 18px;
         font-weight: 500;
     }

     .cta-botm.ban-botm-line ul li i,
     .cta-botm ul li i {
         font-size: 11px;
         padding: 0 3px 0 4px;
         -webkit-text-stroke: 0.4px;
     }

     .sec-title h4 {
         font-size: 18px;
         line-height: 28px;
         text-align: center;
         margin: 8px 0 4px;
     }

     .trending-places .sec-title img {
         max-width: 18px;
     }

     section,
     .section {
         padding: 30px 0;
     }

     .explore-card {
         padding: 8px;
         margin: 15px 1px;
     }

     .explore-card p {
         font-size: 10px;
         line-height: 16px;
         font-weight: 400;
     }

     .go-about-sec p {
         margin: 20px 0;
         font-size: 14px;
         line-height: 24px;
     }

     /*--------------------------------------------------------------
# Responsive CSS ------ Homepage
--------------------------------------------------------------*/
     .hero-banner {
         margin: 100px 20px 0;
         padding: 0px 0 0;
         height: 75vh;
     }

     .home .home-content {
         top: 12%;
     }

     .hero-banner .home video,
     .hero-banner .home .overlay {
         border-radius: 10px;
     }

     .home-content h1,
     .home-content h1 span {
         font-size: 24px;
         line-height: 34px;
     }

     .mob-break {
         display: block;
     }

     .home-content h2 {
         font-size: 35px;
         line-height: 45px;
     }

     .banne-icon {
         width: 30px;
         height: 30px;
     }

     .banne-icon img {
         width: 100%;
         max-width: 30px;
         height: 30px;
     }

     .h-search-form {
         padding: 30px 0 120px;
     }

     .h-search-form input {
         padding: 0 40px 0 15px;
         font-size: 9px;
         height: 48px;
         width: 300px;
     }

     .h-search-form .ban-search-form {
         max-width: 300px;
     }

     .home-content .ban-botm-line span,
     .home-content .ban-botm-line {
         font-size: 11px;
     }

     .h-search-form button .search-ico {
         position: absolute;
         right: 33px;
         top: 12px;
     }

     .h-search-form button .search-ico img {
         width: 24px;
         height: 24px;
     }

     .categories .sec-title {
         text-align: center;
     }

     .categories .sec-title p {
         font-size: 12px;
         line-height: 16px;
         margin: 12px 0 0;
         width: 80%;
         margin: 0px auto;
     }

     .slides-nav {
         display: none;
     }

     .categories .col-md-9.col-12 {
         width: 80%;
         margin: 20px auto 0;
     }

     .categ-div {
         padding: 12px 4px;
         margin: 10px 0;
     }

     .cat-img {
         width: 50px;
         height: 50px;
     }

     .cat-img img {
         width: 50px;
         height: 50px;
     }

     .career-mob-category .categ-div img {
         max-width: 60px;
     }

     .categ-div h5 {
         font-size: 10px;
         line-height: 13px;
         margin: 8px 0 0;
     }

     .news.pt-0.populate-on-news-corporate {
         padding-top: 30px !important;
     }

     .go-features.go-custom-container .col-lg-5.col-md-4.col-12 {
         order: 2;
     }

     .feature-left {
         position: inherit;
     }

     .go-features.go-custom-container .col-lg-6.col-md-8.col-12.offset-lg-1 {
         order: 1;
     }

     .go-features.go-custom-container {
         display: flex;
     }

     .go-features.go-custom-container .col-lg-5.col-md-6.col-12 {
         display: flex;
         order: 2;
     }

     .go-features.go-custom-container .col-lg-6.col-md-6 .ol-12.offset-lg-1 {
         display: flex;
         order: 1;
     }

     .blogs-sec {
         padding: 0px 0;
     }

     /* .feature-rt{
    order: 1;
} */
     .career-mob-category .categ-div h5 {
         font-size: 13px;
         line-height: 19px;
     }

     .go-features {
         padding: 40px 0 0;
     }

     .go-features .col-lg-5.col-md-5.col-12 {
         order: 2
     }

     .go-features .col-lg-6.col-md-6.col-12.offset-1 {
         order: 1;
         margin-left: 0;
     }

     .feature-rt h3 {
         font-size: 18px;
         line-height: 22px;
         margin: 0 0 30px;
         text-align: center;
     }

     .feature-rt .feature-card {
         padding: 12px;
         margin: 0 0 15px;
     }

     .feature-rt .feature-card .fea-text h5 {
         font-size: 14px;
         line-height: 20px;
         margin: 0 0 5px;
     }

     .feature-rt .feature-card .fea-text p {
         font-size: 11px;
         line-height: 14px;
         margin: 0;
     }

     .feature-rt .feature-card .fea-icon {
         width: 60px;
         height: 45px;
         text-align: center;
         vertical-align: middle;
         line-height: 46px;
         display: block;
     }

     .go-about-sec details #open {
         font-size: 11px;
     }

     .faq .faq-list .accordion-header {
         padding: 12px;
     }

     .faq .faq-list .accordion-button {
         font-size: 12px;
     }

     .faq .faq-list .accordion-item {
         margin: 0 0 15px;
     }

     .accordion-button::after {
         width: 12px;
         height: 12px;
         background-size: auto;
         margin-left: 10px;
     }

     .faq .faq-list .accordion-body {
         padding: 0 12px 20px;
         font-size: 12px;
     }

     .view-more-tag a {
         font-size: 11px;
         font-weight: 500;
     }

     .trending-slider .owl-stage,
     .inter-slider .owl-stage,
     .domestic-slider .owl-stage,
     .mob-upcoming-slider .owl-stage,
     .mob-upcoming-month .owl-stage,
     .wander-slider .owl-stage {
         right: -32px;
     }

     .trending-slider .owl-stage,
     .inter-slider .owl-stage,
     .domestic-slider .owl-stage,
     .mob-upcoming-slider .owl-stage,
     .mob-upcoming-month .owl-stage,
     .wander-slider .owl-stage,
     .living-slider .owl-stage {
         left: -20px;
     }

     .corpo-slider .owl-stage-outer {
         left: -55px;
         overflow: visible;
     }

     .trending-div h5 {
         margin: 10px 0 0;
         font-size: 12px;
         text-align: center;
     }

     .owl-carousel__nav.trending-nav,
     .inter-nav {
         opacity: 0;
     }

     .international .col-lg-3.col-md-3.col-0,
     .domestic .col-lg-3.col-md-3.col-0,
     .wander .col-lg-3.col-md-3.col-0 {
         display: none;
     }

     .international .inter-bg img,
     .wander .inter-bg img {
         display: none;
     }

     .inter-text {
         padding: 40px 10px 10px;
         background: linear-gradient(180deg, rgba(102, 0, 0, 0) 0%, rgb(0 0 0 / 90%) 100%);
     }

     .trending-slider,
     .inter-slider {
         margin-top: 20px;
     }

     .sec-title p {
         font-size: 13px;
         line-height: 21px;
         text-align: center;
         margin: 8px auto;
         width: 100%;
     }

     .international .col-lg-9.col-md-9.col-12,
     .domestic .col-lg-9.col-md-9.col-12 {
         padding: 0;
     }

     .inter-pic,
     .inter-pic img,
     .inter-div {
         border-radius: 7px;
         aspect-ratio: 1 / 1;
         width: auto;
         height: auto;
         border-radius: 10px;
     }

     .inter-div .inter-icon,
     .blog-card .inter-icon {
         width: 16px;
         height: 16px;
         line-height: 5px;
     }

     .inter-div .inter-icon i,
     .blog-card .inter-icon i {
         font-size: 12px;
         color: var(--contrast-color);
     }

     .inter-text h5,
     .blog-text h5 {
         font-size: 11px;
         line-height: 16px;
     }

     .inter-text p,
     .blog-text p {
         font-size: 8px;
         line-height: 12px;
     }

     .blog-card {
         margin: 6px;
     }

     .blog-card .blog-text h5 {
         font-size: 11px;
         line-height: 15px;
         margin: 0 0 12px;
     }

     .tour-btnicon {
         width: 20px;
         height: 20px;
         line-height: 20px;
         padding: 0;
         margin: 0px 3px 0 0;
     }

     .tour-connect a,
     .tour-connect button {
         font-size: 10px;
         line-height: 18px;
         border-radius: 4px;
         padding: 3px 6px;
     }

     .featured-tours .destination-card .destination-overlay .card-details {
         padding: 80px 10px 10px;
     }

     .tour-btnicon i {
         font-size: 10px;
     }

     /* 
     .destination-card .card-details .d-flex.justify-content-between,
     .in-tour-body .d-flex.justify-content-between {
         display: block !important;
     } */

     .in-tour-head .featured-badge {
         padding: 4px 7px;
         font-size: 8px;
     }

     /* 
     .tour-pricing {
         width: 100%;
         display: block;
     }

     .tour-connect {
         width: 100%;
         display: flex;
         margin: 10px 0 0;
     } */
     .tour-connect,
     .inner-tour-sec .tour-connect {
         width: 100%;
         justify-content: space-between;
     }

     .card-details.trip-bg-dark .d-flex,
     .in-tour-body .d-flex {
         display: block !important;
     }

     .tour-pricing {
         font-size: 13px;
         line-height: 15px;
         display: flex;
         padding: 3px 0 12px;
     }

     .tour-pricing .price {
         font-size: 9px;
         line-height: 13px;
         font-weight: 700;
         color: #fff;
     }

     .tour-pricing .per {
         font-size: 8px;
         line-height: 12px;
     }

     .tour-pricing em {
         font-size: 7px;
         line-height: 6px;
         margin-left: 6px;
     }

     .tour-pricing em {
         font-size: 7px;
         line-height: 11px;
     }

     .tour-connect a {
         font-size: 9px;
         line-height: 16px;
         border-radius: 2px;
         padding: 4px 12px;
         text-align: center;
     }

     .mob-upcoming .sec-title h4 {
         text-align: left
     }

     .month-btn {
         font-size: 9px;
         line-height: 15px;
         padding: 6px 8px;
         white-space: nowrap;
         width: 100%;
         display: block;
         text-align: center;
     }

     .month-btns ul {
         display: flex;
         overflow: auto;
         padding: 12px 0px;
     }

     .go-about-sec ul li {
         font-size: 13px;
         line-height: 23px;
     }

     .featured-tours .destination-card .destination-overlay .card-details h5 {
         margin-bottom: 2px;
         padding-bottom: 5px;
     }

     .featured-tours.mt-5 {
         margin-top: 1.5rem !important;
     }

     .news-sec {
         box-shadow: none;
         padding: 0 0 20px
     }

     .news-div img {
         height: 45px;
     }

     .marquee {
         margin: 30px 0 0;
     }

     .more-month {
         padding: 6px 12px;
         font-size: 12px;
     }

     .more-month i {
         font-size: 12px;
     }

     .abt-desc h2,
     .go-about-sec h2,
     .go-about-sec h2 strong,
     .go-about-sec h3 strong,
     .go-about-sec h3,
     .go-about-sec ul li strong {
         font-size: 14px;
         line-height: 23px;
         font-weight: 600;
     }

     .slides-slider.owl-carousel .owl-dots {
         position: absolute;
         bottom: 0%;
         left: 50%;
         transform: translateX(-50%);
         margin: 0 auto;
     }

     .mob-why-slider.owl-carousel .owl-dots {
         position: absolute;
         bottom: -1%;
         left: 50%;
         transform: translateX(-50%);
         margin: 0 auto;
     }

     .slides-slider.owl-carousel .owl-nav button.owl-next,
     .slides-slider.owl-carousel .owl-nav button.owl-prev,
     .slides-slider.owl-carousel button.owl-dot,
     .mob-why-slider.owl-carousel .owl-nav button.owl-next,
     .mob-why-slider.owl-carousel .owl-nav button.owl-prev,
     .mob-why-slider.owl-carousel button.owl-dot {
         background: #cfcfcf;
         color: inherit;
         border: none;
         border-radius: 50%;
         margin: 2px;
         padding: 4px !important;
     }

     .mob-why-slider.mt-5 {
         margin-top: 1.5rem !important;
         padding: 0 0 40px;
     }

     .blog-card .blog-text {
         padding: 8px 4px;
         margin: 0 !important;
     }

     .blog-card .blog-text p {
         font-size: 9px;
         line-height: 14px;
     }

     .blogs-sec.mt-5,
     .footer-links.mt-5 {
         margin-top: 1.5rem !important;
     }

     .blogs-sec.mt-5 .mob-upcoming-slider {
         padding: 0 0 10px;
     }



     .wander-slider {
         margin: 20px 0 0;
     }

     .wander-icon {
         bottom: 3%;
         right: 3%;
     }

     .mob-why .feature-item {
         padding: 0;
         height: 100%;
     }

     .mob-why .feature-item .feature-icon img {
         max-width: 60px;
         margin: 0 auto 20px;
     }

     .mob-why .feature-item h5 {
         font-size: 14px;
         line-height: 15px;
         width: 50%;
         margin: 0 auto 8px;
     }

     .mob-why .feature-item p {
         font-size: 12px;
         line-height: 16px;
         width: 80%;
         margin: auto
     }

     .footer-logo img {
         max-width: 65px !important;
         margin: 0 0 15px;
     }

     .footer-copyright {
         text-align: center;
     }

     .footer-links h4 {
         font-size: 14px;
     }

     .payment-div p {
         font-size: 11px;
     }

     .col-md-2.d-flex.justify-content-end.col-12 {
         justify-content: center !important;
     }

     .in-tour-body {
         padding: 6px;
     }

     .in-tour-body h5 {
         font-size: 12px;
         margin-bottom: 6px;
         padding-bottom: 6px;
         line-height: 16px;
         height: 35px;
     }

     .botm-badge .price-tag {
         padding: 4px 5px;
         border-radius: 4px;
         font-size: 10px;
     }

     .mob-testi-slider.mt-5 {
         margin-top: 1rem !important
     }

     .testi-image.tall img {
         height: 233px;
     }

     .testi-image.short img {
         height: 175px;
     }

     .testi-left {
         padding: 12px;
     }

     .testi-location {
         padding: 25px 12px 12px;
     }

     .testi-left .testi-left-title .testi-icon {
         width: 25px;
         height: 25px;
         line-height: 25px;
         margin: 0 15px 0 0;
     }

     .testi-left .testi-left-title .testi-title h5 {
         font-size: 10px;
         line-height: 16px;
     }

     .testi-left .testi-left-title .testi-title p {
         font-size: 8px;
         line-height: 9px;
     }

     .testi-review p {
         font-size: 10px;
         line-height: 15px;
         font-weight: 400;
         max-height: 4.5em;
     }

     .scroll-top.active {
         bottom: 95px;
     }

     .upcoming-page {
         padding: 60px 0 60px;
     }

     .batch-tabs {
         padding: 0;
     }

     /*--------------------------------------------------------------
# Responsive CSS ------ Career Page
--------------------------------------------------------------*/
     .shape .sec-title.mb-5 {
         margin-bottom: 10px !important;
     }

     .shape p {
         font-size: 12px;
         line-height: 18px;
         text-align: center;
     }

     .position-list ul {
         display: flex;
         overflow: auto;
         padding: 10px 5px;
     }

     .position-list ul li {
         display: contents;
         padding: 6px;
     }

     .position-list ul li .position-links,
     .position-list ul li .position-links.active {
         padding: 4px 8px;
         font-size: 11px;
         margin: 0 5px 10px;
         white-space: nowrap;
     }

     .shape .col-lg-6.col-md-6.col-12.offset-1 {
         margin: 0;
     }

     .inner-cta .col-md-6.col-12.offset-1 {
         margin: 0;
     }

     .hiring-btn {
         padding: 2px 10px;
         margin: 6px auto;
         font-size: 9px;
         line-height: 13px;
         top: 12px;
         right: 16px;
     }

     .accordion-button,
     .job-description h4 {
         font-size: 12px;
         line-height: 18px;
     }

     .job-description ul {
         padding-left: 15px
     }

     .job-description ul li {
         font-size: 11px;
     }

     .job-form {
         padding: 8px;
     }

     .faq-list .accordion {
         margin: 20px 0 0;
     }

     /*--------------------------------------------------------------
# Responsive CSS ------ Footer
--------------------------------------------------------------*/
     .footer {
         padding: 30px 0 110px;
     }

     .footer .g-5,
     .footer .gy-5 {
         --bs-gutter-y: 1rem;
     }

     .footer-links h4 {
         font-size: 16px;
         margin-bottom: 10px;
     }

     .footer .footer-links ul li a,
     .footer .footer-links ul li p {
         font-size: 12px;
         line-height: 16px;
     }

     /*--------------------------------------------------------------
# Responsive CSS ------ Corporate Page
--------------------------------------------------------------*/
     .corporate-banner {
         padding: 20px;
         margin: 90px 0 0;
     }

     .corpo-text h1 {
         font-size: 25px;
         line-height: 35px;
         margin: 0 0 15px;
     }

     .corpo-text p {
         font-size: 16px;
         line-height: 25px;
     }

     .corpo-text .cta-botm {
         margin: 0px 0 0;
     }

     .corpo-left {
         gap: 20px;
         margin: 0 0 30px;
         text-align: center;
     }

     .corpo-btn a {
         padding: 8px 18px;
         font-size: 13px;
     }

     .corp-serv-pic {
         height: 50px;
     }

     .categ-div.corp-serv h5 {
         font-size: 12px;
         margin: 0 0 8px;
     }

     .categ-div.corp-serv p {
         font-size: 11px;
         line-height: 16px;
     }

     .corp-serv.categ-div {
         padding: 15px 12px;
         margin: 0 0 20px 0;
     }

     .shape.corp-serv .sec-title.mb-5 {
         margin-bottom: 0px !important;
     }

     .corp-why-pic {
         margin: 0 0 40px;
     }

     .corp-why-pic,
     .corp-why-pic img {
         max-width: 340px;
         height: 400px;
         margin: 0px auto 40px;
     }

     .corpo-y-card {
         width: 47%;
         height: 200px;
         margin: 0 5px;
     }

     .corpo-y-card p {
         font-size: 11px;
         line-height: 17px;
         margin: 0 0 15px;
         text-align: center;
     }

     .corpo-y-card h5 {
         font-size: 13px;
         line-height: 20px;
         margin: 0 0 8px;
         text-align: center;
     }

     .corpo-cta-text {
         width: 100%;
         margin: 80px 0 0;
     }

     .corpo-cta-text h3 {
         font-size: 30px;
         line-height: 40px;
     }

     .corpo-cta-text p {
         font-size: 16px;
         line-height: 23px;
     }

     .corpo-cta::before {
         background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.61) 35%, rgba(0, 0, 0, 0) 100%);
     }

     .corpo-cta-text a {
         font-size: 14px;
     }

     .owl-carousel__nav.corpo-nav {
         display: none;
     }

     .y-icon {
         width: 55px;
         height: 55px;
         line-height: 55px;
         margin: 0 auto 10px;
     }

     .y-icon img {
         max-width: 28px;
     }

     .corpo-slide-left {
         gap: 10px;
         margin: 40px 0 0;
     }

     .rating-container {
         gap: 30px;
         justify-content: center;
         margin: 0 0 40px;
     }

     .corpo.owl-carousel__next,
     .corpo.owl-carousel__prev {
         display: none;
     }

     .corpo-slide-pic,
     .corpo-slide-pic img {
         height: 200px;
     }

     .corp-brand-icon img {
         height: 120px;
     }

     .go4-positions .sec-title p {
         width: 100%;
     }

     .life-at-go4 .mt-4 {
         margin-top: 0 !important;
     }

     .corpo-slider-sec .col-lg-8.col-md-8.col-12.offset-1 {
         margin: 0;
     }

     .shape.corp-serv .col-md-6.col-12.offset-1 {
         margin: 0;
     }

     /*--------------------------------------------------------------
# Responsive CSS ------ Booking Form Page
--------------------------------------------------------------*/
     .book-det-sec {
         padding: 100px 0 80px;
     }

     .booking-form {
         padding: 15px;
     }

     .booking-form .nav-pills .nav-link {
         padding: 0;
         font-size: 12px;
         line-height: 16px;
         width: 23%;
     }

     a.nav-link.tab-pills {
         padding: 0;
         font-size: 12px;
         line-height: 16px;
         margin: 0 0 10px 0;
     }

     .booking-form .card-header {
         margin: 20px 0 40px;
     }

     .book-form-title {
         font-size: 18px;
         line-height: 20px;
     }

     .booking-form input,
     .booking-form .form-select,
     .booking-form input[type="file"],
     .booking-form textarea {
         padding: 10px 20px;
         height: 43px;
         margin: 0 0 8px;
         font-size: 12px;
     }

     .booking-form label {
         font-size: 12px;
     }

     .batch-list {
         display: inline;
     }

     .batch-list li {
         display: block;
         width: 100%;
         margin: 0 0 6px 0;
     }

     .batch-detail {
         margin: 0;
     }

     .occupancy-price {
         padding: 5px 8px;
     }

     .buk-total-amnt {
         padding: 0;
     }

     /*--------------------------------------------------------------
# Trip Detail Page Responsive CSS Start
--------------------------------------------------------------*/
     .det-trip-sec-2 {
         padding-top: 5px;
     }

     .tour-detail,
     .trip-price,
     .price-sum {
         padding: 12px;
     }

     .det-trip-sec-2 .sec-title h4 {
         margin: 0 0 20px;
     }

     .trips-info {
         padding: 6px;
         display: block;
         text-align: center;
     }

     .td-info-text {
         text-align: center;
     }

     .td-info-icon {
         width: 40px;
         margin: 6px auto;
     }

     .td-info-icon img {
         max-width: 22px;
     }

     .td-info-text span {
         font-size: 12px;
         line-height: 16px;
     }

     .td-info-text h4 {
         font-size: 11px;
         line-height: 16px;
     }

     .tour-detail .row.d-flex.justify-content-center {
         justify-content: start !important;
     }

     .trips-info-2 .td-info-icon {
         width: auto;
     }

     .trips-info-2 {
         padding: 0;
     }

     .trips-info-2 .td-info-icon img {
         max-width: 22px;
     }

     .trips-info-2 .td-info-text h4 {
         font-size: 12px;
         line-height: 19px;
         margin: 0 0px 0 10px;
     }

     .div-5-col {
         width: 29%;
         margin: 0 8px;
         display: inline-block;
     }

     .sticky-tabs {
         padding: 8px 7px;
         border-radius: 6px;
     }

     .sticky-packag-right-tabs {
         top: 68px;
     }

     .sticky-tabs ul {
         display: flex;
         overflow: auto;
     }

     .sticky-tabs ul li {
         display: contents;
         padding: 6px;
     }

     .sticky-tabs ul li button {
         font-size: 14px;
         line-height: 18px;
         font-weight: 700;
         white-space: nowrap;
         padding: 8px;
     }

     ol,
     ul {
         padding-left: 1rem;
     }

     hr {
         margin: 0.5rem 0 1rem 0;
     }

     .tour-detail.tour-detail-2 ul {
         padding-left: 2rem;
         margin: 0 0 5px;
     }

     .tour-detail.tour-detail-2 p,
     .tour-detail.tour-detail-2 ul li {
         font-size: 13px !important;
         line-height: 18px;
         padding: 0 0 10px;
     }

     .tour-detail.tour-detail-2 p {
         margin: 0 0 5px;
     }

     .tour-detail.tour-detail-2 h4 {
         font-size: 18px;
         margin: 0;
     }

     .tour-detail.tour-detail-2 h3,
     .tour-detail.tour-detail-2 h2 {
         font-size: 16px;
         line-height: 26px;
     }

     .tour-detail.tour-detail-2.bg-light-green ul li:before {
         left: -26px;
     }

     .cursor-pointer {
         font-size: 12px;
         font-weight: 600;
     }

     .sticky-packag-right {
         position: inherit;
         top: 0px;
         z-index: 9;
         order: 1;
     }

     .sticky-packag-left {
         order: 2;
     }

     .tour-detail .col-md-4.col-4 {
         padding: 0 5px;
     }

     .trip-faq .day-no {
         padding: 4px;
         margin: 5px;
         width: 20%;
         font-size: 11px;
     }

     .trip-faq .accordion-item {
         padding: 5px;
     }

     .trip-faq .accordion-button {
         padding: 6px;
         width: 100%;
         display: flex;
         justify-content: space-between;
         gap: 5px;
     }

     .inclusions {
         padding: 15px 10px;
     }

     .inclusions h5 {
         font-size: 14px;
         margin: 0 0 14px 0;
     }

     .incl-text h6 {
         font-size: 12px;
     }

     .review-body p {
         font-size: 13px;
         line-height: 18px;
     }

     .rev-img {
         width: 35px;
         height: 35px;
         line-height: 35px;
         margin: 0 10px 0 0;
     }

     .rev-img img {
         max-width: 35px;
         width: 100%;
     }

     .rate-icons i {
         font-size: 13px;
         margin: 0 2px;
     }

     .trip-price h4 {
         font-size: 25px;
         line-height: 35px;
     }

     .trip-price .crossed-price {
         font-size: 19px;
         line-height: 28px;
     }

     .occu-tabs .nav-link,
     .batch-tabs .nav-link {
         font-size: 12px;
     }

     .trip-price p {
         font-size: 14px;
         line-height: 20px;
     }

     .div-minus h5 {
         font-size: 11px;
         line-height: 15px;
         padding-bottom: 5px;
         margin: 0 0 5px;
     }

     .div-minus {
         padding: 95px 10px 10px;
     }

     /*--------------------------------------------------------------
# Landing Page Responsive CSS Start
--------------------------------------------------------------*/
     .landing-page-best-deals .in-tour-body h5 {
         font-size: 10px;
         line-height: 13px;
         height: 33px;
     }

     .landing-page-best-deals .tour-pricing .price {
         font-size: 11px;
     }

     .in-tour-img,
     .in-tour-img img {
         height: 160px;
     }

     /*--------------------------------------------------------------
# Extra Care Page Responsive CSS Start
--------------------------------------------------------------*/
     .extra-care-card {
         padding: 10px;
     }

     .extra-sec-1 .sec-title.mt-5 {
         margin: 0 !important;
     }

     .row.gy-5.mt-5 {
         margin: 20px 0 0 !important;
     }

     .cta-query .bg_blue h5 {
         font-size: 20px;
         line-height: 28px;
         width: 100%;
     }

     .enq-img {
         position: relative;
         bottom: -20px;
     }

     .cta-query .bg_blue p {
         width: 100%;
         margin: 20px 0;
     }

     .upcoming .row.d-flex.justify-content-between.pb-5 {
         padding-bottom: 1rem !important;
     }

     /*--------------------------------------------------------------
# About Page Responsive CSS Start
--------------------------------------------------------------*/
     .about-banner.hero-banner {
         margin: 60px 0px 0;
     }

     .about-banner.hero-banner .home-content .abt-ban-heading {
         font-size: 35px;
         line-height: 45px;
     }

     .who-we-text {
         position: relative;
         bottom: auto;
         padding: 300px 0 0;
     }

     .who-we-sec {
         height: auto;
         padding: 40px 20px 10px;
         background-position: center !important;
     }

     .who-we-text p {
         margin: 10px 0 30px 0;
         font-size: 12px;
         line-height: 20px;
     }

     .who-we-col img {
         max-width: 45px;
     }

     .who-we-col h5 {
         margin: 10px 0 15px;
         font-size: 12px;
         line-height: 18px;
     }

     .ofr-pic {
         width: 80px;
         height: 80px;
         line-height: 80px;
     }

     .ofr-pic img {
         max-width: 45px;
     }

     .offer-col h5 {
         font-size: 13px;
         line-height: 19px;
         margin: 6px 0 18px;
     }

     .founder-div,
     .founder-pic {
         position: relative;
         bottom: -50px;
         right: auto;
     }

     .founder-sec {
         height: auto;
         padding: 30px 0;
     }

     .founder-sec .col-md-5.offset-1 {
         margin: 0;
     }

     .founder-text {
         margin: 0;
         text-align: center;
     }

     .founder-text h4 {
         margin-bottom: 70px;
     }

     .founder-text p {
         font-size: 12px;
         line-height: 18px;
         text-align: left;
     }

     .team-col {
         width: 100%;
         padding: 8px;
     }

     .team-title p {
         font-size: 11px;
         line-height: 15px;
     }

     .team-title h5 {
         font-size: 13px;
         line-height: 19px;
     }

     .ofr-sec .row.mt-5 {
         margin-top: 1rem !important;
     }

     .ofr-sec .row.mt-5.gy-5 {
         --bs-gutter-y: 1rem;
     }

     .caption-sec {
         height: auto;
     }

     .caption-sec .col-md-3 {
         order: 1;
     }

     .caption-sec .col-md-5 {
         order: 0;
     }

     .trending-nav {
         display: none;
     }

     .trending-mob-div,
     .getaways-mob-div {
         max-width: 100%;
         overflow: hidden;
     }

     .trending-mob-div .swiper {
         width: 108%;
     }

     .getaways-mob-div .swiper {
         width: 130%;
     }

     .getaways-mob-div.career-pg .swiper {
         width: 105%;
     }

     .domestic-nav {
         display: none !important;
     }

     .blog-card {
         border-radius: 10px;
         overflow: hidden;
         background: #fff;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     }

     .mob-why-slider .swiper-android .swiper-slide,
     .mob-why-slider .swiper-ios .swiper-slide,
     .mob-why-slider .swiper-wrapper {
         height: 200px;
     }

     .mob-why-slider .swiper-pagination-fraction,
     .mob-why-slider .swiper-pagination-custom,
     .mob-why-slider .swiper-horizontal>.swiper-pagination-bullets,
     .mob-why-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
         bottom: 0;
     }

     .det-trip-sec-1 {
         padding: 70px 0 0px 0;
     }

     .timeline .default-line {
         height: -webkit-fill-available;
     }

     .timeline {
         padding: 30px 10px 0;
     }

     .left-content,
     .right-content {
         padding: 6px;
         font-size: 12px;
     }

     .captain-pic {
         height: auto;
         position: relative;
         bottom: -32px;
     }

     .captain-pic img {
         height: auto;
     }

     .caption-text-1 p {
         font-size: 13px;
         line-height: 22px;
     }

     .caption-text-2 h3 {
         font-size: 24px;
         line-height: 34px;
     }

     .caption-text-2 h3 span {
         font-size: 37px;
         line-height: 44px;
     }

     .join-team-text p {
         font-size: 14px;
         line-height: 24px;
     }

     .with-blur-backdrop {
         padding: 20px 30px 20px;
     }

     .aim-night .sec-title p {
         width: auto;
     }

     .blog-detail-sec {
         padding: 50px 0 30px 0;
     }

     /*--------------------------------------------------------------
# Contact Page Responsive CSS Start
--------------------------------------------------------------*/
     .contact-sec {
         padding: 50px 0 30px;
     }

     .contact-sec .col-12.col-md-7.col-lg-7 {
         margin-bottom: 20px;
     }

     .contact-form.job-form {
         padding: 20px 0 0px;
     }

     .img-back-grey {
         width: 65px !important;
         height: 65px;
     }

     .img-back-grey img {
         height: 40px;
     }

     .box-review-small {
         padding: 0 0 20px;
         margin: 0 0 10px;
     }

     .box-review-small a,
     .box-review-small p {
         font-size: 14px;
     }

     .presence-section {
         padding: 30px 0;
     }

     .con-icon {
         width: 90px;
         height: 90px;
     }

     .presence-icon {
         width: 50px;
     }

     .presence-grid {
         gap: 20px;
     }

     .map_height {
         height: auto !important;
     }

     .mt-5.map_height {
         margin-top: 0rem !important;
     }

     /*--------------------------------------------------------------
# Login Page Responsive CSS Start
--------------------------------------------------------------*/
     .log-box {
         margin: 80px 20px 20px;
     }

     .login-img {
         border-radius: 18px;
         border-top-right-radius: 0;
         border-top-left-radius: 0;
     }

     .login-form .log-title h1 {
         font-size: 25px;
     }

     .login-form.job-form {
         padding: 40px 12px;
     }

     .login-form.job-form .form-check-label {
         margin: 0 0 0 14px;
         font-size: 12px;
         line-height: 22px;
     }

     .login-form .log-title p {
         font-size: 13px;
         margin: 0 0 30px !important;
     }

     .login-form.job-form .input-div {
         margin: 0 0 10px;
     }

     .login-form.job-form p {
         font-size: 12px;
         line-height: 16px;
         margin: 10px 0 0;
     }

     .main-blog-card {
         padding: 14px;
     }

     .blogs-sec .gy-5 {
         --bs-gutter-y: 1rem;
     }


 }