body.v3 {
  padding-top: 120px;
}
:root {
  scrollbar-gutter: stable;
  /* Primary (Red-Orange) */
  --color-primary: #DD3203;
  --color-primary-hover: #B42802;
  --color-primary-light: #FDECE6;
  --color-primary-muted: #F5B5A0;

  /* Secondary (Blue) */
  --color-secondary: #0057A0;
  --color-secondary-hover: #004377;
  --color-secondary-light: #E6F0FA;
  --color-secondary-muted: #A5C4E1;
}
/* Header Logos */
@media (max-width: 1200px) {
	.header-flex-row { padding: 0 10px !important; }
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    max-height: 70px;
}

.whole-nav-animate.nav-hide {
  top: -70px !important;
}
.v3 .navbar-custom, .v3 .mobile-navbar {
  padding-top: 2px;
  background: #fff url(/templates/abtv3/menu/header-pattern-bg.png) top right no-repeat;
  background-size: 600px;
} 
@media (max-width: 768px) {
  .v3 .mobile-navbar {  
  background-size: 400px;
  }
}
.navbar-icons {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .nav-icon {
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .nav-icon:hover, .nav-icon:active, .nav-icon:focus {
    color: var(--color-primary);
    text-decoration: none;
  }
  .dropdown-panel {
    position: fixed;
    top: 60px;
    right: 0;
    max-width: 100vw;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 1001;
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    border-radius: 0 0 10px 10px;
  }
  @media (max-width: 600px) {
    .dropdown-panel {
      left: 0;
      right: 0;
      width: 100vw;
      border-radius: 0;
    }
    .navbar-icons {
      gap: 18px;
    }
  }
  
@media (min-width: 1025px) {
  .dropdown-panel {
    max-width: 50vw;
    left: 50% !important;
    right: auto !important;
    top: 70px !important;
    transform: translateX(-50%) !important;
    border-radius: 10px;
  }
  .dropdown-panel {
    top: 50%!important;
    transform: translate(-50%, -50%)!important;
  }
  .search-dropdown .search-box button {
    padding: 5px 20px;
  }
}

  .mobile-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 0px 15px;
}
@media (min-width: 1025px) {
  .mobile-navbar { display: none; }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Right Sidebar */
.right-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 75%;
  box-sizing: border-box;
  height: auto;
  max-height: 100vh;
  background: #fff;
  z-index: 1002;
  transform: translateX(100%);
  transition: all .3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  padding-top: 50px;
}
.right-sidebar.active {
  transform: translateX(0);
}

@media screen and (max-width: 480px) {
  .right-sidebar {
    width: 90%;
  }
}

.sidebar-header {
    position: relative;
    padding: 24px;
    border-bottom: 1px solid #eee;
}

.sidebar-close {
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 1100;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.sidebar-close:hover, .sidebar-menu a:hover {
    color: var(--color-primary);
}
.sidebar-menu,
.sidebar-menu ul {
  list-style: none;
  margin: 0;
}

.sidebar-menu {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;  
  overflow-y: auto;  
  padding: 0px 20px 20px;
}
.sidebar-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}

/* PARENT: top-level menu items (icon on right) */
.sidebar-menu > li.has-submenu > a::after {
  content: "\f105"; /* angle-right */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
  transition: transform 0.3s ease;
}

.sidebar-menu > li.has-submenu.open > a::after {
  content: "\f107"; /* angle-down */
}

/* CHILD: submenu items (icon on left) */
.sidebar-menu li ul li.has-submenu > a {
  position: relative;
  padding-left: 20px;
}

.sidebar-menu li ul li.has-submenu > a::before {
  content: "\f105"; /* angle-right */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5.5px;
  line-height: inherit;
  transition: transform 0.3s ease;
}

.sidebar-menu li ul li.has-submenu.open > a::before {
  content: "\f107"; /* angle-down */
}
.sidebar-menu li.has-submenu.open > a, .sidebar-menu li ul li.has-submenu.open > a, .sidebar-menu li.has-submenu.open a:active {
  color: var(--color-primary);
  font-weight: 600;
}

/* All submenu levels */
.sidebar-menu .has-submenu > ul {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding-left: 5px;
}

.sidebar-menu .has-submenu.open > ul {
  max-height: 1000px;
  opacity: 1;
}

/* Grandchild */
.sidebar-menu li ul li.has-submenu.open > ul {
  padding-left: 20px;
}
.sidebar-menu li ul li.has-submenu.open > ul li {
  margin: 0;
  line-height: 1.5;
}


/* Menu Levels */
.menu-level {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 0;
  margin: 0;
  list-style: none;
}
.menu-level.current {
  transform: translateX(0);
  overflow-y: auto;
}

/* Menu Items */
.menu-level li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  color: #333;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
}
.menu-level li a:hover, .menu-level li a:active {
  color: var(--color-primary);
}
.menu-level li a .arrow {
  color: #999;
}
.menu-level li a.has-children:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105"; /* angle-right icon */
  margin-left: 10px;
}

/* Back Button */
.back-button {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.back-button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f104"; /* angle-left icon */
  margin-right: 8px;
}

.menu-button {
  margin: 15px;
}
.menu-level li.menu-button a {
  justify-content: center;
  border-radius: 10px;
}

/* Dropdown Panels */
.dropdown-panel {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    max-height: calc(100% - 60px);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 1001;
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-panel.active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  overflow-y: auto;
}
.dropdown-panel.search-dropdown {
  background: transparent;  
  box-shadow: none;
}
.search-dropdown .search-box {
  background: #fff;
}
.login-buttons {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.login-buttons a { flex: 1 1 100%; }
@media screen and (min-width: 420px) {
  .dropdown-content {
    padding: 10px;
  }
  .login-buttons a { flex: 1 1 calc(33% - 10px); }
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
  }

  .contact-link:hover, .contact-link:active, .contact-link:focus {
    background: #f8f8f8;
    text-decoration: none;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 16px;
  }

  .contact-content {
    flex: 1;
  }

  .contact-title {
    font-weight: 600;
    margin-bottom: 2px;
    color: #333;
  }

  .contact-subtitle {
    font-size: 13px;
    color: #666;
  }

  /* Specific Contact Types */
  .contact-livechat .contact-icon {
    background: #fabc2d;
  }
  .contact-whatsapp .contact-icon {
    background: #25D366;
  }
  .contact-messenger .contact-icon {
    background: #006AFF;
  }
  .contact-email .contact-icon {
    background: #EA4335;
  }
  .contact-phone .contact-icon {
    background: #191d9e; ;
  }

/* Overlay */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.panel-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* CTA Button */

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  padding: 8px 22px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  box-shadow: none;
  color: #fff!important;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg) translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.cta-btn:hover::before {
  opacity: 1;
  animation: cta-sheen 0.8s cubic-bezier(.2,.8,.2,1);
}
.menu-v3 .cta-btn.btn-orange-outline {
  color: #ff5400!important;
  border: 2px solid #ff5400;
}
.menu-v3 .cta-btn.btn-orange-outline:hover {
  color: #fff!important;
}

@keyframes cta-sheen {
  to {
    transform: skewX(-20deg) translateX(350%);
  }
}
.cta-blue {
  background: #2D3191;
  color: #fff;
}
.cta-red {
  background: #f04037;
  color: #fff;
}
.cta-blue:hover,
.cta-blue:focus {
  background: #272dae;
  color: #fff;
}
.cta-red:hover,
.cta-red:focus {
  background: var(--color-primary);
  color: #fff;
}
.cta-btn span.fa {
  margin-right: 7px;
  margin-left: 7px;
  font-size: 14px;
}
.cta-orange {
  background: linear-gradient(180deg, #f58e00 0%, #ff5400 100%);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(225, 58, 26, 0.08);
}
.cta-orange:hover,
.cta-orange:focus {
  background: linear-gradient(180deg, #ff7e29 0%, #dd3203 100%);
  color: #fff !important;
  text-decoration: none;
}
.cta-green {
  background: linear-gradient(180deg, #009933 0%, #007837 100%);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(225, 58, 26, 0.08);
}
.cta-green:hover,
.cta-green:focus {
  background: linear-gradient(180deg, #009444 0%, #009933 100%);
  color: #fff !important;
  text-decoration: none;
}

.icon-left.fas {
  margin-right: 5px;
}
.icon-right.fas {
  margin-left: 5px;
}

/* Mega Menu */
.navbar-mega .navbar-collapse {
  gap: 20px;
  justify-content: center;
}
.navbar-default .navbar-nav>li {
  position: relative;
}
.navbar-default .navbar-nav>li>.dropdown-menu.menu-v3 { 
  display: block; 
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  background-color: #fff;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  padding: 10px;
  border: 0;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s ease;
}
.navbar-default .navbar-nav>li.open>.dropdown-menu.menu-v3 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.navbar-default .navbar-nav>li.destinations>.dropdown-menu.menu-v3 {    
  width: 1190px;
  max-height: 300px;
}
.navbar-default .navbar-nav>li.ways-to-travel>.dropdown-menu.menu-v3 {
  width: 1020px;
}
.navbar-default .navbar-nav>li.resources>.dropdown-menu.menu-v3 {
  width: 590px;
}
.main-nav {
  display: flex;
  width: 100%;
  padding-left: 0;
  position: static;
}
.main-nav .sub {
  padding: 8px 12px;
  list-style-type: none;
}
.main-nav.expand .sub {
padding: 10px 20px;
}
.main-nav .sub, .main-nav .sub>a {
  color: #151515;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}
.mega-dropdown ul.main-nav .nav-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.main-nav.expand .sub:before, .main-nav.expand .sub>a:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f105";
  right: 0;
  left: auto;
  width: 20px;
  color: inherit;    
  position: absolute;
  padding-top: 5px;
}
.main-nav .sub .nav-secondary {
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s;
  position: absolute;    
  left: 100%;
  top: 0;
  list-style: none;
  padding: 10px 30px;
  margin: 0;
  width: 320px;
  z-index: 1000;
  display: flex;
  gap: 20px;
}
.destinations .main-nav .sub .nav-secondary {
  width: 900px;
}
.ways-to-travel .main-nav .sub .nav-secondary {
  width: 725px;
}
.main-nav .sub .nav-secondary .nav-links {
  width: 100%;
}
.main-nav .sub .nav-secondary h3 {
  margin-top: 0;
}
.main-nav .sub:hover, .main-nav .sub.active {
  cursor: pointer;
  background-color: #f7f7f7;
}
.main-nav .sub.active .nav-secondary {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  cursor: default;
}
.main-nav .sub .nav-secondary .grid-wrapper {
  display: grid;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}
.main-nav .sub .nav-secondary .nav-links .grid-wrapper.three-cols {    
  grid-template-columns: repeat(3, 1fr);
}
.main-nav .sub .nav-secondary .nav-links .grid-wrapper.two-cols {
  grid-template-columns: repeat(2, 1fr);
}
.main-nav .sub .nav-secondary .grid-wrapper a {
  font-size: 16px;
  color: #888;
}
.nav-secondary ul {
  list-style: none;
  padding-left: 0;
}
.nav-secondary ul li {
  list-style-type: none;
  margin: 10px 0;
}
.nav-secondary .nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-secondary .nav-header a.btn {
  color: #fff;
}
.nav-secondary .nav-header a.btn:hover, .nav-image .btn.menu-click-more:hover {
  text-decoration: none;
}
.nav-secondary .nav-image {
  background: rgb(241, 241, 241);
  min-width: 320px;
  height: 240px;
  position: relative;
  overflow: hidden;
  transition: all 120ms;
}
.nav-secondary .nav-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.3s ease;
}
.nav-secondary .nav-image:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.nav-secondary .nav-image .menu-click-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-nav.expand.destinations-columns {
  display: flex;
  gap: 30px;
}
.destination-col {
  flex: 1 1 0;
  min-width: 0;
}
.destination-col .col-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.destination-col .nav-links ul {
  padding-left: 0;
  list-style: none;
}
.destination-col .nav-links ul li {
  margin: 8px 0;
}
/* v3 nav style overrides */
.navbar.navbar-default.desktop-only {
  background: #2D3191 !important;
}
/*
.navbar.navbar-default.desktop-only .navbar-nav > li > a,
.navbar.navbar-default.desktop-only .navbar-nav > li > a .fa,
.navbar.navbar-default.desktop-only .navbar-nav > li > a .fa-angle-down,
.navbar.navbar-default.desktop-only .navbar-nav > li .dropdown-toggle,
.navbar.navbar-default.desktop-only .navbar-nav > li .dropdown-toggle .fa,
.navbar.navbar-default.desktop-only .navbar-nav > li .dropdown-toggle .fa-angle-down {
  color: #121212 !important;
}
.navbar.navbar-default.desktop-only .navbar-nav > li > a,
.navbar.navbar-default.desktop-only .navbar-nav > li > a.dropdown-toggle {
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.navbar.navbar-default.desktop-only .navbar-nav > li > a:hover,
.navbar.navbar-default.desktop-only .navbar-nav > li > a.dropdown-toggle:hover,
.navbar.navbar-default.desktop-only .navbar-nav > li > a.dropdown-toggle:focus,
.navbar.navbar-default.desktop-only .navbar-nav > li.active > a.dropdown-toggle {
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-primary) !important;
  font-weight: 600;
}
.navbar.navbar-default.desktop-only .navbar-nav > li > a.dropdown-toggle:hover .fa-angle-down,
.navbar.navbar-default.desktop-only .navbar-nav > li > a.dropdown-toggle:focus .fa-angle-down,
.navbar.navbar-default.desktop-only .navbar-nav > li.active > a.dropdown-toggle .fa-angle-down {
  color: var(--color-primary) !important;
}*/

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-primary) !important;
  font-weight: 600;
  background-color: #ffffff !important;
}
.mega-menu-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}
.mega-menu-row {
  display: grid;
  grid-template-columns: 1fr 20% 20%;
  gap: 40px;
  padding: 20px;
  align-items: flex-start;
}
.mega-menu-row.six-col {
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding-bottom: 0px;
}
.tour-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tour-col h3 {
  text-align: center;
}
.six-col > .mega-menu-col > ul {
  text-align: center;
}
.tours-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid #D9D9D9;
  padding: 20px;
}
.bubbles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 18px;
  width: 100%;
}
.bubble {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.bubble-title {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.bubble.mega-menu-link {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bubble-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  position: relative;
  inline-size: 120px;
}
.bubble-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bubble.mega-menu-link:hover .bubble-img-wrap img, 
.bubble.mega-menu-link:focus .bubble-img-wrap img, .bubble-img-wrap:hover img {  
  transform: scale(1.2);
}

.mega-menu-col > ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  width: 100%;
}
.mega-menu-col > ul li {
  margin-bottom: 8px;
}
.menu-v3 a {
  color: #121212;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  transition: color 0.2s;
}
.menu-v3 a:hover,
.menu-v3 a:focus,
.menu-v3 a:active {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
}
.menu-v3 h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 0;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 8px;
  width: 100%;
}

.bubble-img-wrap.fx-sheen::before{
content:""; position:absolute; inset:0; border-radius:50%; z-index: 2;
background:linear-gradient(120deg,transparent 35%,rgba(255,255,255,.55) 50%,transparent 65%);
transform:translateX(-140%); opacity:0; transition:opacity .15s;
}
.mega-menu-link:hover .fx-sheen::before{
opacity:1; animation:sheen-move 1s cubic-bezier(.2,.8,.2,1);
}
@keyframes sheen-move{ to{ transform:translateX(140%); } }

@media (min-width: 1280px) {
  .bubble-img-wrap {
    width: 140px;
    height: 140px;
    inline-size: 140px;
  }
  .mega-menu-row {
    gap: 40px;
  }
}