/**
* Template Name: SamJe-Tech Adventures - v1.0.0
* Template URL: https://samjetech.com/samje-tech-adventures/
* Updated: June 28, 2026 with Bootstrap v5.3.7
* Author: SamJe-Technology Systems
* License: https://samjetech.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Nunito", 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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #343a40; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --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: #444444; /* The default color of the main navmenu links */
  --nav-hover-color: #ceaf7f; /* 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: #7f7f90; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ceaf7f; /* 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: #f2f2f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --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);
}

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);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .branding {
  min-height: 60px;
  padding: 20px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 72px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu svg {
    height: 16px;
    padding-right: 10px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    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,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: 800;
  }
    
  .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: 4px;
    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 20px;
    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 - 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;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu svg {
    height: 16px;
    padding-right: 10px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    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);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    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;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    font-weight: 800;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--accent-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    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: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    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: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  bottom: 0;
  left: 0;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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: 4px;
  transition: all 0.4s;
}

.scroll-top {
  font-size: 14px;
  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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# 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 {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background-color: #0a0a0a;
}

.hero .cinema-slider {
  position: relative;
}

.hero .swiper {
  overflow: hidden;
}

.hero .swiper-wrapper {
  height: auto !important;
}

.hero .cinema-frame {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .swiper-slide-active .cinema-frame img {
  transform: scale(1.08);
}

.hero .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero .content-inner {
  max-width: 600px;
}

.hero .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 28px;
  transition: width 0.6s ease;
}

.hero .swiper-slide-active .accent-line {
  width: 80px;
}

.hero .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner h3 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
}

.hero .swiper-slide-active .content-inner h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff 72%, transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.hero .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero .refined-btn i {
  font-size: 14px;
  transition: transform 0.5s ease;
}

.hero .refined-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .refined-btn:hover i {
  transform: translateX(5px);
}

.hero .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero .swiper-slide-active .refined-btn:hover {
  transition: all 0.5s ease;
}

.hero .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .hero-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero .hero-pagination .hero-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero .hero-button-prev,
.hero .hero-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero .hero-button-prev::after,
.hero .hero-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero .hero-button-prev:hover,
.hero .hero-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero .hero-button-prev:hover::after,
.hero .hero-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero .content-inner h3 {
    font-size: 42px;
  }

  .hero .content-inner {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero .cinema-frame {
    min-height: 480px;
  }

  .hero .content-inner h3 {
    font-size: 36px;
  }

  .hero .content-inner p {
    font-size: 16px;
  }

  .hero .frame-content {
    padding: 0 6%;
  }

  .hero .slider-controls {
    right: 6%;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero .cinema-frame {
    min-height: 520px;
  }

  .hero .frame-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
  }

  .hero .frame-content {
    align-items: flex-end;
    padding: 0 24px 120px;
  }

  .hero .content-inner {
    max-width: 100%;
  }

  .hero .content-inner h3 {
    font-size: 30px;
  }

  .hero .content-inner p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero .refined-btn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero .slider-controls {
    bottom: 24px;
    right: 24px;
  }

  .hero .controls-inner {
    gap: 20px;
  }

  .hero .hero-button-prev,
  .hero .hero-button-next {
    width: 44px;
    height: 44px;
  }

  .hero .hero-button-prev::after,
  .hero .hero-button-next::after {
    font-size: 14px;
  }

  .hero .hero-pagination .hero-pagination-current {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .hero .cinema-frame {
    min-height: 460px;
  }

  .hero .content-inner h3 {
    font-size: 26px;
  }

  .hero .accent-line {
    width: 40px;
    margin-bottom: 20px;
  }

  .hero .swiper-slide-active .accent-line {
    width: 56px;
  }

  .hero .tag-label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero .frame-content {
    padding: 0 20px 100px;
  }

  .hero .slider-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero .controls-inner {
    gap: 16px;
  }

  .hero .hero-button-prev,
  .hero .hero-button-next {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 50%);
  padding-bottom: 60px;
}

.about .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .badge-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 2rem;
  }
}

.about .lead-text {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.about .stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 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: 576px) {
  .about .stats-row {
    gap: 1rem;
  }
}

.about .stats-row .stat-item {
  flex: 1;
}

.about .stats-row .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
  .about .stats-row .stat-item .stat-number {
    font-size: 1.5rem;
  }
}

.about .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about .feature-highlights {
  margin-bottom: 2rem;
}

.about .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about .feature-highlights .highlight-item:last-child {
  margin-bottom: 0;
}

.about .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .feature-highlights .highlight-item span {
  color: var(--default-color);
  font-size: 0.9375rem;
  font-weight: 500;
}

.about .visual-wrapper {
  position: relative;
}

.about .visual-wrapper .main-visual {
  position: relative;
  margin-bottom: 1.5rem;
}

.about .visual-wrapper .main-visual img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about .visual-wrapper .main-visual .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
  .about .visual-wrapper .main-visual .floating-card {
    padding: 1rem;
  }
}

.about .visual-wrapper .main-visual .floating-card.top-card {
  top: 2rem;
  right: -1.5rem;
}

@media (max-width: 992px) {
  .about .visual-wrapper .main-visual .floating-card.top-card {
    right: 1rem;
  }
}

.about .visual-wrapper .main-visual .floating-card.bottom-card {
  bottom: 2rem;
  left: -1.5rem;
}

@media (max-width: 992px) {
  .about .visual-wrapper .main-visual .floating-card.bottom-card {
    left: 1rem;
  }
}

.about .visual-wrapper .main-visual .floating-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .visual-wrapper .main-visual .floating-card .card-content .card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about .visual-wrapper .main-visual .floating-card .card-content .card-text {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about .visual-wrapper .secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about .visual-wrapper .secondary-grid img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1;
  object-fit: cover;
}

.about .visual-wrapper .secondary-grid img:hover {
  transform: translateY(-4px);
}

.about .features-grid {
  margin-top: 5rem;
}

.about .features-grid .feature-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about .features-grid .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .features-grid .feature-card .feature-icon {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.about .features-grid .feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.about .features-grid .feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/*--------------------------------------------------------------
# Featured Activities Section
--------------------------------------------------------------*/
.featured-tours .tour-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-tours .tour-card:hover {
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.featured-tours .tour-card:hover .tour-img-wrap img {
  transform: scale(1.08);
}

.featured-tours .tour-card:hover .book-link {
  color: var(--accent-color);
  gap: 10px;
}

.featured-tours .tour-card .tour-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
}

.featured-tours .tour-card .tour-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-tours .tour-card .tour-img-wrap .tour-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  z-index: 2;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.hot {
  background-color: #e74c3c;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.cultural {
  background-color: #8e44ad;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.limited {
  background-color: #e67e22;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.new {
  background-color: #27ae60;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.adventure {
  background-color: #d35400;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.popular {
  background-color: #f1c40f;
  color: var(--default-color);
}

.featured-tours .tour-card .tour-img-wrap .tour-label.luxury {
  background-color: #9b59b6;
}

.featured-tours .tour-card .tour-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-tours .tour-card .tour-body .tour-price-tag {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.featured-tours .tour-card .tour-body h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--heading-color);
}

.featured-tours .tour-card .tour-body .tour-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.featured-tours .tour-card .tour-body .tour-meta-list li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 4px 12px;
  border-radius: 20px;
}

.featured-tours .tour-card .tour-body .tour-meta-list li i {
  color: var(--accent-color);
  font-size: 13px;
}

.featured-tours .tour-card .tour-body p {
  font-size: 13px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 16px;
  flex-grow: 1;
}

.featured-tours .tour-card .tour-body .tour-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-tours .tour-card .tour-body .tour-bottom .tour-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.featured-tours .tour-card .tour-body .tour-bottom .tour-stars i {
  color: #f39c12;
  font-size: 13px;
}

.featured-tours .tour-card .tour-body .tour-bottom .tour-stars span {
  font-size: 13px;
  font-weight: 700;
  color: var(--default-color);
  margin-left: 5px;
}

.featured-tours .tour-card .tour-body .tour-bottom .book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent-color), black 10%);
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-tours .tour-card .tour-body .tour-bottom .book-link i {
  transition: transform 0.3s ease;
}

.featured-tours .tour-card .tour-body .tour-bottom .book-link:hover {
  color: var(--accent-color);
}

.featured-tours .tour-card .tour-body .tour-bottom .book-link:hover i {
  transform: translateX(4px);
}

.featured-tours .browse-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.featured-tours .browse-all-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 55%);
}

@media (max-width: 768px) {
  .featured-tours .tour-card .tour-img-wrap {
    min-height: 220px;
  }

  .featured-tours .tour-card .tour-body {
    padding: 20px;
  }

  .featured-tours .tour-card .tour-body .tour-price-tag {
    font-size: 20px;
  }

  .featured-tours .tour-card .tour-body h5 {
    font-size: 17px;
  }

  .featured-tours .tour-card .tour-body p {
    font-size: 13px;
  }

  .featured-tours .tour-card .tour-body .tour-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .featured-tours .tour-card .tour-img-wrap {
    min-height: 200px;
  }

  .featured-tours .tour-card .tour-body {
    padding: 16px;
  }

  .featured-tours .tour-card .tour-body .tour-meta-list {
    gap: 4px;
  }

  .featured-tours .tour-card .tour-body .tour-meta-list li {
    font-size: 11px;
    padding: 3px 10px;
  }

  .featured-tours .browse-all-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Testimonials Home Section
--------------------------------------------------------------*/
.testimonials-home {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.testimonials-home .swiper-wrapper {
  height: auto !important;
}

.testimonials-home .review-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 60px 25px 30px;
  margin-top: 45px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-home .review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials-home .reviewer-photo {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-home .reviewer-photo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials-home .review-body {
  position: relative;
  overflow: hidden;
}

.testimonials-home .review-body .quote-decor {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 80px;
  color: color-mix(in srgb, var(--accent-color), transparent 88%);
  line-height: 1;
  z-index: 0;
  transform: scale(-1, -1);
}

.testimonials-home .review-body p {
  position: relative;
  z-index: 1;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 18px;
  min-height: 80px;
}

.testimonials-home .review-body .rating {
  margin-bottom: 14px;
}

.testimonials-home .review-body .rating i {
  color: #ffc107;
  font-size: 14px;
  margin: 0 2px;
}

.testimonials-home .review-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.testimonials-home .review-body .role {
  display: inline-block;
  font-size: 13px;
  color: var(--accent-color);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testimonials-home .testimonial-button-prev,
.testimonials-home .testimonial-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.testimonials-home .testimonial-button-prev::after,
.testimonials-home .testimonial-button-next::after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 700;
}

.testimonials-home .testimonial-button-prev:hover,
.testimonials-home .testimonial-button-next:hover {
  background-color: var(--accent-color);
}

.testimonials-home .testimonial-button-prev:hover::after,
.testimonials-home .testimonial-button-next:hover::after {
  color: var(--contrast-color);
}

@media (max-width: 768px) {

  .testimonials-home .testimonial-button-prev,
  .testimonials-home .testimonial-button-next {
    display: none;
  }
}

.testimonials-home .testimonial-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials-home .testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonials-home .testimonial-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  transform: scale(1.3);
}

/*--------------------------------------------------------------
# Travel Activities Section
--------------------------------------------------------------*/
.travel-activities .tabs-bar {
  margin-bottom: 40px;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-activities .tabs-bar .region-filters {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

@media (max-width: 768px) {
  .travel-activities .tabs-bar .region-filters {
    flex-wrap: wrap;
  }
}

.travel-activities .tabs-bar .region-filters li {
  position: relative;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .travel-activities .tabs-bar .region-filters li {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.travel-activities .tabs-bar .region-filters li::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.travel-activities .tabs-bar .region-filters li:hover {
  color: var(--accent-color);
}

.travel-activities .tabs-bar .region-filters li.filter-active {
  color: var(--accent-color);
}

.travel-activities .tabs-bar .region-filters li.filter-active::after {
  transform: scaleX(1);
}

.travel-activities .places-grid .place-card {
  background: var(--surface-color);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.travel-activities .places-grid .place-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-activities .places-grid .place-card:hover .card-image img {
  transform: scale(1.08);
}

.travel-activities .places-grid .place-card .card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

@media (max-width: 768px) {
  .travel-activities .places-grid .place-card .card-image {
    height: 190px;
  }
}

.travel-activities .places-grid .place-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-activities .places-grid .place-card .card-image .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
}

.travel-activities .places-grid .place-card .card-image .card-badge.highlight {
  background: color-mix(in srgb, #e74c3c, transparent 10%);
}

.travel-activities .places-grid .place-card .card-image .card-badge.trending {
  background: color-mix(in srgb, #2ecc71, transparent 10%);
}

.travel-activities .places-grid .place-card .card-image .card-badge.wilderness {
  background: color-mix(in srgb, #e67e22, transparent 10%);
}

.travel-activities .places-grid .place-card .card-image .card-badge.explorer {
  background: color-mix(in srgb, #3498db, transparent 10%);
}

.travel-activities .places-grid .place-card .card-image .card-badge.premier {
  background: color-mix(in srgb, #9b59b6, transparent 10%);
}

.travel-activities .places-grid .place-card .card-image .card-badge.heritage {
  background: color-mix(in srgb, #1abc9c, transparent 10%);
}

.travel-activities .places-grid .place-card .card-image .card-badge.exotic {
  background: color-mix(in srgb, #e91e63, transparent 10%);
}

.travel-activities .places-grid .place-card .card-image .card-badge.coastal {
  background: color-mix(in srgb, #00bcd4, transparent 10%);
}

.travel-activities .places-grid .place-card .card-image .card-badge.spiritual {
  background: color-mix(in srgb, #ff9800, transparent 10%);
}

.travel-activities .places-grid .place-card .card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.travel-activities .places-grid .place-card .card-body .location-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.travel-activities .places-grid .place-card .card-body .location-label i {
  color: var(--accent-color);
  font-size: 16px;
}

.travel-activities .places-grid .place-card .card-body .location-label span {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.travel-activities .places-grid .place-card .card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
  flex: 1;
}

.travel-activities .places-grid .place-card .card-body .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 14px;
}

.travel-activities .places-grid .place-card .card-body .card-meta .tours-badge {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.travel-activities .places-grid .place-card .card-body .card-meta .tours-badge i {
  font-size: 14px;
  color: var(--accent-color);
}

.travel-activities .places-grid .place-card .card-body .card-meta .starting-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-color);
}

.travel-activities .places-grid .place-card .card-body .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.travel-activities .places-grid .place-card .card-body .card-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.travel-activities .places-grid .place-card .card-body .card-link:hover {
  color: color-mix(in srgb, var(--accent-color), var(--default-color) 20%);
}

.travel-activities .places-grid .place-card .card-body .card-link:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Travel Activities CTA Section
--------------------------------------------------------------*/
.activities-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;
}

.activities-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.activities-cta p {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.activities-cta .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.activities-cta .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.activities-cta .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.activities-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);
}

.activities-cta .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.activities-cta .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# travel-guide Section
--------------------------------------------------------------*/
.travel-guide {
  font-size: 1rem;
  line-height: 1.75;
}

.travel-guide .policy-sidebar {
  position: sticky;
  top: 100px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-guide .policy-sidebar .effective-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.travel-guide .policy-sidebar .effective-badge i {
  font-size: 1rem;
}

.travel-guide .policy-sidebar h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.travel-guide .policy-sidebar .sidebar-intro {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.travel-guide .policy-sidebar .policy-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 25px;
}

.travel-guide .policy-sidebar .policy-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.travel-guide .policy-sidebar .policy-nav .nav-link:hover,
.travel-guide .policy-sidebar .policy-nav .nav-link.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.travel-guide .policy-sidebar .policy-nav .nav-link:hover .nav-number,
.travel-guide .policy-sidebar .policy-nav .nav-link.active .nav-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-guide .policy-sidebar .policy-nav .nav-link .nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-guide .policy-sidebar .policy-nav .nav-link .nav-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.travel-guide .policy-sidebar .contact-card {
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 12px;
}

.travel-guide .policy-sidebar .contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.travel-guide .policy-sidebar .contact-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.travel-guide .policy-sidebar .contact-card .contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.travel-guide .policy-sidebar .contact-card .contact-email i {
  font-size: 1.1rem;
}

.travel-guide .policy-sidebar .contact-card .contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-guide .policy-sidebar .contact-card .contact-address i {
  font-size: 1rem;
  margin-top: 2px;
}

.travel-guide .travel-content {
  padding-left: 20px;
}

.travel-guide .travel-content .travel-content-section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-guide .travel-content .travel-content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.travel-guide .travel-content .travel-content-section .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.travel-guide .travel-content .travel-content-section .section-header .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.travel-guide .travel-content .travel-content-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.travel-guide .travel-content .travel-content-section .section-body p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.travel-guide .travel-content .travel-content-section .section-body p:last-child {
  margin-bottom: 0;
}

.travel-guide .travel-content .travel-content-section .section-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
}

.travel-guide .travel-content .travel-content-section .section-body h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

.travel-guide .travel-content .travel-content-section .section-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.travel-guide .travel-content .travel-content-section .section-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.travel-guide .travel-content .travel-content-section .section-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.travel-guide .travel-content .travel-content-section .section-body ul li:last-child {
  margin-bottom: 0;
}

.travel-guide .info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.travel-guide .info-card:last-child {
  margin-bottom: 0;
}

.travel-guide .info-card h3 {
  margin-top: 0 !important;
}

.travel-guide .visa-item {
  margin-bottom: 25px;
}

.travel-guide .visa-item:last-child {
  margin-bottom: 0;
}

.travel-guide .visa-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.travel-guide .update-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  margin-top: 25px;
}

.travel-guide .update-notice i {
  font-size: 1.3rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.travel-guide .update-notice span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.travel-guide .faq-list {
  padding: 0;
}

.travel-guide .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.travel-guide .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.travel-guide .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.travel-guide .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.travel-guide .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.travel-guide .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.travel-guide .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.travel-guide .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.travel-guide .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .travel-guide .faq-list .faq-item {
    padding: 20px;
  }

  .travel-guide .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .travel-guide .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .travel-guide .policy-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .travel-guide .policy-sidebar .policy-nav {
    display: none;
  }

  .travel-guide .travel-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .travel-guide .travel-content .travel-content-section .section-header h2 {
    font-size: 1.4rem;
  }

  .travel-guide .travel-content .travel-content-section .section-header .section-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media print {
  .travel-guide .policy-sidebar {
    display: none;
  }

  .travel-guide .travel-content {
    padding-left: 0;
  }

  .travel-guide .travel-content .travel-content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.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;
  }
}

/*--------------------------------------------------------------
# Vehicle Rentals Section
--------------------------------------------------------------*/
.vehicle-rentals {
  padding-top: 60px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .vehicle-rentals {
    padding: 64px 0 48px;
  }
}

.vehicle-rentals .vehicle-content .kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
}

.vehicle-rentals .vehicle-content .kicker::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background-color: var(--accent-color);
}

.vehicle-rentals .vehicle-content h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .vehicle-rentals .vehicle-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .vehicle-rentals .vehicle-content h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }
}

.vehicle-rentals .vehicle-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

.vehicle-rentals .vehicle-visual {
  position: relative;
}

.vehicle-rentals .vehicle-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.vehicle-rentals .vehicle-visual .floating-card {
  position: absolute;
  left: 24px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.vehicle-rentals .vehicle-visual .floating-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 20px;
}

.vehicle-rentals .vehicle-visual .floating-card .card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicle-rentals .vehicle-visual .floating-card .card-text .value {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: var(--heading-color);
}

.vehicle-rentals .vehicle-visual .floating-card .card-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Vehicle Rental Services Section
--------------------------------------------------------------*/
.vehicle-rentals-services .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.vehicle-rentals-services .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.vehicle-rentals-services .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.vehicle-rentals-services .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.vehicle-rentals-services .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.vehicle-rentals-services .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.vehicle-rentals-services .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.vehicle-rentals-services .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.vehicle-rentals-services .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.vehicle-rentals-services .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.vehicle-rentals-services .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.vehicle-rentals-services .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.vehicle-rentals-services .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.vehicle-rentals-services .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.vehicle-rentals-services .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.vehicle-rentals-services .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.vehicle-rentals-services .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.vehicle-rentals-services .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.vehicle-rentals-services .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.vehicle-rentals-services .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.vehicle-rentals-services .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.vehicle-rentals-services .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.vehicle-rentals-services .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.vehicle-rentals-services .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.vehicle-rentals-services .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.vehicle-rentals-services .tab-content .content-box .vehicle-rentals-services-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.vehicle-rentals-services .tab-content .content-box .vehicle-rentals-services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.vehicle-rentals-services .tab-content .content-box .vehicle-rentals-services-list li:last-child {
  margin-bottom: 0;
}

.vehicle-rentals-services .tab-content .content-box .vehicle-rentals-services-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.vehicle-rentals-services .tab-content .content-box .vehicle-rentals-services-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.vehicle-rentals-services .tab-content .content-box .vehicle-rentals-services-list li:hover {
  transform: translateX(5px);
}

.vehicle-rentals-services .tab-content .content-box .vehicle-rentals-services-list li:hover span {
  color: var(--default-color);
}

.vehicle-rentals-services .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vehicle-rentals-services .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.vehicle-rentals-services .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.vehicle-rentals-services .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.vehicle-rentals-services .tab-pane {
  transition: all 0.4s ease;
}

.vehicle-rentals-services .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.vehicle-rentals-services .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .vehicle-rentals-services .nav-tabs {
    margin-bottom: 30px;
  }

  .vehicle-rentals-services .nav-tabs .nav-link {
    padding: 15px;
  }

  .vehicle-rentals-services .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .vehicle-rentals-services .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .vehicle-rentals-services .tab-content .content-box {
    padding: 30px;
  }

  .vehicle-rentals-services .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .vehicle-rentals-services .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .vehicle-rentals-services .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .vehicle-rentals-services .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .vehicle-rentals-services .tab-content .content-box {
    padding: 25px;
  }

  .vehicle-rentals-services .tab-content .content-box h3 {
    font-size: 22px;
  }

  .vehicle-rentals-services .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Vehicle Rentals CTA Section
--------------------------------------------------------------*/
.vehicle-rentals-cta .contact-now {
  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%);
}

.vehicle-rentals-cta .contact-now h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.vehicle-rentals-cta .contact-now p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  line-height: 1.6;
}

.vehicle-rentals-cta .contact-now p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  line-height: 1.6;
}

.vehicle-rentals-cta .contact-now .btn-contact {
  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;
}

.vehicle-rentals-cta .contact-now .btn-contact:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.vehicle-rentals-cta .contact-now .btn-contact:hover i {
  transform: translateX(4px);
}

.vehicle-rentals-cta .contact-now .btn-contact i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

/*--------------------------------------------------------------
# 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 .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 .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%);
}