@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Poppins", sans-serif;
}

/* Global Colors - Fortune Travel & Car Rentals Brand Colors */
:root {
  --background-color: #ffffff;
  /* White – page background */
  --default-color: #202020;
  /* Charcoal – body text */
  --heading-color: #0F3B2E;
  /* Forest Green – headings */
  --accent-color: #D89A12;
  /* Gold – accent elements */
  --surface-color: #ffffff;
  /* White – cards, boxes */
  --contrast-color: #ffffff;
  /* White – text on dark backgrounds */
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(255, 255, 255, 0.7);
  /* White with opacity */
  --nav-hover-color: #184E3B;
  /* Deep Green – menu hover */
  --nav-mobile-background-color: #ffffff;
  /* White */
  --nav-dropdown-background-color: #ffffff;
  /* White */
  --nav-dropdown-color: #202020;
  /* Charcoal – dropdown text */
  --nav-dropdown-hover-color: #D89A12;
  /* Gold – dropdown hover */
}

/* Color Presets */
.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0F3B2E;
  /* Forest Green */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #184E3B;
  /* Deep Green */
  --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: #0F3B2E;
  /* Forest Green – links */
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #D89A12;
  /* Gold – link hover */
  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: #dc3545;
  /* Keep error red */
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #28a745;
  /* Keep success green */
  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 #0F3B2E;
  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 {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #202020;
  --heading-color: #0F3B2E;
  color: #202020;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 3px solid #D89A12;
  /* Gold */
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 75px;
  margin-right: 8px;
}

.header .logo i {
  font-size: 24px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #202020;
    padding: 18px 12px;
    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: #184E3B;
    /* Deep Green – menu hover */
  }

  /* Dropdowns */
  .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(15, 59, 46, 0.15);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #202020;
  }

  .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: #D89A12;
    /* Gold – dropdown hover */
  }

  .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;
  }

  /* Megamenu */
  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(15, 59, 46, 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: #202020;
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: #D89A12;
    /* Gold – dropdown hover */
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(15, 59, 46, 0.15);
  }

  /* Hide navigation icons on desktop (keep dropdown arrows) */
  .navmenu .icon,
  .navmenu a>i:not(.toggle-dropdown),
  .navmenu a>.bi:not(.toggle-dropdown) {
    display: none !important;
  }

  .navmenu .toggle-dropdown {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
  }

  .navmenu a,
  .navmenu a:focus {
    gap: 0 !important;
  }
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #D89A12;
  /* Gold */
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(216, 154, 18, 0.35);
  transition: .3s;
  z-index: 100005;
}

.close-btn:hover {
  background: #F0B52D;
  /* Rich Gold */
  transform: rotate(90deg) scale(1.05);
}

@media (max-width:1199px) {

  .mobile-nav-active .close-btn {
    display: flex;
  }

  .mobile-nav-active .mobile-nav-toggle {
    display: none;
  }
}

/* ==========================================================
   MODERN MOBILE NAVIGATION (FIXED & ENHANCED)
   ========================================================== */

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-action,
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .3s;
}

.header-action {
  color: white;
  /* Forest Green */
}

.mobile-nav-toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 20px rgba(15, 59, 46, .08);
  color: white;
  cursor: pointer;
}

.header-action i,
.mobile-nav-toggle i {
  font-size: 22px;
}

.header-action span,
.mobile-nav-toggle span {
  font-size: 10px;
  font-weight: 600;
}

/* ================= MOBILE NAV ================= */
@media (max-width: 1199px) {
  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .header {
    z-index: 100001;
  }

  .mobile-nav-active .mobile-nav-toggle {
    display: none !important;
  }

  .mobile-nav-active .mobile-nav-toggle i:before {
    content: "\f62a";
    /* Bootstrap Icons X */
  }

  .navmenu {
    position: fixed;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(15, 59, 46, .55);
    backdrop-filter: blur(10px);
    transition: .35s;
    z-index: 100000;
  }

  .mobile-nav-active .navmenu {
    visibility: visible;
    opacity: 1;
  }

  .navmenu>ul {
    position: absolute;
    top: 80px;
    right: 18px;
    left: 18px;
    bottom: 18px;
    display: block;
    overflow-y: auto;
    margin: 0;
    padding: 18px;
    list-style: none;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 59, 46, .18);
  }

  .navmenu li {
    list-style: none;
  }

  .navmenu a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    margin-bottom: 6px;
    color: #202020;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: .25s;
  }

  .navmenu a:hover,
  .navmenu .active {
    background: rgba(15, 59, 46, 0.08);
    color: #D89A12;
    /* Gold – active/hover */
  }

  /* Show icons on mobile */
  .navmenu a .icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7D46A;
    /* Light Gold */
    color: #0F3B2E;
    /* Forest Green */
    border-radius: 14px;
    font-size: 20px;
  }

  .navmenu a span {
    flex: 1;
  }

  /* Chevron toggle */
  .toggle-dropdown {
    margin-left: auto;
    color: #202020;
    background: none !important;
    transition: transform 0.3s ease;
  }

  /* Rotate chevron when dropdown is open */
  .navmenu .dropdown>a.active .toggle-dropdown {
    transform: rotate(180deg);
  }

  /* Dropdown submenu – smooth slide */
  .navmenu .dropdown ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, margin 0.35s ease;
    margin: 0 0 0 58px;
    padding: 0;
    background: #ffffff;
    border-left: 3px solid #D89A12;
    /* Gold */
    border-radius: 12px;
  }

  .navmenu .dropdown ul.dropdown-active {
    max-height: 500px;
    padding: 8px;
    margin: 8px 0 8px 58px;
  }

  .navmenu .dropdown ul a {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    color: #202020;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .navmenu .dropdown ul a:hover {
    background: rgba(15, 59, 46, 0.08);
    color: #D89A12;
    /* Gold */
  }
}

/* Tablets */
@media (max-width: 991px) {
  .header-actions {
    gap: 10px;
  }
}

/* Phones */
@media (max-width: 575px) {
  .navmenu>ul {
    left: 10px;
    right: 10px;
    top: 70px;
    bottom: 10px;
    border-radius: 20px;
  }

  .navmenu a .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .navmenu a {
    padding: 13px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Mobile Bottom Navigation - Fortune Travel & Car Rentals
--------------------------------------------------------------*/

.mobile-bottom-nav {
  position: fixed;

  bottom: 0;
  left: 0;
  right: 0;

  background:
    rgba(255, 255, 255, 0.96);

  display: flex;

  justify-content: space-around;

  align-items: center;

  padding: 12px 16px;

  box-shadow:
    0px -4px 20px
    rgba(8, 24, 11, 0.12);

  border-top:
    1px solid
    rgba(221, 149, 12, 0.15);

  z-index: 9999;

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);
}


/*--------------------------------------------------------------
# Navigation Items
--------------------------------------------------------------*/

.mobile-nav-item {
  display: flex;

  flex-direction: column;

  align-items: center;

  text-decoration: none;

  color: #5F6360;

  font-size: 11px;

  font-weight: 500;

  gap: 4px;

  transition:
    all 0.3s ease;

  padding:
    8px 12px;

  border-radius:
    16px;

  flex: 1;

  max-width:
    72px;
}


/*--------------------------------------------------------------
# Navigation Icons
--------------------------------------------------------------*/

.mobile-nav-item i {
  font-size:
    20px;

  transition:
    all 0.3s ease;
}


/*--------------------------------------------------------------
# Active Navigation Item
--------------------------------------------------------------*/

.mobile-nav-item.active {
  color:
    #DD950C;
}

.mobile-nav-item.active i {
  transform:
    scale(1.1);

  color:
    #DD950C;
}


/*--------------------------------------------------------------
# Navigation Hover
--------------------------------------------------------------*/

.mobile-nav-item:not(.mobile-menu-trigger):hover {

  color:
    #DD950C;

  background:
    rgba(221, 149, 12, 0.08);
}

.mobile-nav-item:not(.mobile-menu-trigger):hover i {

  color:
    #DD950C;

  transform:
    scale(1.08);
}


/*--------------------------------------------------------------
# Book Now Button
--------------------------------------------------------------*/

.book-now-mobile {

  background:
    linear-gradient(
      135deg,
      #DD950C,
      #F0AA18
    );

  color:
    #FFFFFF !important;

  transform:
    translateY(-8px);

  box-shadow:

    0px 8px 20px
    rgba(221, 149, 12, 0.35),

    0px 2px 8px
    rgba(221, 149, 12, 0.25);

  margin:
    0 4px;

  border:
    1px solid
    rgba(255, 255, 255, 0.25);
}


/*--------------------------------------------------------------
# Book Now Icon
--------------------------------------------------------------*/

.book-now-mobile i {

  font-size:
    24px;

  color:
    #FFFFFF;
}


/*--------------------------------------------------------------
# Book Now Hover
--------------------------------------------------------------*/

.book-now-mobile:hover {

  transform:
    translateY(-10px)
    scale(1.05);

  color:
    #FFFFFF !important;

  background:
    linear-gradient(
      135deg,
      #B87908,
      #DD950C
    );

  box-shadow:

    0px 10px 25px
    rgba(221, 149, 12, 0.42),

    0px 3px 10px
    rgba(221, 149, 12, 0.30);
}


/*--------------------------------------------------------------
# Menu Trigger
--------------------------------------------------------------*/

.mobile-menu-trigger {

  cursor:
    pointer;

  color:
    #08180B;
}

.mobile-menu-trigger:hover {

  color:
    #DD950C;

  background:
    rgba(221, 149, 12, 0.08);
}


/*--------------------------------------------------------------
# Menu Trigger Icon
--------------------------------------------------------------*/

.mobile-menu-trigger i {

  color:
    #08180B;
}

.mobile-menu-trigger:hover i {

  color:
    #DD950C;
}


/*--------------------------------------------------------------
# Mobile Navigation Active Indicator
--------------------------------------------------------------*/

.mobile-nav-item.active::after {

  content:
    "";

  width:
    5px;

  height:
    5px;

  border-radius:
    50%;

  background:
    #DD950C;

  margin-top:
    2px;
}


/*--------------------------------------------------------------
# Bottom Safe Area - Modern Phones
--------------------------------------------------------------*/

.mobile-bottom-nav {

  padding-bottom:
    calc(
      12px + env(safe-area-inset-bottom)
    );
}


/*--------------------------------------------------------------
# Small Screens
--------------------------------------------------------------*/

@media (max-width: 480px) {

  .mobile-bottom-nav {

    padding-left:
      8px;

    padding-right:
      8px;
  }

  .mobile-nav-item {

    font-size:
      10px;

    padding:
      7px 8px;

    gap:
      3px;

    max-width:
      68px;
  }

  .mobile-nav-item i {

    font-size:
      19px;
  }

  .book-now-mobile i {

    font-size:
      22px;
  }

}


/*--------------------------------------------------------------
# Extra Small Screens
--------------------------------------------------------------*/

@media (max-width: 360px) {

  .mobile-bottom-nav {

    padding-left:
      4px;

    padding-right:
      4px;
  }

  .mobile-nav-item {

    padding:
      6px 5px;

    font-size:
      9px;

    max-width:
      62px;
  }

  .mobile-nav-item i {

    font-size:
      18px;
  }

  .book-now-mobile {

    margin:
      0 2px;
  }

}


/*--------------------------------------------------------------
# Desktop - Hide Mobile Navigation
--------------------------------------------------------------*/

@media (min-width: 1200px) {

  .mobile-bottom-nav {

    display:
      none;
  }

}

/*--------------------------------------------------------------
# Pop-up Menu (slide from right)
--------------------------------------------------------------*/
.popup-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  background: green;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.popup-menu.active {
  right: 0;
}

.popup-header {
  padding: 2rem 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.popup-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(239, 68, 68, .35);
  transition: .3s ease;
  z-index: 100003;
}

.close-btn:hover {
  background: #dc2626;
  transform: scale(1.08) rotate(90deg);
}

.popup-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-section {
  animation: slideInUp 0.5s ease-out;
}

.menu-section:nth-child(2) {
  animation-delay: 0.1s;
}

.menu-section:nth-child(3) {
  animation-delay: 0.2s;
}

.menu-section:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-links li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.menu-links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.menu-links li a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-links li a:hover::before {
  left: 100%;
}

.menu-links li a .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a7f62;
  transition: all 0.3s ease;
}

.menu-links li a:hover .icon {
  color: #3aaf82;
  transform: scale(1.1);
}

.menu-links li a span:last-child {
  font-weight: 500;
  flex: 1;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 480px) {
  .popup-menu {
    width: 100%;
    max-width: none;
  }

  .popup-content {
    padding: 1rem;
    gap: 1.5rem;
  }

  .menu-links li a {
    padding: 0.8rem 1rem;
  }

  .popup-header {
    padding: 1.5rem 1rem 1rem;
  }

  .popup-header h3 {
    font-size: 1.3rem;
  }
}

/* Scrollbar */
.popup-menu::-webkit-scrollbar {
  width: 6px;
}

.popup-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.popup-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.popup-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Fortune Travel & Car Rentals
# Modern Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Fortune Brand Theme Variables
--------------------------------------------------------------*/

:root {
  --default-color: #08180B;
  --heading-color: #08180B;
  --background-color: #FFFFFF;
  --surface-color: #FFFFFF;
  --contrast-color: #FFFFFF;

  --accent-color: #DD950C;
  --accent-color-light: #F0AA18;

  --brand-green: #08180B;
  --brand-green-dark: #102C17;
  --brand-gold: #DD950C;
  --brand-gold-light: #F0AA18;
  --brand-light: #F8F9FA;
}


/*--------------------------------------------------------------
# Modern Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {

  color: #FFFFFF;

  background:
    linear-gradient(
      135deg,
      #08180B 0%,
      #102C17 55%,
      #08180B 100%
    );

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  padding: 180px 0 100px 0;

  text-align: center;

  position: relative;

  overflow: hidden;

  --default-color: #FFFFFF;

  --background-color: #08180B;

  --accent-color: #DD950C;
}


/*--------------------------------------------------------------
# Animated Gradient Overlay
--------------------------------------------------------------*/

.page-title:before {

  content: "";

  background:
    linear-gradient(
      135deg,
      rgba(8, 24, 11, 0.92) 0%,
      rgba(16, 44, 23, 0.78) 50%,
      rgba(8, 24, 11, 0.92) 100%
    );

  position: absolute;

  inset: 0;

  animation:
    gradientShift 8s ease-in-out infinite;
}


/*--------------------------------------------------------------
# Floating Particles Background
--------------------------------------------------------------*/

.page-title:after {

  content: "";

  position: absolute;

  inset: 0;

  background-image:

    radial-gradient(
      circle at 20% 30%,
      rgba(240, 170, 24, 0.18) 2px,
      transparent 0
    ),

    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 0
    ),

    radial-gradient(
      circle at 40% 80%,
      rgba(221, 149, 12, 0.14) 3px,
      transparent 0
    ),

    radial-gradient(
      circle at 60% 20%,
      rgba(255, 255, 255, 0.09) 2px,
      transparent 0
    );

  background-size:
    200px 200px,
    150px 150px,
    180px 180px,
    160px 160px;

  animation:
    floatParticles 20s linear infinite;
}


/*--------------------------------------------------------------
# Gradient Animation
--------------------------------------------------------------*/

@keyframes gradientShift {

  0%,
  100% {

    background-position:
      0% 50%;
  }

  50% {

    background-position:
      100% 50%;
  }

}


/*--------------------------------------------------------------
# Floating Particles Animation
--------------------------------------------------------------*/

@keyframes floatParticles {

  0% {

    transform:
      translateY(0)
      translateX(0);
  }

  25% {

    transform:
      translateY(-10px)
      translateX(5px);
  }

  50% {

    transform:
      translateY(-5px)
      translateX(10px);
  }

  75% {

    transform:
      translateY(-10px)
      translateX(5px);
  }

  100% {

    transform:
      translateY(0)
      translateX(0);
  }

}


/*--------------------------------------------------------------
# Page Title Content
--------------------------------------------------------------*/

.page-title .title-content {

  position: relative;

  z-index: 2;

  max-width: 800px;

  margin: 0 auto;
}


/*--------------------------------------------------------------
# Page Title Heading
--------------------------------------------------------------*/

.page-title h1 {

  font-size: 4rem;

  font-weight: 800;

  margin-bottom: 1.5rem;

  background:
    linear-gradient(
      135deg,
      #FFFFFF,
      #F0AA18
    );

  -webkit-background-clip: text;

  background-clip: text;

  -webkit-text-fill-color: transparent;

  text-shadow:
    0 4px 20px
    rgba(0, 0, 0, 0.18);

  letter-spacing: -0.5px;

  line-height: 1.1;
}


/*--------------------------------------------------------------
# Page Title Subtitle
--------------------------------------------------------------*/

.page-title .title-subtitle {

  font-size: 1.3rem;

  font-weight: 300;

  color:
    rgba(255, 255, 255, 0.88);

  margin-bottom: 2.5rem;

  line-height: 1.6;

  max-width: 600px;

  margin-left: auto;

  margin-right: auto;
}


/*--------------------------------------------------------------
# Modern Breadcrumbs
--------------------------------------------------------------*/

.page-title .breadcrumbs {

  background:
    rgba(255, 255, 255, 0.10);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);

  border:
    1px solid
    rgba(240, 170, 24, 0.35);

  border-radius:
    50px;

  padding:
    1rem 2rem;

  display:
    inline-block;

  box-shadow:

    0 8px 32px
    rgba(0, 0, 0, 0.18),

    inset 0 1px 0
    rgba(255, 255, 255, 0.18);
}


/*--------------------------------------------------------------
# Breadcrumb List
--------------------------------------------------------------*/

.page-title .breadcrumbs ol {

  display: flex;

  flex-wrap: wrap;

  list-style: none;

  justify-content: center;

  align-items: center;

  padding: 0;

  margin: 0;

  font-size: 0.95rem;

  font-weight: 500;

  gap: 0.5rem;
}


/*--------------------------------------------------------------
# Breadcrumb Items
--------------------------------------------------------------*/

.page-title .breadcrumbs ol li {

  display: flex;

  align-items: center;

  transition:
    all 0.3s ease;
}


/*--------------------------------------------------------------
# Breadcrumb Previous Items
--------------------------------------------------------------*/

.page-title
.breadcrumbs
ol
li:not(:last-child) {

  color:
    rgba(255, 255, 255, 0.70);
}


/*--------------------------------------------------------------
# Breadcrumb Current Item
--------------------------------------------------------------*/

.page-title
.breadcrumbs
ol
li:last-child {

  color:
    #F0AA18;

  font-weight:
    600;
}


/*--------------------------------------------------------------
# Breadcrumb Links
--------------------------------------------------------------*/

.page-title
.breadcrumbs
ol
li
a {

  color:
    inherit;

  text-decoration:
    none;

  transition:
    all 0.3s ease;

  padding:
    0.5rem 1rem;

  border-radius:
    25px;

  position:
    relative;

  overflow:
    hidden;
}


/*--------------------------------------------------------------
# Breadcrumb Link Shine
--------------------------------------------------------------*/

.page-title
.breadcrumbs
ol
li
a:before {

  content:
    '';

  position:
    absolute;

  top:
    0;

  left:
    -100%;

  width:
    100%;

  height:
    100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(240, 170, 24, 0.25),
      transparent
    );

  transition:
    left 0.5s ease;
}


/*--------------------------------------------------------------
# Breadcrumb Link Hover
--------------------------------------------------------------*/

.page-title
.breadcrumbs
ol
li
a:hover {

  color:
    #F0AA18;

  background:
    rgba(221, 149, 12, 0.14);

  transform:
    translateY(-1px);
}


.page-title
.breadcrumbs
ol
li
a:hover:before {

  left:
    100%;
}


/*--------------------------------------------------------------
# Modern Separator
--------------------------------------------------------------*/

.page-title
.breadcrumbs
ol
li+li:before {

  content:
    "›";

  display:
    inline-block;

  padding:
    0 0.5rem;

  color:
    rgba(240, 170, 24, 0.70);

  font-size:
    1.2rem;

  font-weight:
    300;

  transition:
    all 0.3s ease;
}


.page-title
.breadcrumbs
ol
li+li:hover:before {

  color:
    #F0AA18;

  transform:
    scale(1.2);
}


/*--------------------------------------------------------------
# Decorative Elements
--------------------------------------------------------------*/

.page-title .decoration {

  position:
    absolute;

  z-index:
    1;
}


/*--------------------------------------------------------------
# Decorative Circle 1
--------------------------------------------------------------*/

.page-title
.decoration.circle-1 {

  width:
    100px;

  height:
    100px;

  border:
    2px solid
    rgba(240, 170, 24, 0.18);

  border-radius:
    50%;

  top:
    20%;

  left:
    10%;

  animation:
    float 6s ease-in-out infinite;
}


/*--------------------------------------------------------------
# Decorative Circle 2
--------------------------------------------------------------*/

.page-title
.decoration.circle-2 {

  width:
    60px;

  height:
    60px;

  border:
    1px solid
    rgba(221, 149, 12, 0.25);

  border-radius:
    50%;

  bottom:
    30%;

  right:
    15%;

  animation:
    float 4s ease-in-out infinite reverse;
}


/*--------------------------------------------------------------
# Decorative Line
--------------------------------------------------------------*/

.page-title
.decoration.line {

  width:
    2px;

  height:
    80px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(240, 170, 24, 0.45),
      transparent
    );

  top:
    40%;

  right:
    20%;

  animation:
    slideDown 3s ease-in-out infinite;
}


/*--------------------------------------------------------------
# Floating Decoration
--------------------------------------------------------------*/

@keyframes float {

  0%,
  100% {

    transform:
      translateY(0)
      rotate(0deg);
  }

  50% {

    transform:
      translateY(-20px)
      rotate(180deg);
  }

}


/*--------------------------------------------------------------
# Slide Down Animation
--------------------------------------------------------------*/

@keyframes slideDown {

  0%,
  100% {

    transform:
      translateY(-20px);

    opacity:
      0;
  }

  50% {

    transform:
      translateY(20px);

    opacity:
      1;
  }

}


/*--------------------------------------------------------------
# CTA Button For Page Title
--------------------------------------------------------------*/

.page-title .title-cta {

  margin-top:
    3rem;
}


/*--------------------------------------------------------------
# Page Title CTA Button
--------------------------------------------------------------*/

.page-title .cta-button {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    0.75rem;

  padding:
    1rem 2rem;

  background:
    linear-gradient(
      135deg,
      #DD950C,
      #F0AA18
    );

  color:
    #FFFFFF;

  text-decoration:
    none;

  border-radius:
    50px;

  font-weight:
    600;

  font-size:
    1rem;

  transition:
    all 0.4s
    cubic-bezier(
      0.175,
      0.885,
      0.32,
      1.275
    );

  box-shadow:

    0 8px 25px
    rgba(221, 149, 12, 0.28),

    0 4px 15px
    rgba(0, 0, 0, 0.10);

  position:
    relative;

  overflow:
    hidden;
}


/*--------------------------------------------------------------
# CTA Shine
--------------------------------------------------------------*/

.page-title
.cta-button:before {

  content:
    '';

  position:
    absolute;

  top:
    0;

  left:
    -100%;

  width:
    100%;

  height:
    100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.30),
      transparent
    );

  transition:
    left 0.6s ease;
}


/*--------------------------------------------------------------
# CTA Hover
--------------------------------------------------------------*/

.page-title
.cta-button:hover {

  transform:
    translateY(-3px);

  color:
    #FFFFFF;

  box-shadow:

    0 15px 35px
    rgba(221, 149, 12, 0.38),

    0 8px 20px
    rgba(0, 0, 0, 0.15);
}


.page-title
.cta-button:hover:before {

  left:
    100%;
}


/*--------------------------------------------------------------
# CTA Icon
--------------------------------------------------------------*/

.page-title
.cta-button
.icon {

  transition:
    transform 0.3s ease;
}


.page-title
.cta-button:hover
.icon {

  transform:
    translateX(3px);
}


/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .page-title {

    padding:
      140px 0 80px 0;
  }

  .page-title h1 {

    font-size:
      2.5rem;

    margin-bottom:
      1rem;
  }

  .page-title
  .title-subtitle {

    font-size:
      1.1rem;

    margin-bottom:
      2rem;
  }

  .page-title
  .breadcrumbs {

    padding:
      0.75rem 1.5rem;
  }

  .page-title
  .breadcrumbs
  ol {

    font-size:
      0.85rem;

    gap:
      0.25rem;
  }

  .page-title
  .breadcrumbs
  ol
  li
  a {

    padding:
      0.4rem 0.8rem;
  }

  .page-title
  .decoration {

    display:
      none;
  }

}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 480px) {

  .page-title {

    padding:
      120px 0 60px 0;
  }

  .page-title h1 {

    font-size:
      2rem;
  }

  .page-title
  .title-subtitle {

    font-size:
      1rem;
  }

  .page-title
  .breadcrumbs {

    padding:
      0.5rem 1rem;
  }

  .page-title
  .breadcrumbs
  ol {

    flex-direction:
      column;

    gap:
      0.5rem;
  }

  .page-title
  .breadcrumbs
  ol
  li+li:before {

    display:
      none;
  }

}


/*--------------------------------------------------------------
# Dark Mode Support
--------------------------------------------------------------*/

@media (prefers-color-scheme: dark) {

  .page-title {

    background:
      linear-gradient(
        135deg,
        #08180B,
        #102C17
      );
  }

  .page-title
  .breadcrumbs {

    background:
      rgba(8, 24, 11, 0.45);

    border:
      1px solid
      rgba(240, 170, 24, 0.25);
  }

  .page-title
  .breadcrumbs
  ol
  li
  a:hover {

    background:
      rgba(221, 149, 12, 0.15);
  }

}


/*--------------------------------------------------------------
# Reduced Motion Support
--------------------------------------------------------------*/

@media (prefers-reduced-motion: reduce) {

  .page-title:before,
  .page-title:after,
  .page-title .decoration,
  .page-title
  .breadcrumbs
  ol
  li
  a:before,
  .page-title
  .cta-button:before {

    animation:
      none;
  }

  .page-title
  .breadcrumbs
  ol
  li
  a,
  .page-title
  .cta-button {

    transition:
      none;
  }

}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {

  color:
    #08180B;

  background-color:
    #FFFFFF;

  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-bottom:
    60px;

  position:
    relative;
}


/*--------------------------------------------------------------
# Section Title Label
--------------------------------------------------------------*/

.section-title h2 {

  font-size:
    13px;

  letter-spacing:
    1px;

  font-weight:
    700;

  padding:
    8px 20px;

  margin:
    0;

  background:
    rgba(221, 149, 12, 0.10);

  color:
    #DD950C;

  display:
    inline-block;

  text-transform:
    uppercase;

  border-radius:
    50px;

  font-family:
    var(--default-font);
}


/*--------------------------------------------------------------
# Main Section Title
--------------------------------------------------------------*/

.section-title div {

  color:
    #08180B;

  margin:
    10px 0 0 0;

  font-size:
    32px;

  font-weight:
    700;

  font-family:
    var(--heading-font);
}


/*--------------------------------------------------------------
# Section Description Title
--------------------------------------------------------------*/

.section-title div
.description-title {

  color:
    #DD950C;
}


/*--------------------------------------------------------------
# Optional Gold Section Divider
--------------------------------------------------------------*/

.section-title::after {

  content:
    "";

  display:
    block;

  width:
    60px;

  height:
    3px;

  margin:
    18px auto 0;

  border-radius:
    50px;

  background:
    linear-gradient(
      90deg,
      #DD950C,
      #F0AA18
    );
}


/*--------------------------------------------------------------
# Global Links
--------------------------------------------------------------*/

section a,
.section a {

  transition:
    all 0.3s ease;
}


/*--------------------------------------------------------------
# Global Accent Selection
--------------------------------------------------------------*/

section ::selection,
.section ::selection,
.page-title ::selection {

  background:
    #DD950C;

  color:
    #FFFFFF;
}


/*--------------------------------------------------------------
# Mobile Section Titles
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .section-title {

    padding-bottom:
      45px;
  }

  .section-title div {

    font-size:
      26px;
  }

}


@media (max-width: 480px) {

  .section-title div {

    font-size:
      23px;
  }

  .section-title h2 {

    font-size:
      11px;

    padding:
      7px 16px;
  }

}

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px 0;
}

.travel-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.travel-hero .hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 60%) 0%, color-mix(in srgb, var(--background-color), transparent 80%) 50%, color-mix(in srgb, var(--background-color), transparent 90%) 100%);
  z-index: 1;
}

.travel-hero .hero-text .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.travel-hero .hero-text .hero-subtitle {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.travel-hero .hero-text .hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.travel-hero .hero-text .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-hero .hero-text .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.travel-hero .hero-text .hero-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.travel-hero .hero-text .hero-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.travel-hero .booking-form-wrapper .booking-form {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

.travel-hero .booking-form-wrapper .booking-form .form-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.travel-hero .booking-form-wrapper .booking-form label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.travel-hero .booking-form-wrapper .booking-form .form-control,
.travel-hero .booking-form-wrapper .booking-form .form-select {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
}

.travel-hero .booking-form-wrapper .booking-form .form-control:focus,
.travel-hero .booking-form-wrapper .booking-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: none;
}

.travel-hero .booking-form-wrapper .booking-form .form-control::placeholder,
.travel-hero .booking-form-wrapper .booking-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-hero .booking-form-wrapper .booking-form .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.travel-hero .booking-form-wrapper .booking-form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .travel-hero .hero-text {
    text-align: center;
    margin-bottom: 3rem;
  }

  .travel-hero .hero-text .hero-title {
    font-size: 2.5rem;
  }

  .travel-hero .hero-text .hero-subtitle {
    font-size: 1.1rem;
  }

  .travel-hero .booking-form {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .travel-hero .hero-text .hero-title {
    font-size: 2rem;
  }

  .travel-hero .hero-text .hero-subtitle {
    font-size: 1rem;
  }

  .travel-hero .hero-text .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .travel-hero .hero-text .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }

  .travel-hero .booking-form-wrapper .booking-form {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/

.why-us .content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #08180B;
}

.why-us .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;

    color:
        color-mix(
            in srgb,
            #08180B,
            transparent 20%
        );
}

.why-us .stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {

    .why-us .stats-row {
        flex-direction: column;
        gap: 1rem;
    }

}

.why-us .stat-item span {
    font-size: 2.5rem;
    font-weight: 700;

    color: #DD950C;

    font-family:
        var(--heading-font);
}

.why-us .stat-item .stat-label {
    font-size: 0.9rem;

    color:
        color-mix(
            in srgb,
            #08180B,
            transparent 30%
        );

    margin-top: 0.25rem;
}


/*--------------------------------------------------------------
# About Image
--------------------------------------------------------------*/

.why-us .about-image {
    position: relative;
}

.why-us .about-image .experience-badge {
    position: absolute;

    bottom: 20px;
    left: 20px;

    background:
        linear-gradient(
            135deg,
            #DD950C 0%,
            #F0AA18 100%
        );

    color: #ffffff;

    padding: 1.5rem;

    border-radius: 15px;

    text-align: center;

    box-shadow:
        0 10px 30px
        rgba(8, 24, 11, 0.20);

    border:
        2px solid
        rgba(255, 255, 255, 0.25);
}

.why-us .about-image .experience-badge .experience-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.why-us .about-image .experience-badge .experience-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}


/*--------------------------------------------------------------
# About Image Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

    .why-us .about-image {
        margin-top: 3rem;
    }

    .why-us .about-image .experience-badge {
        bottom: 15px;
        left: 15px;
        padding: 1rem;
    }

    .why-us .about-image .experience-badge .experience-number {
        font-size: 1.5rem;
    }

    .why-us .about-image .experience-badge .experience-text {
        font-size: 0.8rem;
    }

}


/*--------------------------------------------------------------
# Why Choose Section
--------------------------------------------------------------*/

.why-us .why-choose-section {
    margin-top: 5rem;
}

.why-us .why-choose-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;

    color: #08180B;
}

.why-us .why-choose-section > .row > .col-lg-8 > p {
    font-size: 1.1rem;
    line-height: 1.8;

    color:
        color-mix(
            in srgb,
            #08180B,
            transparent 20%
        );
}


/*--------------------------------------------------------------
# Why Choose Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

    .why-us .why-choose-section {
        margin-top: 3rem;
    }

    .why-us .why-choose-section h3 {
        font-size: 1.8rem;
    }

}


/*--------------------------------------------------------------
# Feature Cards
--------------------------------------------------------------*/

.why-us .feature-card {

    background:
        #ffffff;

    padding:
        2.5rem 1.5rem;

    border-radius:
        15px;

    text-align:
        center;

    height:
        100%;

    transition:
        all 0.3s ease;

    border:
        1px solid
        color-mix(
            in srgb,
            #08180B,
            transparent 90%
        );

    box-shadow:
        0 5px 20px
        rgba(8, 24, 11, 0.04);
}


/*--------------------------------------------------------------
# Feature Card Hover
--------------------------------------------------------------*/

.why-us .feature-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 40px
        rgba(8, 24, 11, 0.12);

    border-color:
        rgba(221, 149, 12, 0.25);
}

.why-us .feature-card:hover .feature-icon {

    background:
        linear-gradient(
            135deg,
            #08180B 0%,
            #102C17 100%
        );

    color:
        #ffffff;

    box-shadow:
        0 8px 20px
        rgba(8, 24, 11, 0.20);

}


/*--------------------------------------------------------------
# Feature Icon
--------------------------------------------------------------*/

.why-us .feature-icon {

    width:
        80px;

    height:
        80px;

    background:
        linear-gradient(
            135deg,
            rgba(221, 149, 12, 0.12),
            rgba(240, 170, 24, 0.20)
        );

    color:
        #DD950C;

    border-radius:
        50%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin:
        0 auto 1.5rem;

    font-size:
        2rem;

    transition:
        all 0.3s ease;

    border:
        1px solid
        rgba(221, 149, 12, 0.18);
}


/*--------------------------------------------------------------
# Feature Card Heading
--------------------------------------------------------------*/

.why-us .feature-card h4 {

    font-size:
        1.3rem;

    font-weight:
        600;

    margin-bottom:
        1rem;

    color:
        #08180B;
}


/*--------------------------------------------------------------
# Feature Card Paragraph
--------------------------------------------------------------*/

.why-us .feature-card p {

    font-size:
        1rem;

    line-height:
        1.6;

    color:
        color-mix(
            in srgb,
            #08180B,
            transparent 25%
        );

    margin-bottom:
        0;
}


/*--------------------------------------------------------------
# Feature Cards Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

    .why-us .feature-card {

        padding:
            2rem 1rem;
    }

    .why-us .feature-icon {

        width:
            60px;

        height:
            60px;

        font-size:
            1.5rem;

        margin-bottom:
            1rem;
    }

    .why-us .feature-card h4 {

        font-size:
            1.2rem;
    }

}

/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations .featured-destination {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.featured-destinations .featured-destination:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-destinations .featured-destination .destination-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

.featured-destinations .featured-destination .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-destinations .featured-destination .destination-overlay:hover img {
  transform: scale(1.08);
}

.featured-destinations .featured-destination .destination-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.featured-destinations .featured-destination .destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  color: white;
}

.featured-destinations .featured-destination .destination-info .destination-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.featured-destinations .featured-destination .destination-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.featured-destinations .featured-destination .destination-info .location {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-destinations .featured-destination .destination-info .location i {
  color: var(--accent-color);
  font-size: 18px;
}

.featured-destinations .featured-destination .destination-info .description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.featured-destinations .featured-destination .destination-info .destination-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 14px;
}

.featured-destinations .featured-destination .destination-info .destination-meta .tours-count,
.featured-destinations .featured-destination .destination-info .destination-meta .rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-destinations .featured-destination .destination-info .destination-meta .tours-count i,
.featured-destinations .featured-destination .destination-info .destination-meta .rating i {
  color: var(--accent-color);
}

.featured-destinations .featured-destination .destination-info .price-info {
  margin-bottom: 25px;
}

.featured-destinations .featured-destination .destination-info .price-info .starting-from {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.featured-destinations .featured-destination .destination-info .price-info .amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
}

.featured-destinations .featured-destination .destination-info .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.featured-destinations .featured-destination .destination-info .explore-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(5px);
}

.featured-destinations .featured-destination .destination-info .explore-btn:hover i {
  transform: translateX(3px);
}

.featured-destinations .featured-destination .destination-info .explore-btn i {
  transition: transform 0.3s ease;
}

.featured-destinations .compact-destination {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 180px;
}

.featured-destinations .compact-destination:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  transform: translateX(8px);
}

.featured-destinations .compact-destination .destination-image {
  flex-shrink: 0;
  width: 140px;
  position: relative;
  overflow: hidden;
}

.featured-destinations .compact-destination .destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-destinations .compact-destination .destination-image .badge-offer {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-destinations .compact-destination .destination-image .badge-offer.limited {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
}

.featured-destinations .compact-destination .destination-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-destinations .compact-destination .destination-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.featured-destinations .compact-destination .destination-details .location {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-destinations .compact-destination .destination-details .location i {
  color: var(--accent-color);
  font-size: 12px;
}

.featured-destinations .compact-destination .destination-details .brief {
  font-size: 13px;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-destinations .compact-destination .destination-details .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}

.featured-destinations .compact-destination .destination-details .stats-row .tour-count,
.featured-destinations .compact-destination .destination-details .stats-row .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.featured-destinations .compact-destination .destination-details .stats-row .tour-count i,
.featured-destinations .compact-destination .destination-details .stats-row .rating i {
  color: var(--accent-color);
}

.featured-destinations .compact-destination .destination-details .stats-row .rating i {
  color: #ffc107;
}

.featured-destinations .compact-destination .destination-details .stats-row .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 14px;
}

.featured-destinations .compact-destination .destination-details .quick-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.featured-destinations .compact-destination .destination-details .quick-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 8px;
}

.featured-destinations .compact-destination .destination-details .quick-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.featured-destinations .compact-destination:hover .destination-image img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .featured-destinations .featured-destination {
    height: 500px;
  }

  .featured-destinations .featured-destination .destination-info {
    padding: 30px;
  }

  .featured-destinations .featured-destination .destination-info h3 {
    font-size: 28px;
  }

  .featured-destinations .featured-destination .destination-info .price-info .amount {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .featured-destinations .featured-destination {
    height: 450px;
    margin-bottom: 30px;
  }

  .featured-destinations .featured-destination .destination-info {
    padding: 25px;
  }

  .featured-destinations .featured-destination .destination-info h3 {
    font-size: 24px;
  }

  .featured-destinations .featured-destination .destination-info .destination-meta {
    flex-direction: column;
    gap: 10px;
  }

  .featured-destinations .compact-destination {
    flex-direction: column;
    height: auto;
  }

  .featured-destinations .compact-destination .destination-image {
    width: 100%;
    height: 160px;
  }

  .featured-destinations .compact-destination .destination-details {
    padding: 20px;
  }

  .featured-destinations .compact-destination .destination-details .stats-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Featured Tours Section - Modernized
--------------------------------------------------------------*/
.featured-tours {
  --card-radius: 16px;
  --image-height: 260px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --surface-elevated: color-mix(in srgb, var(--surface-color), white 5%);
}

.featured-tours .tour-card {
  background: var(--surface-elevated);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.featured-tours .tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.featured-tours .tour-card .tour-image {
  position: relative;
  overflow: hidden;
  height: var(--image-height);
}

.featured-tours .tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.98);
}

.featured-tours .tour-card:hover .tour-image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.featured-tours .tour-card .tour-image .tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-tours .tour-card .tour-image .tour-badge i {
  font-size: 12px;
}

.featured-tours .tour-card .tour-image .tour-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: color-mix(in srgb, var(--default-color), transparent 15%);
  color: var(--contrast-color);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-tours .tour-card .tour-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-tours .tour-card .tour-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.featured-tours .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  font-weight: 450;
}

.featured-tours .tour-card .tour-content .tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.featured-tours .tour-card .tour-content .tour-meta span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-tours .tour-card .tour-content .tour-meta span i {
  color: var(--accent-color);
  font-size: 14px;
}

.featured-tours .tour-card .tour-content .tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.featured-tours .tour-card .tour-content .tour-highlights span {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.featured-tours .tour-card .tour-content .tour-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.featured-tours .tour-card .tour-content .tour-action .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-size: 13px;
  border: 2px solid var(--accent-color);
  flex: 1;
  text-align: center;
  letter-spacing: 0.3px;
}

.featured-tours .tour-card .tour-content .tour-action .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.featured-tours .tour-card .tour-content .tour-action .tour-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.featured-tours .tour-card .tour-content .tour-action .tour-rating i {
  color: #ffc107;
  font-size: 12px;
}

.featured-tours .tour-card .tour-content .tour-action .tour-rating span {
  margin-left: 4px;
  font-weight: 600;
}

.featured-tours .btn-view-all {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.featured-tours .btn-view-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: var(--transition);
  z-index: -1;
}

.featured-tours .btn-view-all:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.featured-tours .btn-view-all:hover::before {
  left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .featured-tours {
    --image-height: 240px;
  }

  .featured-tours .tour-card .tour-content {
    padding: 20px;
    gap: 14px;
  }

  .featured-tours .tour-card .tour-content h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .featured-tours .tour-card .tour-content {
    padding: 18px;
  }

  .featured-tours .tour-card .tour-content h4 {
    font-size: 17px;
  }

  .featured-tours .tour-card .tour-content .tour-action {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .featured-tours .tour-card .tour-content .tour-action .btn-book {
    order: 2;
  }

  .featured-tours .tour-card .tour-content .tour-action .tour-rating {
    order: 1;
    justify-content: center;
  }

  .featured-tours .tour-card .tour-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .featured-tours {
    --image-height: 220px;
    --card-radius: 12px;
  }

  .featured-tours .tour-card .tour-image {
    height: 200px;
  }

  .featured-tours .tour-card .tour-content {
    padding: 16px;
    gap: 12px;
  }

  .featured-tours .tour-card .tour-content h4 {
    font-size: 16px;
  }

  .featured-tours .tour-card .tour-content p {
    font-size: 13px;
  }

  .featured-tours .tour-card .tour-image .tour-badge {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 10px;
  }

  .featured-tours .tour-card .tour-image .tour-price {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .featured-tours .tour-card .tour-content .tour-highlights {
    justify-content: center;
  }

  .featured-tours .btn-view-all {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}

/* Animation Enhancements */
@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.featured-tours .tour-card {
  animation: cardEntrance 0.6s ease-out;
}

/* Focus States for Accessibility */
.featured-tours .tour-card:focus-within {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.featured-tours .btn-book:focus,
.featured-tours .btn-view-all:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
/* ==========================================
   Testimonials Section
   Fortune Travel & Car Rentals
   Modern + Compact
   Cards show ALL words
   ========================================== */

:root {

    /* Fortune Travel Brand Colors */
    --bg1: #08180B;
    --bg2: #102C17;
    --bg3: #183D20;

    --gold: #DD950C;
    --gold-light: #F0AA18;
    --gold-soft: #FFF8E8;

    --glass: rgba(255, 255, 255, 0.10);
    --glass-border: rgba(255, 255, 255, 0.16);

    --radius: 20px;

    --shadow:
        0 18px 50px rgba(0, 0, 0, 0.22);

    --shadow-active:
        0 26px 75px rgba(0, 0, 0, 0.28);

    --ease:
        240ms cubic-bezier(.2, .8, .2, 1);
}


/* ==========================================
   Testimonials Section
   ========================================== */

.testimonials-section {

    padding:
        clamp(52px, 6vw, 90px) 0;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            1000px 520px at 15% 15%,
            rgba(221, 149, 12, 0.20),
            transparent 60%
        ),

        radial-gradient(
            900px 520px at 85% 75%,
            rgba(8, 24, 11, 0.35),
            transparent 55%
        ),

        linear-gradient(
            135deg,
            var(--bg1) 0%,
            var(--bg2) 48%,
            var(--bg3) 100%
        );

    color: #ffffff;
}


/* ==========================================
   Soft Overlay
   ========================================== */

.testimonials-section::before {

    content: "";

    position: absolute;

    inset: -2px;

    background:

        radial-gradient(
            circle at 25% 30%,
            rgba(255, 255, 255, 0.08),
            transparent 46%
        ),

        radial-gradient(
            circle at 75% 70%,
            rgba(221, 149, 12, 0.10),
            transparent 52%
        );

    pointer-events: none;

    z-index: 0;
}


/* ==========================================
   Container
   ========================================== */

.container {

    max-width: 1180px;

    margin: 0 auto;

    padding:
        0 clamp(16px, 3vw, 28px);

    position: relative;

    z-index: 1;
}


/* ==========================================
   Section Title
   ========================================== */

.section-title {

    text-align: center;

    margin-bottom:
        clamp(18px, 3vw, 40px);
}


.section-title h2 {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .18em;

    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.82);

    margin-bottom: 10px;
}


/* ==========================================
   Title Decorative Lines
   ========================================== */

.section-title h2::before,
.section-title h2::after {

    content: "";

    width: 22px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #DD950C,
            transparent
        );
}


.section-title .title-main {

    font-size:
        clamp(1.35rem, 2.3vw, 2.1rem);

    font-weight: 900;

    letter-spacing: -0.02em;

    color: #ffffff;

    text-shadow:
        0 12px 34px rgba(0, 0, 0, 0.25);

    position: relative;
}


/* Gold accent under title */

.section-title .title-main::after {

    content: "";

    display: block;

    width: 55px;

    height: 3px;

    margin: 12px auto 0;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #DD950C,
            #F0AA18
        );

    box-shadow:
        0 3px 12px
        rgba(221, 149, 12, 0.35);
}


/* ==========================================
   Swiper Spacing
   ========================================== */

.testimonials-swiper {

    padding:
        12px 6px 52px;
}


.swiper-slide {

    display: flex;

    justify-content: center;

    height: auto;
}


/* ==========================================
   Testimonial Card
   Smaller width/padding
   Full text visible
   ========================================== */

.testimonial-card {

    width:
        min(340px, 92vw);

    height: auto;

    padding:
        18px 16px;

    border-radius:
        var(--radius);

    display: flex;

    flex-direction: column;

    gap: 10px;

    position: relative;

    background:
        var(--glass);

    border:
        1px solid
        var(--glass-border);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    box-shadow:
        var(--shadow);

    transition:
        transform var(--ease),
        box-shadow var(--ease),
        border-color var(--ease);

    will-change: transform;
}


/* ==========================================
   Premium Gold Outline
   ========================================== */

.testimonial-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            rgba(221, 149, 12, 0.55),
            rgba(255, 255, 255, 0.10),
            rgba(8, 24, 11, 0.25)
        );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}


/* ==========================================
   Active Slide
   ========================================== */

.swiper-slide-active .testimonial-card {

    transform:
        translateY(-7px)
        scale(1.01);

    box-shadow:
        var(--shadow-active);

    border-color:
        rgba(221, 149, 12, 0.35);
}


/* ==========================================
   Card Hover
   ========================================== */

.testimonial-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(221, 149, 12, 0.40);

    box-shadow:
        0 24px 60px
        rgba(0, 0, 0, 0.30);
}


/* ==========================================
   Quote Icon
   ========================================== */

.quote-icon {

    font-size: 1.45rem;

    opacity: .75;

    color:
        #DD950C;

    filter:
        drop-shadow(
            0 10px 16px
            rgba(0, 0, 0, 0.25)
        );
}


/* ==========================================
   Content
   ALL WORDS VISIBLE
   No clamping
   ========================================== */

.testimonial-content {

    flex: 1;
}


.testimonial-content p {

    margin: 0;

    color:
        rgba(255, 255, 255, 0.88);

    font-style: italic;

    line-height: 1.62;

    font-size: .92rem;

    white-space: normal;

    overflow: visible;

    text-overflow: unset;

    word-break: normal;

    overflow-wrap: anywhere;
}


/* ==========================================
   Author Row
   ========================================== */

.testimonial-author {

    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 10px;

    margin-top: 6px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);
}


/* ==========================================
   Author Image
   ========================================== */

.author-image {

    width: 42px;

    height: 42px;

    border-radius: 999px;

    overflow: hidden;

    border:
        2px solid
        rgba(221, 149, 12, 0.70);

    box-shadow:
        0 10px 22px
        rgba(0, 0, 0, 0.20);

    flex: 0 0 auto;
}


.author-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* ==========================================
   Author Information
   ========================================== */

.author-info h4 {

    margin:
        0 0 2px 0;

    font-size: .98rem;

    font-weight: 800;

    color:
        rgba(255, 255, 255, 0.95);
}


/* ==========================================
   Rating
   ========================================== */

.rating {

    display: flex;

    gap: 2px;
}


.rating i {

    color:
        #DD950C;

    font-size: .82rem;

    filter:
        drop-shadow(
            0 6px 10px
            rgba(0, 0, 0, 0.22)
        );
}


/* ==========================================
   Pagination
   ========================================== */

.swiper-pagination {

    position: relative;

    margin-top: 18px;
}


.swiper-pagination-bullet {

    width: 8px;

    height: 8px;

    opacity: 1;

    background:
        rgba(255, 255, 255, 0.35);

    transition:
        transform var(--ease),
        width var(--ease),
        background var(--ease);
}


.swiper-pagination-bullet-active {

    background:
        #DD950C;

    width: 18px;

    border-radius: 999px;

    transform:
        scale(1.1);

    box-shadow:
        0 3px 10px
        rgba(221, 149, 12, 0.35);
}


/* ==========================================
   Background Decorations
   ========================================== */

.bg-shape {

    position: absolute;

    border-radius: 999px;

    opacity: .10;

    z-index: 0;

    filter: blur(1px);
}


/* ==========================================
   Shape 1 — Gold
   ========================================== */

.shape-1 {

    width: 220px;

    height: 220px;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, .30),
            rgba(221, 149, 12, .16) 55%,
            transparent 70%
        );

    top: 6%;

    left: 4%;
}


/* ==========================================
   Shape 2 — Green
   ========================================== */

.shape-2 {

    width: 180px;

    height: 180px;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, .22),
            rgba(8, 24, 11, .22) 55%,
            transparent 70%
        );

    bottom: 6%;

    right: 4%;
}


/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 992px) {

    .testimonials-section {

        padding:
            clamp(48px, 6vw, 78px) 0;
    }

}


/* ==========================================
   Tablet / Mobile
   ========================================== */

@media (max-width: 768px) {

    .testimonials-section {

        padding:
            clamp(44px, 6vw, 70px) 0;
    }


    .testimonial-card {

        width:
            min(320px, 92vw);

        padding:
            16px 14px;
    }


    .testimonial-content p {

        font-size: .91rem;
    }

}


/* ==========================================
   Small Mobile
   ========================================== */

@media (max-width: 480px) {

    .testimonials-section {

        padding:
            40px 0;
    }


    .testimonial-card {

        width:
            min(300px, 94vw);
    }

}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  .testimonial-card,
  .swiper-pagination-bullet {
    transition: none !important;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.call-to-action .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}


/*--------------------------------------------------------------
# Hero Content Responsive
--------------------------------------------------------------*/

@media (max-width: 992px) {

  .call-to-action .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

}


/*--------------------------------------------------------------
# Promo Badge
--------------------------------------------------------------*/

.call-to-action .content-wrapper .badge-wrapper {
  margin-bottom: 1.5rem;
}

.promo-badge {
  display: inline-block;

  background:
    linear-gradient(
      45deg,
      #DD950C,
      #F0AA18
    );

  color: #ffffff;

  padding: 8px 20px;

  border-radius: 25px;

  font-size: 0.9rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  position: relative;

  overflow: hidden;

  box-shadow:
    0 6px 18px
    rgba(221, 149, 12, 0.18);
}


/*--------------------------------------------------------------
# Promo Badge Inside Wrapper
--------------------------------------------------------------*/

.call-to-action .content-wrapper .badge-wrapper .promo-badge {

  display: inline-block;

  background:
    linear-gradient(
      45deg,
      #DD950C,
      #F0AA18
    );

  color: #ffffff;

  padding: 8px 20px;

  border-radius: 25px;

  font-size: 0.9rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  position: relative;

  overflow: hidden;

  box-shadow:
    0 6px 18px
    rgba(221, 149, 12, 0.18);
}


/*--------------------------------------------------------------
# Badge Shimmer
--------------------------------------------------------------*/

.call-to-action
.content-wrapper
.badge-wrapper
.promo-badge::before {

  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
    );

  animation:
    shimmer 2s infinite;
}


/*--------------------------------------------------------------
# Main Heading
--------------------------------------------------------------*/

.call-to-action .content-wrapper h2 {

  font-size: 3rem;

  font-weight: 800;

  margin-bottom: 1.5rem;

  line-height: 1.2;

  color: #08180B;
}


/*--------------------------------------------------------------
# Main Heading Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .call-to-action .content-wrapper h2 {
    font-size: 2.2rem;
  }

}


/*--------------------------------------------------------------
# Main Description
--------------------------------------------------------------*/

.call-to-action .content-wrapper p {

  font-size: 1.2rem;

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 25%
    );

  margin-bottom: 2.5rem;

  line-height: 1.7;
}


/*--------------------------------------------------------------
# Main Actions
--------------------------------------------------------------*/

.call-to-action .action-section .main-actions {

  display: flex;

  gap: 1rem;

  margin-bottom: 2rem;
}


/*--------------------------------------------------------------
# Main Actions Responsive
--------------------------------------------------------------*/

@media (max-width: 576px) {

  .call-to-action .action-section .main-actions {

    flex-direction: column;

  }

}


/*--------------------------------------------------------------
# Action Buttons
--------------------------------------------------------------*/

.call-to-action
.action-section
.main-actions
.btn {

  padding: 15px 35px;

  font-size: 1.1rem;

  font-weight: 700;

  border-radius: 60px;

  transition:
    all 0.4s
    cubic-bezier(
      0.4,
      0,
      0.2,
      1
    );

  position: relative;

  overflow: hidden;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  display: flex;

  align-items: center;
}


/*--------------------------------------------------------------
# Button Icons
--------------------------------------------------------------*/

.call-to-action
.action-section
.main-actions
.btn i {

  margin-right: 0.5rem;

  font-size: 1.2rem;
}


/*--------------------------------------------------------------
# Button Shimmer
--------------------------------------------------------------*/

.call-to-action
.action-section
.main-actions
.btn::before {

  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.20),
      transparent
    );

  transition:
    left 0.5s;
}

.call-to-action
.action-section
.main-actions
.btn:hover::before {

  left: 100%;
}


/*--------------------------------------------------------------
# Explore Button
--------------------------------------------------------------*/

.call-to-action
.action-section
.main-actions
.btn.btn-explore {

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  border: none;

  color: #ffffff;

  box-shadow:
    0 8px 22px
    rgba(8, 24, 11, 0.18);
}


/*--------------------------------------------------------------
# Explore Button Hover
--------------------------------------------------------------*/

.call-to-action
.action-section
.main-actions
.btn.btn-explore:hover {

  transform:
    translateY(-3px)
    scale(1.05);

  box-shadow:
    0 15px 40px
    rgba(8, 24, 11, 0.25);
}


/*--------------------------------------------------------------
# Deals Button
--------------------------------------------------------------*/

.call-to-action
.action-section
.main-actions
.btn.btn-deals {

  background: transparent;

  border:
    3px solid
    #DD950C;

  color:
    #DD950C;
}


/*--------------------------------------------------------------
# Deals Button Hover
--------------------------------------------------------------*/

.call-to-action
.action-section
.main-actions
.btn.btn-deals:hover {

  background:
    #DD950C;

  color:
    #ffffff;

  transform:
    translateY(-3px)
    scale(1.05);

  box-shadow:
    0 12px 30px
    rgba(221, 149, 12, 0.22);
}


/*--------------------------------------------------------------
# Quick Contact
--------------------------------------------------------------*/

.call-to-action
.action-section
.quick-contact {

  display: flex;

  align-items: center;

  gap: 1rem;

  padding: 1rem;

  background:
    rgba(8, 24, 11, 0.04);

  border-radius: 15px;

  border-left:
    4px solid
    #DD950C;
}


/*--------------------------------------------------------------
# Quick Contact Responsive
--------------------------------------------------------------*/

@media (max-width: 576px) {

  .call-to-action
  .action-section
  .quick-contact {

    flex-direction: column;

    gap: 0.5rem;

    text-align: center;

  }

}


/*--------------------------------------------------------------
# Contact Label
--------------------------------------------------------------*/

.call-to-action
.action-section
.quick-contact
.contact-label {

  font-size: 0.95rem;

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 30%
    );

  font-weight: 500;
}


/*--------------------------------------------------------------
# Contact Link
--------------------------------------------------------------*/

.call-to-action
.action-section
.quick-contact
.contact-link {

  display: flex;

  align-items: center;

  gap: 0.5rem;

  color:
    #DD950C;

  font-weight: 600;

  text-decoration: none;

  transition:
    all 0.3s ease;
}


/*--------------------------------------------------------------
# Contact Link Hover
--------------------------------------------------------------*/

.call-to-action
.action-section
.quick-contact
.contact-link:hover {

  color:
    #B87908;

  transform:
    translateX(3px);
}


/*--------------------------------------------------------------
# Contact Icon
--------------------------------------------------------------*/

.call-to-action
.action-section
.quick-contact
.contact-link i {

  font-size: 1.1rem;
}


/*--------------------------------------------------------------
# Visual Element
--------------------------------------------------------------*/

.call-to-action .visual-element {

  position: relative;

  border-radius: 25px;

  overflow: hidden;

  box-shadow:
    0 25px 60px
    rgba(8, 24, 11, 0.15);
}


/*--------------------------------------------------------------
# Hero Image
--------------------------------------------------------------*/

.call-to-action
.visual-element
.hero-image {

  width: 100%;

  height: 500px;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}


/*--------------------------------------------------------------
# Hero Image Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .call-to-action
  .visual-element
  .hero-image {

    height: 350px;

  }

}


/*--------------------------------------------------------------
# Image Overlay
--------------------------------------------------------------*/

.call-to-action
.visual-element
.image-overlay {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  background:
    linear-gradient(
      transparent,
      rgba(8, 24, 11, 0.88)
    );

  padding: 2rem;

  display: flex;

  justify-content: space-around;
}


/*--------------------------------------------------------------
# Image Overlay Stats
--------------------------------------------------------------*/

.call-to-action
.visual-element
.image-overlay
.stat-item {

  text-align: center;
}


.call-to-action
.visual-element
.image-overlay
.stat-item
.stat-number {

  display: block;

  font-size: 2rem;

  font-weight: 800;

  color:
    #F0AA18;
}


.call-to-action
.visual-element
.image-overlay
.stat-item
.stat-label {

  font-size: 0.9rem;

  color:
    color-mix(
      in srgb,
      #ffffff,
      transparent 20%
    );

  text-transform: uppercase;

  letter-spacing: 0.5px;
}


/*--------------------------------------------------------------
# Visual Element Hover
--------------------------------------------------------------*/

.call-to-action
.visual-element:hover
.hero-image {

  transform:
    scale(1.05);
}


/*--------------------------------------------------------------
# Newsletter Section
--------------------------------------------------------------*/

.call-to-action .newsletter-section {

  margin-bottom: 5rem;
}


/*--------------------------------------------------------------
# Newsletter Card
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-card {

  background:
    #ffffff;

  border-radius: 25px;

  padding: 2.5rem;

  box-shadow:
    0 15px 40px
    rgba(8, 24, 11, 0.08);

  border:
    1px solid
    rgba(221, 149, 12, 0.12);
}


/*--------------------------------------------------------------
# Newsletter Content
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-content {

  display: flex;

  align-items: center;

  gap: 2rem;

  margin-bottom: 2rem;
}


/*--------------------------------------------------------------
# Newsletter Content Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .call-to-action
  .newsletter-section
  .newsletter-content {

    flex-direction: column;

    text-align: center;

    gap: 1rem;

  }

}


/*--------------------------------------------------------------
# Newsletter Icon
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-content
.newsletter-icon {

  width: 80px;

  height: 80px;

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  box-shadow:
    0 10px 25px
    rgba(8, 24, 11, 0.18);

  border:
    2px solid
    rgba(221, 149, 12, 0.20);
}


/*--------------------------------------------------------------
# Newsletter Icon Symbol
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-content
.newsletter-icon i {

  font-size: 2rem;

  color:
    #F0AA18;
}


/*--------------------------------------------------------------
# Newsletter Heading
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-content
.newsletter-text
h3 {

  font-size: 1.8rem;

  font-weight: 700;

  margin-bottom: 0.5rem;

  color:
    #08180B;
}


/*--------------------------------------------------------------
# Newsletter Description
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-content
.newsletter-text
p {

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 30%
    );

  margin: 0;

  font-size: 1.1rem;
}


/*--------------------------------------------------------------
# Newsletter Form
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.form-wrapper {

  display: flex;

  max-width: 500px;

  margin: 0 auto;

  position: relative;
}


/*--------------------------------------------------------------
# Newsletter Form Responsive
--------------------------------------------------------------*/

@media (max-width: 576px) {

  .call-to-action
  .newsletter-section
  .newsletter-form
  .form-wrapper {

    flex-direction: column;

  }

}


/*--------------------------------------------------------------
# Email Input
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.form-wrapper
.email-input {

  flex: 1;

  padding: 18px 25px;

  border:
    2px solid
    rgba(8, 24, 11, 0.15);

  border-radius:
    60px 0 0 60px;

  font-size: 1rem;

  background:
    #ffffff;

  color:
    #08180B;

  transition:
    all 0.3s ease;
}


/*--------------------------------------------------------------
# Email Input Responsive
--------------------------------------------------------------*/

@media (max-width: 576px) {

  .call-to-action
  .newsletter-section
  .newsletter-form
  .form-wrapper
  .email-input {

    border-radius: 60px;

    margin-bottom: 1rem;

  }

}


/*--------------------------------------------------------------
# Email Input Focus
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.form-wrapper
.email-input:focus {

  outline: none;

  border-color:
    #DD950C;

  box-shadow:
    0 0 0 3px
    rgba(221, 149, 12, 0.10);
}


/*--------------------------------------------------------------
# Email Placeholder
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.form-wrapper
.email-input::placeholder {

  color:
    rgba(8, 24, 11, 0.45);
}


/*--------------------------------------------------------------
# Subscribe Button
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.form-wrapper
.subscribe-btn {

  padding: 18px 25px;

  background:
    linear-gradient(
      135deg,
      #DD950C,
      #F0AA18
    );

  border:
    2px solid
    #DD950C;

  border-radius:
    0 60px 60px 0;

  color:
    #ffffff;

  cursor: pointer;

  transition:
    all 0.3s ease;

  font-weight: 600;

  box-shadow:
    0 6px 18px
    rgba(221, 149, 12, 0.18);
}


/*--------------------------------------------------------------
# Subscribe Button Responsive
--------------------------------------------------------------*/

@media (max-width: 576px) {

  .call-to-action
  .newsletter-section
  .newsletter-form
  .form-wrapper
  .subscribe-btn {

    border-radius: 60px;

    width: 100%;

  }

}


/*--------------------------------------------------------------
# Subscribe Button Hover
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.form-wrapper
.subscribe-btn:hover {

  background:
    linear-gradient(
      135deg,
      #C98508,
      #DD950C
    );

  border-color:
    #C98508;

  transform:
    translateX(2px);

  box-shadow:
    0 10px 25px
    rgba(221, 149, 12, 0.28);
}


/*--------------------------------------------------------------
# Subscribe Button Icon
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.form-wrapper
.subscribe-btn i {

  font-size: 1.2rem;
}


/*--------------------------------------------------------------
# Trust Indicators
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.trust-indicators {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  margin-top: 1rem;

  font-size: 0.9rem;

  color:
    rgba(8, 24, 11, 0.50);
}


/*--------------------------------------------------------------
# Trust Indicator Icon
--------------------------------------------------------------*/

.call-to-action
.newsletter-section
.newsletter-form
.trust-indicators i {

  color:
    #DD950C;
}


/*--------------------------------------------------------------
# Shimmer Animation
--------------------------------------------------------------*/

@keyframes shimmer {

  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }

}

/* =========================================================
   CALL TO ACTION — BENEFITS SHOWCASE
   Fortune Travel & Car Rentals Brand Colors

   Dark Green: #08180B
   Secondary Green: #102C17
   Gold: #DD950C
   Light Gold: #F0AA18
   Soft Gold: #FFF8E8
   ========================================================= */

.call-to-action .benefits-showcase .benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.call-to-action .benefits-showcase .benefits-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #08180B;
}

.call-to-action .benefits-showcase .benefits-header p {
    font-size: 1.1rem;
    color: color-mix(
        in srgb,
        #08180B,
        transparent 30%
    );
}


/* =========================================================
   BENEFITS GRID
   ========================================================= */

.call-to-action .benefits-showcase .benefits-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}


/* =========================================================
   BENEFIT CARD
   ========================================================= */

.call-to-action .benefits-showcase .benefit-card {
    background: #ffffff;

    padding: 2.5rem;

    border-radius: 20px;

    text-align: center;

    position: relative;

    overflow: hidden;

    transition:
        all 0.4s cubic-bezier(
            0.4,
            0,
            0.2,
            1
        );

    border:
        1px solid
        rgba(221, 149, 12, 0.10);

    box-shadow:
        0 8px 25px
        rgba(8, 24, 11, 0.04);
}


/* =========================================================
   BENEFIT CARD HOVER
   ========================================================= */

.call-to-action .benefits-showcase .benefit-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 60px
        rgba(8, 24, 11, 0.12);

    border-color:
        rgba(221, 149, 12, 0.30);
}


/* =========================================================
   BENEFIT VISUAL
   ========================================================= */

.call-to-action .benefits-showcase .benefit-card .benefit-visual {
    position: relative;
    margin-bottom: 2rem;
}


/* =========================================================
   BENEFIT ICON WRAPPER
   ========================================================= */

.call-to-action
.benefits-showcase
.benefit-card
.benefit-visual
.benefit-icon-wrap {

    width: 100px;

    height: 100px;

    background:
        linear-gradient(
            135deg,
            #08180B 0%,
            #102C17 100%
        );

    border-radius: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto;

    position: relative;

    z-index: 2;

    box-shadow:
        0 12px 30px
        rgba(8, 24, 11, 0.18);

    border:
        2px solid
        rgba(221, 149, 12, 0.20);

    transition:
        all 0.3s ease;
}


/* =========================================================
   ICON HOVER
   ========================================================= */

.call-to-action
.benefits-showcase
.benefit-card:hover
.benefit-icon-wrap {

    background:
        linear-gradient(
            135deg,
            #DD950C 0%,
            #F0AA18 100%
        );

    transform:
        translateY(-3px)
        scale(1.04);

    box-shadow:
        0 15px 35px
        rgba(221, 149, 12, 0.25);
}


/* =========================================================
   BENEFIT ICON
   ========================================================= */

.call-to-action
.benefits-showcase
.benefit-card
.benefit-visual
.benefit-icon-wrap i {

    font-size: 2.5rem;

    color: #ffffff;

    transition:
        color 0.3s ease;
}


/* =========================================================
   DECORATIVE PATTERN
   ========================================================= */

.call-to-action
.benefits-showcase
.benefit-card
.benefit-visual
.benefit-pattern {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 150px;

    height: 150px;

    background:
        radial-gradient(
            circle,
            rgba(221, 149, 12, 0.16) 0%,
            transparent 70%
        );

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    z-index: 1;

    pointer-events: none;
}


/* =========================================================
   BENEFIT CONTENT HEADING
   ========================================================= */

.call-to-action
.benefits-showcase
.benefit-card
.benefit-content
h4 {

    font-size: 1.4rem;

    font-weight: 700;

    margin-bottom: 1rem;

    color: #08180B;

    transition:
        color 0.3s ease;
}


/* Gold heading on hover */

.call-to-action
.benefits-showcase
.benefit-card:hover
.benefit-content
h4 {

    color: #DD950C;
}


/* =========================================================
   BENEFIT CONTENT
   ========================================================= */

.call-to-action
.benefits-showcase
.benefit-card
.benefit-content
p {

    color:
        color-mix(
            in srgb,
            #08180B,
            transparent 25%
        );

    line-height: 1.6;

    margin: 0;
}


/* =========================================================
   EMAIL INPUT
   ========================================================= */

.call-to-action input[type="email"] {

    color: #08180B;

    background-color: #ffffff;

    font-size: 14px;

    border:
        1px solid
        rgba(8, 24, 11, 0.20);

    transition:
        all 0.3s ease;
}


/* =========================================================
   EMAIL INPUT FOCUS
   ========================================================= */

.call-to-action input[type="email"]:focus {

    border-color: #DD950C;

    outline: none;

    box-shadow:
        0 0 0 4px
        rgba(221, 149, 12, 0.10);
}


/* =========================================================
   EMAIL PLACEHOLDER
   ========================================================= */

.call-to-action input[type="email"]::placeholder {

    color:
        color-mix(
            in srgb,
            #08180B,
            transparent 70%
        );
}


/* =========================================================
   SHIMMER ANIMATION
   ========================================================= */

@keyframes shimmer {

    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }

}

/*--------------------------------------------------------------
# Travel About Section
--------------------------------------------------------------*/
.travel-about .intro-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .travel-about .intro-content h2 {
    font-size: 2.2rem;
  }
}

.travel-about .intro-content .lead {
  font-size: 1.3rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-weight: 400;
}

.travel-about .hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.travel-about .hero-image img {
  transition: transform 0.5s ease;
}

.travel-about .hero-image img:hover {
  transform: scale(1.05);
}

.travel-about .hero-image .floating-stats {
  position: absolute;
  bottom: -30px;
  right: -30px;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .travel-about .hero-image .floating-stats {
    bottom: -20px;
    right: -20px;
    gap: 0.5rem;
  }
}

.travel-about .hero-image .floating-stats .stat-item {
  background: var(--surface-color);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  min-width: 80px;
}

@media (max-width: 768px) {
  .travel-about .hero-image .floating-stats .stat-item {
    padding: 1rem 0.8rem;
    min-width: 70px;
  }
}

.travel-about .hero-image .floating-stats .stat-item .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

@media (max-width: 768px) {
  .travel-about .hero-image .floating-stats .stat-item .number {
    font-size: 1.4rem;
  }
}

.travel-about .hero-image .floating-stats .stat-item .label {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 0.3rem;
}

.travel-about .story-content .story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.travel-about .story-content .story-badge i {
  font-size: 1.1rem;
}

.travel-about .story-content h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .travel-about .story-content h3 {
    font-size: 2rem;
  }
}

.travel-about .story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.travel-about .story-content .mission-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-about .story-content .mission-box .mission-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.travel-about .story-content .mission-box .mission-text h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.travel-about .story-content .mission-box .mission-text p {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-about .features-grid .section-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .travel-about .features-grid .section-header h3 {
    font-size: 2rem;
  }
}

.travel-about .features-grid .section-header p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.travel-about .features-grid .feature-card {
  height: 280px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

.travel-about .features-grid .feature-card .feature-front,
.travel-about .features-grid .feature-card .feature-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.travel-about .features-grid .feature-card .feature-front {
  background: var(--surface-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-about .features-grid .feature-card .feature-front .feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.travel-about .features-grid .feature-card .feature-front h4 {
  font-size: 1.4rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.travel-about .features-grid .feature-card .feature-front p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.travel-about .features-grid .feature-card .feature-back {
  background: var(--accent-color);
  transform: rotateY(180deg);
}

.travel-about .features-grid .feature-card .feature-back p {
  color: var(--contrast-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.travel-about .features-grid .feature-card:hover .feature-front {
  transform: rotateY(180deg);
}

.travel-about .features-grid .feature-card:hover .feature-back {
  transform: rotateY(0deg);
}

.travel-about .journey-timeline .timeline-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .travel-about .journey-timeline .timeline-header h3 {
    font-size: 2rem;
  }
}

.travel-about .journey-timeline .timeline-header p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.travel-about .journey-timeline .timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.travel-about .journey-timeline .timeline-container .timeline-milestone {
  position: relative;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone {
    margin-bottom: 3rem;
  }
}

.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  z-index: 2;
}

@media (max-width: 768px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
  }
}

.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
    width: 40%;
    margin-top: -50px;
  }
}

.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone:nth-child(odd) .milestone-content {
    margin-left: 0;
  }
}

@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone:nth-child(even) .milestone-content {
    margin-left: 60%;
  }
}

.travel-about .cta-banner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--heading-color), transparent 10%)), url("assets/img/travel/showcase-12.webp") center/cover;
  border-radius: 25px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.travel-about .cta-banner .cta-overlay {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

@media (max-width: 768px) {
  .travel-about .cta-banner .cta-overlay {
    padding: 2rem;
  }
}

.travel-about .cta-banner .cta-content {
  text-align: center;
  color: var(--contrast-color);
}

.travel-about .cta-banner .cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-about .cta-banner .cta-content h3 {
    font-size: 2rem;
  }
}

.travel-about .cta-banner .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.travel-about .cta-banner .cta-content .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.travel-about .cta-banner .cta-content .cta-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.travel-about .cta-banner .cta-content .cta-buttons .btn.btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.travel-about .cta-banner .cta-content .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.travel-about .cta-banner .cta-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.travel-about .cta-banner .cta-content .cta-buttons .btn.btn-outline:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Travel Destinations Section
--------------------------------------------------------------*/
.travel-destinations .destination-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.travel-destinations .destination-filters li {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .travel-destinations .destination-filters li {
    padding: 8px 18px;
    font-size: 13px;
  }
}

.travel-destinations .destination-filters li:hover,
.travel-destinations .destination-filters li.filter-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-destinations .isotope-container .destination-item {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .travel-destinations .isotope-container .destination-item {
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .travel-destinations .isotope-container .destination-item {
    margin-bottom: 20px;
  }
}

.travel-destinations .isotope-container .destination-tile {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  cursor: pointer;
}

.travel-destinations .isotope-container .destination-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 80%);
}

.travel-destinations .isotope-container .destination-tile .tile-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.travel-destinations .isotope-container .destination-tile .tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-destinations .isotope-container .destination-tile .tile-image:hover img {
  transform: scale(1.1);
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, #000, transparent 80%) 50%, color-mix(in srgb, #000, transparent 20%) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag {
  align-self: flex-end;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.luxury {
  background-color: #d4af37;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.cultural {
  background-color: #8b5cf6;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.adventure {
  background-color: #f59e0b;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.nature {
  background-color: #10b981;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.modern {
  background-color: #3b82f6;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.romantic {
  background-color: #ec4899;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.popular {
  background-color: #ef4444;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.trekking {
  background-color: #92400e;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.ancient {
  background-color: #7c2d12;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.family {
  background-color: #06b6d4;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info {
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info h4 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info .destination-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info .destination-stats .tours-available {
  font-size: 13px;
  opacity: 0.8;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info .destination-stats .tours-available i {
  margin-right: 4px;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info .destination-stats .starting-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.travel-destinations .planning-assistance {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .travel-destinations .planning-assistance {
    padding: 40px 25px;
  }
}

.travel-destinations .planning-assistance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.travel-destinations .planning-assistance .assistance-content {
  position: relative;
  z-index: 1;
}

.travel-destinations .planning-assistance .assistance-content h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .travel-destinations .planning-assistance .assistance-content h3 {
    font-size: 26px;
  }
}

.travel-destinations .planning-assistance .assistance-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .travel-destinations .planning-assistance .assistance-content .assistance-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Travel Destination Details Section
--------------------------------------------------------------*/
.travel-destination-details .destination-hero {
  margin-bottom: 80px;
}

.travel-destination-details .destination-hero .hero-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-hero .hero-image {
    height: 350px;
    border-radius: 15px;
  }
}

.travel-destination-details .destination-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-destination-details .destination-hero .hero-image .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.travel-destination-details .destination-hero .hero-image .hero-content {
  text-align: center;
  color: var(--contrast-color);
}

.travel-destination-details .destination-hero .hero-image .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-destination-details .destination-hero .hero-image .hero-content h1 {
    font-size: 2.5rem;
  }
}

.travel-destination-details .destination-hero .hero-image .hero-content .hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

.travel-destination-details .destination-overview {
  margin-bottom: 80px;
  text-align: center;
}

.travel-destination-details .destination-overview h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.travel-destination-details .destination-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-destination-details .attractions-section {
  margin-bottom: 80px;
}

.travel-destination-details .attractions-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .attractions-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .attractions-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .attractions-section .attraction-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}

.travel-destination-details .attractions-section .attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-destination-details .attractions-section .attraction-item .attraction-image {
  height: 200px;
  overflow: hidden;
}

.travel-destination-details .attractions-section .attraction-item .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.travel-destination-details .attractions-section .attraction-item .attraction-content {
  padding: 25px;
}

.travel-destination-details .attractions-section .attraction-item .attraction-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.travel-destination-details .attractions-section .attraction-item .attraction-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}

.travel-destination-details .attractions-section .attraction-item:hover .attraction-image img {
  transform: scale(1.1);
}

.travel-destination-details .tours-section {
  margin-bottom: 80px;
}

.travel-destination-details .tours-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .tours-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .tours-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .tours-section .tour-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}

.travel-destination-details .tours-section .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-destination-details .tours-section .tour-card .tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.travel-destination-details .tours-section .tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.travel-destination-details .tours-section .tour-card .tour-image .tour-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.travel-destination-details .tours-section .tour-card .tour-content {
  padding: 25px;
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span i {
  color: var(--accent-color);
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span.rating {
  color: #ffc107;
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span.rating i {
  color: #ffc107;
}

.travel-destination-details .tours-section .tour-card .tour-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.travel-destination-details .tours-section .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.travel-destination-details .tours-section .tour-card .tour-content .btn-tour {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.travel-destination-details .tours-section .tour-card .tour-content .btn-tour:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.travel-destination-details .tours-section .tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.travel-destination-details .map-section {
  margin-bottom: 80px;
}

.travel-destination-details .map-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .map-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .map-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .map-section .map-container {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-destination-details .map-section .map-container .map-embed {
  height: 400px;
}

.travel-destination-details .map-section .map-container .map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.travel-destination-details .map-section .map-container .map-points {
  padding: 25px;
  background: var(--surface-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.travel-destination-details .map-section .map-container .map-points .point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.travel-destination-details .map-section .map-container .map-points .point-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.travel-destination-details .map-section .map-container .map-points .point-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

.travel-destination-details .practical-info {
  margin-bottom: 80px;
}

.travel-destination-details .practical-info .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .practical-info .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .practical-info .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .practical-info .info-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: 0.3s;
}

.travel-destination-details .practical-info .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-destination-details .practical-info .info-item .info-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.travel-destination-details .practical-info .info-item .info-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.travel-destination-details .practical-info .info-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .practical-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}

.travel-destination-details .practical-info .travel-tips {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-destination-details .practical-info .travel-tips h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.travel-destination-details .practical-info .travel-tips .tips-list {
  list-style: none;
  padding: 0;
}

.travel-destination-details .practical-info .travel-tips .tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.travel-destination-details .practical-info .travel-tips .tips-list li i {
  color: var(--accent-color);
  margin-top: 3px;
  font-size: 1.1rem;
}

.travel-destination-details .gallery-section {
  margin-bottom: 80px;
}

.travel-destination-details .gallery-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .gallery-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .gallery-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .gallery-section .swiper-wrapper {
  height: auto !important;
}

.travel-destination-details .gallery-section .gallery-item {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 10px;
}

.travel-destination-details .gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.travel-destination-details .gallery-section .gallery-item img:hover {
  transform: scale(1.05);
}

.travel-destination-details .gallery-section .swiper-pagination {
  margin-top: 30px;
}

.travel-destination-details .gallery-section .swiper-pagination .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.travel-destination-details .gallery-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.travel-destination-details .cta-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 20px;
  text-align: center;
}

.travel-destination-details .cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-destination-details .cta-section h2 {
    font-size: 2rem;
  }
}

.travel-destination-details .cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.travel-destination-details .cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.travel-destination-details .cta-section .cta-buttons .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.travel-destination-details .cta-section .cta-buttons .btn.btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--contrast-color);
}

.travel-destination-details .cta-section .cta-buttons .btn.btn-primary:hover {
  background: transparent;
  color: var(--contrast-color);
}

.travel-destination-details .cta-section .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.travel-destination-details .cta-section .cta-buttons .btn.btn-outline:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.travel-tours .section-subtitle {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.travel-tours .tour-filters {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(3, 25, 223, 0.1);
}

.travel-tours .tour-filters .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 0.75rem;
}

.travel-tours .tour-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.travel-tours .featured-tours-slider {
  padding-bottom: 40px;
}

.travel-tours .featured-tours-slider .swiper-wrapper {
  height: auto !important;
}

.travel-tours .featured-tours-slider .swiper-pagination {
  bottom: 0;
}

.travel-tours .featured-tours-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.travel-tours .featured-tours-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.travel-tours .featured-tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.travel-tours .featured-tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.travel-tours .featured-tour-card .tour-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-tours .featured-tour-card .tour-image .tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
}

.travel-tours .featured-tour-card .tour-image:hover img {
  transform: scale(1.05);
}

.travel-tours .featured-tour-card .tour-content {
  padding: 1.5rem;
}

.travel-tours .featured-tour-card .tour-content h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.travel-tours .featured-tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.travel-tours .featured-tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.travel-tours .featured-tour-card .tour-content .tour-meta .duration {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
}

.travel-tours .featured-tour-card .tour-content .tour-meta .duration i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.travel-tours .featured-tour-card .tour-content .tour-meta .price {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.travel-tours .featured-tour-card .tour-content .btn {
  width: 100%;
}

.travel-tours .category-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .category-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.travel-tours .category-card .category-icon {
  margin-bottom: 1rem;
}

.travel-tours .category-card .category-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.travel-tours .category-card h5 {
  color: var(--heading-color);
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.travel-tours .special-offers .offer-banner {
  display: flex;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 15px;
  overflow: hidden;
  min-height: 200px;
  position: relative;
}

@media (max-width: 768px) {
  .travel-tours .special-offers .offer-banner {
    flex-direction: column;
  }
}

.travel-tours .special-offers .offer-banner .offer-content {
  flex: 1;
  padding: 2rem;
  color: var(--contrast-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.travel-tours .special-offers .offer-banner .offer-content .discount-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.travel-tours .special-offers .offer-banner .offer-content h4 {
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.travel-tours .special-offers .offer-banner .offer-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.travel-tours .special-offers .offer-banner .offer-content .urgency {
  color: #ffeb3b;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.travel-tours .special-offers .offer-banner .offer-content .btn-accent {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  align-self: flex-start;
}

.travel-tours .special-offers .offer-banner .offer-content .btn-accent:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

.travel-tours .special-offers .offer-banner .offer-image {
  flex: 0 0 200px;
}

@media (max-width: 768px) {
  .travel-tours .special-offers .offer-banner .offer-image {
    flex: none;
    height: 150px;
  }
}

.travel-tours .special-offers .offer-banner .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-tours .tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.travel-tours .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.travel-tours .tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.travel-tours .tour-card .tour-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-tours .tour-card .tour-image .tour-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
}

.travel-tours .tour-card .tour-image:hover img {
  transform: scale(1.05);
}

.travel-tours .tour-card .tour-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.travel-tours .tour-card .tour-content h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.travel-tours .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.travel-tours .tour-card .tour-content .tour-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tours .tour-card .tour-content .tour-details span {
  display: flex;
  align-items: center;
}

.travel-tours .tour-card .tour-content .tour-details span i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.travel-tours .tour-card .tour-content .btn {
  align-self: flex-start;
}

.travel-tours .cta-section {
  background-color: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.travel-tours .cta-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.travel-tours .cta-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .travel-tours .cta-section .cta-buttons .btn {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
  }

  .travel-tours .cta-section .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

.travel-tours .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-tours .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.travel-tours .btn-outline-primary {
  color: var(--accent-color);
  background-color: rgb(11, 39, 11);
  border-color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-tours .btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Travel Tour Details Section
--------------------------------------------------------------*/
.travel-tour-details .tour-hero {
  margin-bottom: 60px;
}

.travel-tour-details .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.travel-tour-details .tour-hero .hero-image-wrapper img {
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-image-wrapper img {
    height: 350px;
  }
}

.travel-tour-details .tour-hero .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--contrast-color);
  padding: 60px 40px 40px;
}

@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-overlay {
    padding: 40px 20px 20px;
  }
}

.travel-tour-details .tour-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-content h1 {
    font-size: 2rem;
  }
}

.travel-tour-details .tour-hero .hero-content .hero-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-content .hero-meta {
    gap: 15px;
  }
}

.travel-tour-details .tour-hero .hero-content .hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.travel-tour-details .tour-hero .hero-content .hero-meta span i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.travel-tour-details .tour-hero .hero-content .hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-content .hero-tagline {
    font-size: 1rem;
  }
}

.travel-tour-details .tour-hero .hero-content .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-tour-details .tour-hero .hero-content .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.travel-tour-details .tour-overview {
  margin-bottom: 60px;
}

.travel-tour-details .tour-overview h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.travel-tour-details .tour-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--default-color);
}

.travel-tour-details .tour-overview .tour-highlights {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tour-details .tour-overview .tour-highlights h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.travel-tour-details .tour-overview .tour-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.travel-tour-details .tour-overview .tour-highlights ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--default-color);
}

.travel-tour-details .tour-overview .tour-highlights ul li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.travel-tour-details .tour-itinerary {
  margin-bottom: 60px;
}

.travel-tour-details .tour-itinerary h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .tour-itinerary .itinerary-timeline {
  position: relative;
}

.travel-tour-details .tour-itinerary .itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .travel-tour-details .tour-itinerary .itinerary-timeline::before {
    left: 25px;
  }
}

.travel-tour-details .tour-itinerary .itinerary-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .travel-tour-details .tour-itinerary .itinerary-item {
    padding-left: 80px;
  }
}

.travel-tour-details .tour-itinerary .itinerary-item .day-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .travel-tour-details .tour-itinerary .itinerary-item .day-number {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content .day-details {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content .day-details span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content .day-details span i {
  color: var(--accent-color);
}

.travel-tour-details .tour-inclusions {
  margin-bottom: 60px;
}

.travel-tour-details .tour-inclusions h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.travel-tour-details .tour-inclusions h3 i {
  font-size: 1.6rem;
}

.travel-tour-details .tour-inclusions .included-section h3 {
  color: #28a745;
}

.travel-tour-details .tour-inclusions .included-section h3 i {
  color: #28a745;
}

.travel-tour-details .tour-inclusions .excluded-section h3 {
  color: #dc3545;
}

.travel-tour-details .tour-inclusions .excluded-section h3 i {
  color: #dc3545;
}

.travel-tour-details .tour-inclusions .inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.travel-tour-details .tour-inclusions .inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tour-details .tour-inclusions .inclusion-list li:last-child {
  border-bottom: none;
}

.travel-tour-details .tour-inclusions .inclusion-list li i {
  margin-top: 2px;
  flex-shrink: 0;
}

.travel-tour-details .tour-inclusions .inclusion-list.included i {
  color: #28a745;
}

.travel-tour-details .tour-inclusions .inclusion-list.excluded i {
  color: #dc3545;
}

.travel-tour-details .tour-pricing {
  margin-bottom: 60px;
}

.travel-tour-details .tour-pricing h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .tour-pricing .pricing-table {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .travel-tour-details .tour-pricing .pricing-table {
    padding: 25px;
  }
}

.travel-tour-details .tour-pricing .pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.travel-tour-details .tour-pricing .pricing-header .price-item h3 {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.travel-tour-details .tour-pricing .pricing-header .price-item .price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .travel-tour-details .tour-pricing .pricing-header .price-item .price-amount {
    font-size: 2.5rem;
  }
}

.travel-tour-details .tour-pricing .pricing-header .price-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tour-details .tour-pricing .pricing-details {
  margin-bottom: 40px;
}

.travel-tour-details .tour-pricing .pricing-details .price-type {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.travel-tour-details .tour-pricing .pricing-details .price-type h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.travel-tour-details .tour-pricing .pricing-details .price-type .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.travel-tour-details .tour-pricing .pricing-details .price-type p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tour-details .tour-pricing .available-dates h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .tour-pricing .available-dates .dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.travel-tour-details .tour-pricing .available-dates .date-option {
  text-align: center;
  padding: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.travel-tour-details .tour-pricing .available-dates .date-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.travel-tour-details .tour-pricing .available-dates .date-option .date {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.travel-tour-details .tour-pricing .available-dates .date-option .availability {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tour-details .tour-gallery {
  margin-bottom: 60px;
}

.travel-tour-details .tour-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .tour-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.travel-tour-details .tour-gallery .gallery-grid .gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.travel-tour-details .tour-gallery .gallery-grid .gallery-item:hover {
  transform: scale(1.03);
}

.travel-tour-details .tour-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.travel-tour-details .tour-gallery .gallery-grid .gallery-item a:hover img {
  filter: brightness(1.1);
}

.travel-tour-details .final-cta .cta-content {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .travel-tour-details .final-cta .cta-content {
    padding: 40px 20px;
  }
}

.travel-tour-details .final-cta .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-tour-details .final-cta .cta-content h2 {
    font-size: 2rem;
  }
}

.travel-tour-details .final-cta .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.travel-tour-details .final-cta .cta-content .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-primary,
.travel-tour-details .final-cta .cta-content .cta-actions .btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--contrast-color), black 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-secondary {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-secondary:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.travel-tour-details .final-cta .cta-content .urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
}

.travel-tour-details .final-cta .cta-content .urgency-banner i {
  color: #ffc107;
}

/*--------------------------------------------------------------
# Travel Booking Section
--------------------------------------------------------------*/

/* Fortune Travel & Car Rentals brand colors */
.travel-booking {
  --ft-green: #08180B;
  --ft-green-dark: #102C17;
  --ft-gold: #DD950C;
  --ft-gold-light: #F0AA18;
  --ft-white: #FFFFFF;
  --ft-light: #F8F9FA;
  --ft-muted: #5F6368;
}


/*--------------------------------------------------------------
# Booking Form Container
--------------------------------------------------------------*/

.travel-booking .booking-form-container {
  background-color: var(--ft-white);
  border-radius: 15px;
  box-shadow:
    0 5px 30px
    color-mix(in srgb, var(--ft-green), transparent 90%);
  padding: 40px;
  margin-bottom: 30px;
}


/*--------------------------------------------------------------
# Booking Progress
--------------------------------------------------------------*/

.travel-booking .booking-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  border-bottom: 0;
}

.travel-booking .booking-progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color:
    color-mix(in srgb, var(--ft-green), transparent 80%);
  z-index: 1;
}

.travel-booking .booking-progress .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: var(--ft-white);
  padding: 0 15px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.travel-booking .booking-progress .step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:
    color-mix(in srgb, var(--ft-green), transparent 80%);
  color: var(--ft-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.3s;
}

.travel-booking .booking-progress .step .step-title {
  font-size: 14px;
  font-weight: 500;
  color:
    color-mix(in srgb, var(--ft-green), transparent 40%);
  text-align: center;
  transition: 0.3s;
}

.travel-booking .booking-progress .step:hover .step-number {
  background-color:
    color-mix(in srgb, var(--ft-gold), transparent 20%);
}

.travel-booking .booking-progress .step:hover .step-title {
  color: var(--ft-gold);
}

.travel-booking .booking-progress .step.active .step-number {
  background-color: var(--ft-gold);
  color: var(--ft-white);
}

.travel-booking .booking-progress .step.active .step-title {
  color: var(--ft-gold);
}

.travel-booking .booking-progress .step.completed .step-number {
  background-color: var(--ft-green-dark);
  color: var(--ft-white);
}

.travel-booking .booking-progress .step.completed .step-number::before {
  content: "✓";
  font-size: 16px;
}


/*--------------------------------------------------------------
# Booking Progress Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .travel-booking .booking-progress .step .step-title {
    font-size: 12px;
  }

  .travel-booking .booking-progress .step .step-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

}


/*--------------------------------------------------------------
# Form Steps
--------------------------------------------------------------*/

.travel-booking .booking-form .tab-content .form-step.tab-pane {
  display: none;
}

.travel-booking .booking-form .tab-content .form-step.tab-pane.show.active {
  display: block;
}

.travel-booking .booking-form .tab-content .form-step h4 {
  color: var(--ft-green);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom:
    2px solid
    color-mix(in srgb, var(--ft-gold), transparent 80%);
}

.travel-booking .booking-form .tab-content .form-step h5 {
  color: var(--ft-green);
  margin: 30px 0 20px;
  font-size: 18px;
}


/*--------------------------------------------------------------
# Form Labels
--------------------------------------------------------------*/

.travel-booking .booking-form label {
  font-weight: 500;
  color: var(--ft-green);
  margin-bottom: 8px;
  display: block;
}


/*--------------------------------------------------------------
# Form Inputs
--------------------------------------------------------------*/

.travel-booking .booking-form input[type=text],
.travel-booking .booking-form input[type=email],
.travel-booking .booking-form input[type=tel],
.travel-booking .booking-form input[type=date],
.travel-booking .booking-form select,
.travel-booking .booking-form textarea {
  color: var(--ft-green);
  background-color: var(--ft-white);
  border:
    1px solid
    color-mix(in srgb, var(--ft-green), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: 0.3s;
}

.travel-booking .booking-form input[type=text]:focus,
.travel-booking .booking-form input[type=email]:focus,
.travel-booking .booking-form input[type=tel]:focus,
.travel-booking .booking-form input[type=date]:focus,
.travel-booking .booking-form select:focus,
.travel-booking .booking-form textarea:focus {
  border-color: var(--ft-gold);

  box-shadow:
    0 0 0 0.2rem
    color-mix(in srgb, var(--ft-gold), transparent 80%);

  outline: none;
}

.travel-booking .booking-form input[type=text]::placeholder,
.travel-booking .booking-form input[type=email]::placeholder,
.travel-booking .booking-form input[type=tel]::placeholder,
.travel-booking .booking-form input[type=date]::placeholder,
.travel-booking .booking-form select::placeholder,
.travel-booking .booking-form textarea::placeholder {
  color:
    color-mix(in srgb, var(--ft-green), transparent 70%);
}


/*--------------------------------------------------------------
# Form Navigation
--------------------------------------------------------------*/

.travel-booking .booking-form .form-navigation {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.travel-booking .booking-form .form-navigation .btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  border: none;
}

.travel-booking .booking-form .form-navigation .btn.btn-prev {
  background-color:
    color-mix(in srgb, var(--ft-green), transparent 80%);
  color: var(--ft-green);
}

.travel-booking .booking-form .form-navigation .btn.btn-prev:hover {
  background-color:
    color-mix(in srgb, var(--ft-green), transparent 70%);
}

.travel-booking .booking-form .form-navigation .btn.btn-next,
.travel-booking .booking-form .form-navigation .btn.btn-book {
  background-color: var(--ft-gold);
  color: var(--ft-white);
}

.travel-booking .booking-form .form-navigation .btn.btn-next:hover,
.travel-booking .booking-form .form-navigation .btn.btn-book:hover {
  background-color: var(--ft-gold-light);
}


/*--------------------------------------------------------------
# Add-on Options
--------------------------------------------------------------*/

.travel-booking .addon-options .addon-item {
  background-color: var(--ft-light);

  border:
    1px solid
    color-mix(in srgb, var(--ft-green), transparent 85%);

  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.travel-booking .addon-options .addon-item:hover {
  border-color: var(--ft-gold);

  box-shadow:
    0 2px 15px
    color-mix(in srgb, var(--ft-gold), transparent 85%);
}

.travel-booking .addon-options .addon-item .addon-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.travel-booking
.addon-options
.addon-item
.addon-details
.addon-check {
  flex: 1;
}

.travel-booking
.addon-options
.addon-item
.addon-details
.addon-check
input[type=checkbox] {
  margin-right: 15px;
  transform: scale(1.2);
}

.travel-booking
.addon-options
.addon-item
.addon-details
.addon-check
label {
  cursor: pointer;
  margin-bottom: 0;
}

.travel-booking
.addon-options
.addon-item
.addon-details
.addon-check
label
h5 {
  margin: 0 0 5px;
  font-size: 16px;
}

.travel-booking
.addon-options
.addon-item
.addon-details
.addon-check
label
p {
  margin: 0;
  font-size: 14px;
  color:
    color-mix(in srgb, var(--ft-green), transparent 30%);
}

.travel-booking
.addon-options
.addon-item
.addon-details
.addon-price {
  text-align: right;
}

.travel-booking
.addon-options
.addon-item
.addon-details
.addon-price
.price {
  font-size: 20px;
  font-weight: 600;
  color: var(--ft-gold);
  display: block;
}

.travel-booking
.addon-options
.addon-item
.addon-details
.addon-price
.period {
  font-size: 12px;
  color:
    color-mix(in srgb, var(--ft-green), transparent 40%);
}


/*--------------------------------------------------------------
# Payment Methods
--------------------------------------------------------------*/

.travel-booking .payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.travel-booking .payment-methods .method-selector {
  flex: 1;
}

.travel-booking
.payment-methods
.method-selector
input[type=radio] {
  display: none;
}

.travel-booking
.payment-methods
.method-selector
input[type=radio]:checked+label {
  background-color: var(--ft-gold);
  color: var(--ft-white);
  border-color: var(--ft-gold);
}

.travel-booking
.payment-methods
.method-selector
label {
  display: block;
  padding: 15px;

  border:
    2px solid
    color-mix(in srgb, var(--ft-green), transparent 80%);

  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 0;
}

.travel-booking
.payment-methods
.method-selector
label:hover {
  border-color: var(--ft-gold);
}

.travel-booking
.payment-methods
.method-selector
label
i {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}


/*--------------------------------------------------------------
# Payment Methods Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .travel-booking .payment-methods {
    flex-direction: column;
  }

}


/*--------------------------------------------------------------
# Secure Payment
--------------------------------------------------------------*/

.travel-booking .secure-payment {
  background-color: var(--ft-light);

  border:
    1px solid
    var(--ft-green-dark);

  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;

  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--ft-green-dark);
}

.travel-booking .secure-payment i {
  font-size: 20px;
}


/*--------------------------------------------------------------
# Terms Agreement
--------------------------------------------------------------*/

.travel-booking .terms-agreement {
  margin-top: 25px;
  padding: 20px;
  background-color: var(--ft-light);
  border-radius: 8px;
}

.travel-booking .terms-agreement .form-check {
  display: flex;
  align-items: start;
  gap: 10px;
}

.travel-booking .terms-agreement .form-check .form-check-input {
  margin-top: 3px;
}

.travel-booking .terms-agreement .form-check .form-check-label {
  margin-bottom: 0;
  font-size: 14px;
}

.travel-booking .terms-agreement .form-check .form-check-label a {
  color: var(--ft-gold);
  text-decoration: none;
}

.travel-booking .terms-agreement .form-check .form-check-label a:hover {
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Booking Summary
--------------------------------------------------------------*/

.travel-booking .booking-summary {
  background-color: var(--ft-white);

  border-radius: 15px;

  box-shadow:
    0 5px 30px
    color-mix(in srgb, var(--ft-green), transparent 90%);

  padding: 30px;

  position: sticky;

  top: 100px;
}


/*--------------------------------------------------------------
# Summary Header
--------------------------------------------------------------*/

.travel-booking .booking-summary .summary-header {
  border-bottom:
    2px solid
    color-mix(in srgb, var(--ft-gold), transparent 80%);

  padding-bottom: 15px;

  margin-bottom: 25px;
}

.travel-booking .booking-summary .summary-header h4 {
  margin: 0;
  color: var(--ft-green);
}


/*--------------------------------------------------------------
# Selected Tour
--------------------------------------------------------------*/

.travel-booking .booking-summary .selected-tour {
  margin-bottom: 25px;
}

.travel-booking .booking-summary .selected-tour img {
  border-radius: 10px;
  margin-bottom: 15px;
}

.travel-booking
.booking-summary
.selected-tour
.tour-info
h5 {
  margin: 0 0 10px;
  color: var(--ft-green);
}

.travel-booking
.booking-summary
.selected-tour
.tour-info
p {
  margin: 5px 0;
  font-size: 14px;

  color:
    color-mix(in srgb, var(--ft-green), transparent 20%);
}

.travel-booking
.booking-summary
.selected-tour
.tour-info
p
i {
  color: var(--ft-gold);
  margin-right: 8px;
}


/*--------------------------------------------------------------
# Booking Details
--------------------------------------------------------------*/

.travel-booking .booking-summary .booking-details {
  margin-bottom: 25px;
}

.travel-booking
.booking-summary
.booking-details
.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;

  border-bottom:
    1px solid
    color-mix(in srgb, var(--ft-green), transparent 90%);
}

.travel-booking
.booking-summary
.booking-details
.detail-item
.label {
  font-weight: 500;
  color: var(--ft-green);
}

.travel-booking
.booking-summary
.booking-details
.detail-item
.value {
  color:
    color-mix(in srgb, var(--ft-green), transparent 20%);
}


/*--------------------------------------------------------------
# Price Breakdown
--------------------------------------------------------------*/

.travel-booking .booking-summary .price-breakdown {
  border-top:
    2px solid
    color-mix(in srgb, var(--ft-green), transparent 90%);

  padding-top: 20px;
}

.travel-booking
.booking-summary
.price-breakdown
.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.travel-booking
.booking-summary
.price-breakdown
.price-item
.description {
  color: var(--ft-green);
}

.travel-booking
.booking-summary
.price-breakdown
.price-item
.amount {
  font-weight: 500;
  color: var(--ft-green);
}

.travel-booking
.booking-summary
.price-breakdown
.price-item.tax-item {
  padding-bottom: 15px;

  border-bottom:
    1px solid
    color-mix(in srgb, var(--ft-green), transparent 85%);
}


/*--------------------------------------------------------------
# Price Total
--------------------------------------------------------------*/

.travel-booking
.booking-summary
.price-breakdown
.price-total {

  display: flex;

  justify-content: space-between;

  margin-top: 15px;

  padding-top: 15px;

  border-top:
    2px solid
    var(--ft-gold);
}

.travel-booking
.booking-summary
.price-breakdown
.price-total
.description {

  font-weight: 600;

  font-size: 18px;

  color: var(--ft-green);
}

.travel-booking
.booking-summary
.price-breakdown
.price-total
.amount {

  font-weight: 600;

  font-size: 24px;

  color: var(--ft-gold);
}


/*--------------------------------------------------------------
# Help Section
--------------------------------------------------------------*/

.travel-booking
.booking-summary
.help-section {

  margin-top: 30px;

  padding-top: 25px;

  border-top:
    2px solid
    color-mix(in srgb, var(--ft-green), transparent 90%);
}

.travel-booking
.booking-summary
.help-section
h5 {

  margin: 0 0 15px;

  color: var(--ft-green);

  font-size: 16px;
}

.travel-booking
.booking-summary
.help-section
p {

  margin: 0 0 15px;

  font-size: 14px;

  color:
    color-mix(in srgb, var(--ft-green), transparent 20%);
}


/*--------------------------------------------------------------
# Contact Information
--------------------------------------------------------------*/

.travel-booking
.booking-summary
.help-section
.contact-info
p {

  margin: 5px 0;

  font-size: 14px;
}

.travel-booking
.booking-summary
.help-section
.contact-info
p
i {

  color: var(--ft-gold);

  margin-right: 8px;

  width: 16px;
}


/*--------------------------------------------------------------
# Support Hours
--------------------------------------------------------------*/

.travel-booking
.booking-summary
.help-section
.support-hours {

  margin-top: 10px;
}

.travel-booking
.booking-summary
.help-section
.support-hours
small {

  color: var(--ft-green-dark);

  font-weight: 500;
}


/*--------------------------------------------------------------
# Booking Summary Responsive
--------------------------------------------------------------*/

@media (max-width: 991.98px) {

  .travel-booking .booking-summary {

    margin-top: 30px;

    position: static;
  }

}


/*--------------------------------------------------------------
# Mobile Responsive
--------------------------------------------------------------*/

@media (max-width: 576px) {

  .travel-booking .booking-form-container {

    padding:
      25px 20px;
  }

  .travel-booking .booking-summary {

    padding: 20px;
  }

  .travel-booking
  .addon-options
  .addon-item
  .addon-details {

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

  .travel-booking
  .payment-methods
  .method-selector
  label {

    padding: 12px;
  }

  .travel-booking
  .payment-methods
  .method-selector
  label
  i {

    font-size: 18px;
  }

}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.gallery .isotope-filters li {
  display: inline-block;
  padding: 10px 20px;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery .isotope-filters li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.gallery .isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .gallery .isotope-filters {
    gap: 8px;
  }

  .gallery .isotope-filters li {
    padding: 8px 14px;
    font-size: 14px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .gallery .gallery-item {
    margin-bottom: 20px;
  }
}

.gallery .gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.gallery .gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery .gallery-card:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery .gallery-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}

.gallery .gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--contrast-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery .gallery-overlay h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.gallery .gallery-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.gallery .gallery-overlay .gallery-actions {
  display: flex;
  gap: 15px;
}

.gallery .gallery-overlay .gallery-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.gallery .gallery-overlay .gallery-actions a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

.gallery .glightbox-clean .gslide-description {
  background: #272727;
}

.gallery .glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}


/*--------------------------------------------------------------
# Gallery Slider Section
--------------------------------------------------------------*/
.gallery-slider {
  overflow: hidden;
}

.gallery-slider .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-slider .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery-slider .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-slider .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-slider .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery-slider .gallery-img:hover img {
  transform: scale(1.1);
}

.gallery-slider .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-slider .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery-slider:hover .swiper-button-next,
.gallery-slider:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery-slider:hover .swiper-button-next:hover,
.gallery-slider:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery-slider .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .gallery-slider .swiper-button-next,
  .gallery-slider .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery-slider .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery-slider .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding: 70px 0;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

@media (min-width: 576px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}

.gallery .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery .gallery-item.featured {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery .gallery-item.featured {
    grid-column: span 2;
  }
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.gallery .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery .btn-view-more {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gallery .btn-view-more i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.gallery .btn-view-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.gallery .btn-view-more:hover i {
  transform: translateX(5px);
}

/*------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px color-mix(in srgb, bl, transparent 92%);
  transition: all 0.3s ease;
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, black, transparent 15%) 0%, transparent 100%);
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, color-mix(in srgb, black, transparent 25%) 0%, transparent 100%);
  transition: background 0.3s ease;
}

.blog-hero .main-feature {
  aspect-ratio: 21/9;
}

.blog-hero .main-feature .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .blog-hero .main-feature .post-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-hero .main-feature .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .main-feature .post-excerpt {
  color: var(--contrast-color);
  font-size: 1.1rem;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-hero .main-feature .post-excerpt {
    display: none;
  }
}

.blog-hero .secondary-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .secondary-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-hero .secondary-features .blog-item {
  aspect-ratio: 3/4;
}

.blog-hero .regular-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .blog-hero .regular-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .regular-posts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-hero .regular-posts .blog-item {
  aspect-ratio: 16/9;
}

.blog-hero .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .post-meta .date,
.blog-hero .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .post-meta .date::before,
.blog-hero .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .post-meta .date::before {
  content: "\f282";
}

.blog-hero .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .post-title:not(h2) {
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  .blog-hero .post-title:not(h2) {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-header .title {
    font-size: 2.2rem;
  }
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .blog-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .blog-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .blog-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.blog-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author .author-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

@media (max-width: 991.98px) {
  .blog-author .author-card {
    flex-direction: column;
  }
}

.blog-author .author-background {
  position: relative;
  width: 35%;
  min-height: 400px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 90%));
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .blog-author .author-background {
    width: 100%;
    min-height: 300px;
  }
}

.blog-author .author-background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  background: linear-gradient(to right, transparent, var(--surface-color));
}

@media (max-width: 991.98px) {
  .blog-author .author-background::after {
    display: none;
  }
}

.blog-author .author-image-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
  z-index: 2;
}

.blog-author .author-image-wrapper:hover {
  transform: rotate(0deg);
}

.blog-author .author-image-wrapper .author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author .author-details {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 767.98px) {
  .blog-author .author-details {
    padding: 2rem 1.5rem;
  }
}

.blog-author .author-meta .author-name {
  font-size: 2rem;
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-author .author-meta .author-credentials {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-author .author-meta .author-credentials .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.blog-author .author-description {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .author-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 767.98px) {
  .blog-author .author-stats {
    gap: 1rem;
    justify-content: space-around;
  }
}

.blog-author .author-stats .stat-item {
  text-align: center;
}

.blog-author .author-stats .stat-item .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.blog-author .author-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.25rem;
}

.blog-author .author-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

@media (max-width: 767.98px) {
  .blog-author .author-footer {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.blog-author .author-footer .social-links {
  display: flex;
  gap: 1rem;
}

.blog-author .author-footer .social-links a {
  color: var(--accent-color);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.blog-author .author-footer .social-links a:hover {
  transform: translateY(-3px);
  color: var(--heading-color);
}

.blog-author .author-footer .btn-connect {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-author .author-footer .btn-connect i {
  transition: transform 0.3s ease;
}

.blog-author .author-footer .btn-connect:hover {
  background-color: var(--heading-color);
}

.blog-author .author-footer .btn-connect:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.blog-comment-form .form-group {
  margin-bottom: 20px;
}

.blog-comment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comment-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 20px;
  }

  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }

  .blog-comment-form .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# Slider Testimonials Section
--------------------------------------------------------------*/
.slider-testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.slider-testimonials .swiper-wrapper {
  height: auto;
}

.slider-testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .slider-testimonials .testimonial-item {
    padding: 20px;
  }
}

.slider-testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.slider-testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.slider-testimonials .testimonial-item .profile {
  gap: 15px;
}

.slider-testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.slider-testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.slider-testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.slider-testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.slider-testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.slider-testimonials .swiper-button-prev,
.slider-testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.slider-testimonials .swiper-button-prev::after,
.slider-testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.slider-testimonials .swiper-button-prev:hover,
.slider-testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.slider-testimonials .swiper-button-prev:hover::after,
.slider-testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq .faq-sidebar .contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

.btn-learn-more {
  display: inline-flex;
  /* Flex for centering */
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
  border: 2px solid #28a745;
  /* Green border */
  color: #28a745;
  /* Green text */
  background-color: transparent;
  padding: 0.5rem 1rem;
  /* Adjust padding as needed */
  text-align: center;
  /* Center text */
  text-decoration: none;
  /* Remove underline */
  transition: all 0.3s ease;
  cursor: pointer;
  /* Pointer on hover */
}

.btn-learn-more:hover,
.btn-learn-more:focus,
.btn-learn-more:active {
  background-color: #28a745;
  /* Green background on hover/click */
  color: #fff;
  /* White text */
  border-color: #28a745;
}

.btn-learn-moree {
  display: inline-flex;
  /* Flex for centering */
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
  border: 2px solid white;
  /* Green border */
  color: #fff;
  /* Green text */
  background-color: green;
  padding: 0.5rem 1rem;
  /* Adjust padding as needed */
  text-align: center;
  /* Center text */
  text-decoration: none;
  /* Remove underline */
  transition: all 0.3s ease;
  cursor: pointer;
  /* Pointer on hover */
}

.btn-learn-moree:hover,
.btn-learn-moree:focus,
.btn-learn-moree:active {
  background-color: white;
  /* Green background on hover/click */
  color: green;
  /* White text */
  border-color: green;
}

/*--------------------------------------------------------------
# Mobile Bottom Navigation - App Style
--------------------------------------------------------------*/
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 16px;
  box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 9999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 11px;
  font-weight: 500;
  gap: 4px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 16px;
  flex: 1;
  max-width: 72px;
}

.mobile-nav-item i {
  font-size: 20px;
  transition: all 0.3s ease;
}

.mobile-nav-item.active {
  color: #10b981;
}

.mobile-nav-item.active i {
  transform: scale(1.1);
}

.mobile-nav-item:not(.mobile-menu-trigger):hover {
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

.book-now-mobile {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white !important;
  transform: translateY(-8px);
  box-shadow:
    0px 8px 20px rgba(16, 185, 129, 0.4),
    0px 2px 8px rgba(16, 185, 129, 0.3);
  margin: 0 4px;
}

.book-now-mobile i {
  font-size: 24px;
}

.book-now-mobile:hover {
  transform: translateY(-10px) scale(1.05);
  color: white !important;
}

.mobile-menu-trigger {
  cursor: pointer;
}

/* Modern Bottom Navigation - Updated with your styles */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 16px;
  box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 9999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 11px;
  font-weight: 500;
  gap: 4px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 16px;
  flex: 1;
  max-width: 72px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}

.nav-btn i {
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-btn.active {
  color: #10b981;
}

.nav-btn.active i {
  transform: scale(1.1);
}

.nav-btn:hover:not(.active) {
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

/* Search Modal Styles */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 1100;
  animation: fadeIn 0.3s ease;
}

.search-modal.active {
  display: flex;
  align-items: flex-end;
}

.search-modal-content {
  background: white;
  width: 100%;
  height: 75vh;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 20px 24px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.search-modal.active .search-modal-content {
  transform: translateY(0);
}

/* Drag handle for better mobile UX */
.search-modal-content::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #e1e5e9;
  border-radius: 2px;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 8px;
}

.search-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.close-search {
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-search:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}

.search-input-group {
  position: relative;
  margin-bottom: 16px;
}

.search-input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: 18px;
}

.search-input-group input {
  width: 100%;
  padding: 14px 48px 14px 48px;
  border: 2px solid #e1e5e9;
  border-radius: 16px;
  font-size: 16px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  min-height: 52px;
}

.search-input-group input:focus {
  outline: none;
  border-color: #10b981;
  background: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.clear-search {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: none;
}

.clear-search:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #666;
}

.search-input-group input:not(:placeholder-shown)+.clear-search {
  display: block;
}

/* Results Container */
.search-results-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.search-suggestions,
.search-results {
  flex: 1;
  overflow-y: auto;
  max-height: 50vh;
  margin-top: 8px;
}

/* Better scrollable area */
.search-suggestions::-webkit-scrollbar,
.search-results::-webkit-scrollbar {
  width: 4px;
}

.search-suggestions::-webkit-scrollbar-track,
.search-results::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.search-suggestions::-webkit-scrollbar-thumb,
.search-results::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover,
.search-results::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Suggestion items */
.suggestion-item {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  border-radius: 8px;
  margin-bottom: 4px;
  border: 1px solid transparent;
}

.suggestion-item:hover {
  background: #f8f9fa;
  border-color: #e1e5e9;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.suggestion-item:active {
  transform: translateY(0);
}

/* Category-specific icons */
.suggestion-item .bi-tree {
  color: #34a853;
}

.suggestion-item .bi-building {
  color: #8a2be2;
}

.suggestion-item .bi-compass {
  color: #ff6b35;
}

.suggestion-item .bi-basket {
  color: #ffd700;
}

.suggestion-item .bi-geo-alt {
  color: #10b981;
}

.suggestion-item i {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.suggestion-text {
  flex: 1;
  min-width: 0;
}

.suggestion-text h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Tour-specific result items */
.tour-result-item {
  background: rgba(255, 255, 255, 0.8);
  border-left: 4px solid #10b981;
}

.tour-result-item:hover {
  background: white;
  border-left-color: #34a853;
}

.tour-result-item.harare-tour {
  border-left-color: #10b981;
}

.tour-result-item.zimbabwe-tour {
  border-left-color: #34a853;
}

/* Category badges */
.category-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-nature {
  background: rgba(52, 168, 83, 0.1);
  color: #34a853;
}

.category-culture {
  background: rgba(138, 43, 226, 0.1);
  color: #8a2be2;
}

.category-adventure {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
}

.category-market {
  background: rgba(255, 215, 0, 0.1);
  color: #b38f00;
}

/* No Results State */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 12px;
  margin: 20px;
}

.no-results i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 16px;
  display: block;
}

.no-results h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.no-results p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes searchHighlight {
  0% {
    background: rgba(16, 185, 129, 0.1);
    transform: scale(1);
  }

  50% {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.02);
  }

  100% {
    background: rgba(16, 185, 129, 0.1);
    transform: scale(1);
  }
}

.highlighted-result {
  animation: searchHighlight 1s ease;
}

/* Scrolled State */
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  backdrop-filter: blur(30px);
}

.scrolled .header .header-container {
  box-shadow:
    0px 4px 15px rgba(0, 0, 0, 0.1),
    0px 1px 3px rgba(0, 0, 0, 0.06);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .header .btn-getstarted span {
    display: none;
  }

  .navmenu.mobile-nav-active ul,
  .mobile-nav-active .navmenu ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (min-width: 1200px) {

  .mobile-bottom-nav,
  .bottom-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .search-modal-content {
    height: 70vh;
    padding: 16px 20px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .search-header {
    margin-bottom: 12px;
    margin-top: 4px;
  }

  .search-header h3 {
    font-size: 18px;
  }

  .search-input-group {
    margin-bottom: 12px;
  }

  .search-input-group input {
    padding: 12px 44px 12px 44px;
    min-height: 48px;
    font-size: 15px;
  }

  .search-input-group i {
    left: 14px;
    font-size: 16px;
  }

  .clear-search {
    right: 14px;
    font-size: 18px;
  }

  .search-suggestions,
  .search-results {
    max-height: 50vh;
  }

  .suggestion-item {
    padding: 12px 14px;
    min-height: 56px;
    gap: 10px;
    border-radius: 6px;
  }

  .suggestion-text h4 {
    font-size: 15px;
  }

  .suggestion-text p {
    font-size: 13px;
  }

  .category-badge {
    font-size: 10px;
    padding: 1px 6px;
  }

  .close-search {
    font-size: 24px;
    padding: 6px;
  }
}

@media (max-width: 360px) {
  .search-modal-content {
    height: 65vh;
    padding: 12px 16px 16px;
  }

  .search-input-group input {
    padding: 10px 40px 10px 40px;
    min-height: 44px;
  }

  .suggestion-item {
    padding: 10px 12px;
    min-height: 52px;
    gap: 4px;
  }

  .suggestion-item i {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .search-modal.active {
    align-items: center;
    justify-content: center;
  }

  .search-modal-content {
    width: 90%;
    max-width: 500px;
    height: 80vh;
    border-radius: 20px;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }

  .search-modal.active .search-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .search-modal-content::before {
    display: none;
  }

  .suggestion-item {
    padding: 20px 20px;
    border-radius: 10px;
  }

  .suggestion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {

  .bottom-nav,
  .mobile-bottom-nav {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .search-modal-content {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .search-modal-content {
    background: #1a1a1a;
    color: #ffffff;
  }

  .search-header h3 {
    color: #ffffff;
  }

  .search-input-group input {
    background: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
  }

  .search-input-group input:focus {
    background: #363636;
    border-color: #10b981;
  }

  .suggestion-item {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: #333;
  }

  .suggestion-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .suggestion-text h4 {
    color: #ffffff;
  }

  .suggestion-text p {
    color: #cccccc;
  }

  .no-results {
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
  }
}

/* Fix body scrolling issue */
body {
  overflow-x: hidden;
}

body.mobile-nav-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Ensure hero section and other content stays below mobile menu */
.hero,
section:not(.header) {
  position: relative;
  z-index: 1;
}
/* -------------------------
   Design tokens (root)
   ------------------------- */

#easy-transit-tours {

  --et-space-xxs: 0.4rem;
  --et-space-xs: 0.6rem;
  --et-space-sm: 0.8rem;
  --et-space: clamp(1rem, 2.5vw, 1.5rem);
  --et-space-lg: clamp(1.5rem, 3.5vw, 2.5rem);

  --et-radius-sm: 8px;
  --et-radius: 16px;
  --et-radius-lg: 24px;

  /* Fortune Travel Brand Colors */
  --et-green: #08180B;
  --et-green-light: #102C17;
  --et-green-soft: #183D20;

  --et-gold: #DD950C;
  --et-gold-light: #F0AA18;
  --et-gold-soft: #FFF8E8;

  --et-dark: #08180B;
  --et-mid: #5f6368;
  --et-muted-bg: #f8f9fa;
  --et-white: #ffffff;

  /* Brand gradients */
  --et-gradient-primary:
    linear-gradient(
      135deg,
      #08180B 0%,
      #102C17 100%
    );

  --et-gradient-premium:
    linear-gradient(
      135deg,
      #08180B 0%,
      #DD950C 100%
    );

  --et-gradient-gold:
    linear-gradient(
      135deg,
      #DD950C 0%,
      #F0AA18 100%
    );

  --et-gradient-card:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f8f9fa 100%
    );

  /* Brand shadows */
  --et-shadow-soft:
    0 8px 32px rgba(8, 24, 11, 0.06);

  --et-shadow-hover:
    0 18px 40px rgba(8, 24, 11, 0.12);

  --et-glass:
    0 8px 24px rgba(8, 24, 11, 0.06);

  --et-focus:
    3px solid rgba(221, 149, 12, 0.18);

  --et-transition:
    280ms cubic-bezier(.22, .9, .37, 1);

  font-family:
    'Poppins',
    'Segoe UI',
    system-ui,
    -apple-system,
    sans-serif;

  font-size: 16px;
  color-scheme: light;
}


/* -------------------------
   Per-component isolation
   ------------------------- */

#easy-transit-tours,
#easy-transit-tours * {
  box-sizing: border-box;
}


/* -------------------------
   Section shell + background
   ------------------------- */

#easy-transit-tours {

  padding:
    clamp(1.25rem, 6vw, 6rem)
    clamp(0.75rem, 3vw, 2rem);

  min-height: 100vh;
  position: relative;
  overflow: hidden;

  background:

    radial-gradient(
      circle at 18% 82%,
      rgba(221, 149, 12, 0.055) 0%,
      transparent 55%
    ),

    radial-gradient(
      circle at 82% 18%,
      rgba(8, 24, 11, 0.055) 0%,
      transparent 55%
    ),

    linear-gradient(
      135deg,
      #f8f9fa 0%,
      #f4f7f4 50%,
      #fff8e8 100%
    );
}


/* -------------------------
   Subtle pattern layer
   ------------------------- */

#easy-transit-tours::before {

  content: "";

  position: absolute;
  inset: 0;

  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.02'%3E%3Cdefs%3E%3Cpattern id='g' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M10 0 L0 0 0 10' fill='none' stroke='%2308180B' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23g)'/%3E%3C/svg%3E");

  pointer-events: none;
  opacity: 0.06;
}


/* -------------------------
   Container
   ------------------------- */

.et-container {

  max-width: 1400px;
  margin: 0 auto;

  position: relative;
  z-index: 1;
}


/* -------------------------
   Headers - Mobile First
   ------------------------- */

.et-section-header {

  text-align: center;

  margin-bottom:
    clamp(1.5rem, 5vw, 4rem);
}


.et-section-title {

  font-weight: 800;

  font-size:
    clamp(1.6rem, 6vw, 3.5rem);

  line-height: 1.1;

  display: inline-block;

  background:
    var(--et-gradient-premium);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;

  position: relative;

  letter-spacing: -0.5px;

  margin-bottom: 1.5rem;
}


/* -------------------------
   Decorative bars
   ------------------------- */

.et-section-title::before,
.et-section-title::after {

  content: "";

  position: absolute;

  left: 50%;

  transform:
    translateX(-50%);

  height: 4px;

  border-radius: 4px;
}


.et-section-title::before {

  top: -0.75rem;

  width:
    min(120px, 40vw);

  background:
    var(--et-gradient-gold);

  box-shadow:
    0 2px 8px
    rgba(221, 149, 12, 0.28);
}


.et-section-title::after {

  bottom: -1rem;

  width:
    min(100px, 35vw);

  background:
    var(--et-gradient-primary);
}


/* -------------------------
   Subtitle card
   ------------------------- */

.et-section-subtitle {

  margin:
    1.5rem auto 0;

  max-width:
    min(700px, 90vw);

  font-size:
    clamp(0.95rem, 3.5vw, 1.25rem);

  line-height: 1.6;

  color:
    var(--et-mid);

  font-weight: 400;

  padding:
    clamp(1rem, 3vw, 1.5rem)
    clamp(1rem, 4vw, 2rem);

  border-radius:
    var(--et-radius);

  background:
    rgba(255, 255, 255, 0.72);

  border:
    1px solid
    rgba(255, 255, 255, 0.82);

  box-shadow:
    var(--et-shadow-soft);
}


/* -------------------------
   Tabs - Mobile First
   ------------------------- */

.et-tabs-container {

  display: flex;

  flex-direction: column;

  gap: 0.5rem;

  max-width: 100%;

  margin:
    clamp(1rem, 4vw, 2rem)
    auto;

  padding: 0.75rem;

  border-radius:
    var(--et-radius);

  background:
    rgba(255, 255, 255, 0.82);

  box-shadow:
    0 8px 26px
    rgba(8, 24, 11, 0.06);

  border:
    1px solid
    rgba(255, 255, 255, 0.6);
}


/* -------------------------
   Tab button
   ------------------------- */

.et-tab {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  padding:
    1rem 1.5rem;

  border-radius:
    var(--et-radius);

  cursor: pointer;

  user-select: none;

  font-weight: 600;

  color:
    var(--et-mid);

  transition:
    all var(--et-transition);

  background:
    transparent;

  border:
    2px solid transparent;

  min-height: 54px;

  text-align: center;
}


/* -------------------------
   Hover / Focus
   ------------------------- */

.et-tab:hover,
.et-tab:focus {

  transform:
    translateY(-2px);

  color:
    var(--et-green);

  outline: none;

  box-shadow:
    0 8px 18px
    rgba(8, 24, 11, 0.06);
}


.et-tab:focus-visible {

  box-shadow:
    var(--et-focus);
}


/* -------------------------
   Active tab
   ------------------------- */

.et-tab.active {

  color:
    var(--et-white);

  background:
    var(--et-gradient-primary);

  box-shadow:
    0 12px 30px
    rgba(8, 24, 11, 0.18);

  border-color:
    rgba(221, 149, 12, 0.25);
}


/* -------------------------
   Tab icon
   ------------------------- */

.et-tab i {

  font-size: 1.2rem;

  transition:
    transform 220ms ease;

  flex-shrink: 0;
}


.et-tab:hover i {

  transform:
    scale(1.08);
}


/* -------------------------
   Tab badge
   ------------------------- */

.et-tab-badge {

  background:
    var(--et-gradient-gold);

  padding:
    0.25rem 0.6rem;

  border-radius: 12px;

  font-size: 0.75rem;

  font-weight: 700;

  color:
    var(--et-dark);

  flex-shrink: 0;
}


/* -------------------------
   Search & Filter - Mobile First
   ------------------------- */

.et-search-filter-container {

  display: flex;

  flex-direction: column;

  gap: 1rem;

  align-items: stretch;

  margin-bottom:
    clamp(1.5rem, 5vw, 4rem);
}


/* -------------------------
   Search box
   ------------------------- */

.et-search-box {

  position: relative;

  width: 100%;
}


.et-search-icon {

  position: absolute;

  left: 1.25rem;

  top: 50%;

  transform:
    translateY(-50%);

  font-size: 1.15rem;

  color:
    var(--et-gold);

  pointer-events: none;

  z-index: 2;
}


/* -------------------------
   Search input
   ------------------------- */

.et-search-box input {

  width: 100%;

  padding:
    1rem
    1rem
    1rem
    3.5rem;

  border-radius: 999px;

  border:
    1px solid transparent;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(248, 249, 250, 0.92)
    );

  box-shadow:
    var(--et-glass);

  font-size: 1rem;

  transition:
    all var(--et-transition);

  min-height: 56px;
}


.et-search-box input:focus {

  outline: none;

  border-color:
    rgba(221, 149, 12, 0.25);

  box-shadow:
    0 6px 20px
    rgba(221, 149, 12, 0.10);

  transform:
    translateY(-2px);
}


/* =========================================================
   EASY TRANSIT - MODERN FILTER DROPDOWN
   Fortune Travel Brand Update
   ========================================================= */


/* -------------------------
   Filter container
   ------------------------- */

.et-filter-dropdown {

  position: relative;

  width: 100%;

  margin-bottom: 0.75rem;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* -------------------------
   Select base
   ------------------------- */

.et-filter-dropdown select {

  width: 100%;

  padding:
    clamp(0.9rem, 3vw, 1rem)
    clamp(2.8rem, 5vw, 3rem)
    clamp(0.9rem, 3vw, 1rem)
    1rem;

  border-radius: 999px;

  border:
    1px solid
    rgba(8, 24, 11, 0.10);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 249, 250, 0.94)
    );

  box-shadow:
    0 2px 10px
    rgba(8, 24, 11, 0.05),

    inset 0 1px 0
    rgba(255, 255, 255, 0.5);

  font-size:
    clamp(0.9rem, 4vw, 1rem);

  font-weight: 600;

  color:
    var(--et-dark);

  appearance: none;

  -webkit-appearance: none;

  -moz-appearance: none;

  cursor: pointer;

  transition:
    all 0.25s ease;

  min-height: 56px;

  line-height: 1.4;

  touch-action: manipulation;
}


/* -------------------------
   Focus state
   ------------------------- */

.et-filter-dropdown select:focus {

  outline: none;

  border-color:
    rgba(221, 149, 12, 0.45);

  box-shadow:

    0 0 0 4px
    rgba(221, 149, 12, 0.12),

    0 6px 16px
    rgba(221, 149, 12, 0.08);

  transform:
    translateY(-1px);
}


/* -------------------------
   Active / Tap feedback
   ------------------------- */

.et-filter-dropdown select:active {

  transform:
    scale(0.985);

  transition-duration:
    120ms;
}


/* -------------------------
   Caret icon
   ------------------------- */

.et-filter-dropdown::after {

  content: "";

  position: absolute;

  right:
    clamp(1rem, 4vw, 1.25rem);

  top: 50%;

  transform:
    translateY(-50%);

  width: 22px;

  height: 22px;

  background:
    linear-gradient(
      135deg,
      #08180B 0%,
      #DD950C 100%
    );

  -webkit-mask:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white'><path d='M3 6l5 5 5-5z'/></svg>")
    center / contain
    no-repeat;

  mask:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white'><path d='M3 6l5 5 5-5z'/></svg>")
    center / contain
    no-repeat;

  pointer-events: none;

  border-radius: 50%;

  opacity: 0.9;
}


/* -------------------------
   Hover for larger screens
   ------------------------- */

@media (hover: hover) {

  .et-filter-dropdown select:hover {

    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.97),
        rgba(245, 247, 249, 0.97)
      );

    box-shadow:
      0 4px 12px
      rgba(8, 24, 11, 0.08);

    border-color:
      rgba(221, 149, 12, 0.18);
  }

}

/* -----------------------------
   SMALL MOBILE ADJUSTMENTS
------------------------------ */
@media (max-width: 375px) {
  .et-filter-dropdown select {
    padding: 0.85rem 2.5rem 0.85rem 1rem;
    font-size: 0.9rem;
    min-height: 52px;
  }

  .et-filter-dropdown::after {
    right: 0.9rem;
    width: 20px;
    height: 20px;
  }
}

/* Very small devices */
@media (max-width: 320px) {
  .et-filter-dropdown select {
    padding: 0.8rem 2.4rem 0.8rem 0.9rem;
    min-height: 50px;
    font-size: 0.88rem;
  }
}

/* Tablets and above */
@media (min-width: 768px) {
  .et-filter-dropdown {
    width: auto;
    flex: 0 0 220px;
    margin-bottom: 0;
  }

  .et-filter-dropdown select {
    font-size: 1rem;
  }
}

/* -----------------------------
   ACCESSIBILITY & MOTION
------------------------------ */
@media (prefers-contrast: high) {
  .et-filter-dropdown select {
    border: 2px solid currentColor;
    background: white;
  }

  .et-filter-dropdown::after {
    background: currentColor;
  }
}

@media (prefers-reduced-motion: reduce) {
  .et-filter-dropdown select {
    transition: none;
  }

  .et-filter-dropdown select:focus,
  .et-filter-dropdown select:active {
    transform: none;
  }
}


/* search hint - FIXED positioning */
.et-search-hint {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--et-mid);
  opacity: 0;
  transition: opacity 180ms ease;
  width: 100%;
  text-align: center;
}

.et-search-box:focus-within .et-search-hint {
  opacity: 1;
}

/* -------------------------
   Stats cards - Mobile First
   ------------------------- */
.et-tours-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.et-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--et-radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--et-shadow-soft);
  transition: all var(--et-transition);
  min-height: 80px;
  /* Consistent height */
}

.et-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--et-shadow-hover);
}

.et-stat-card i {
  font-size: 1.9rem;
  background: var(--et-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.et-stat-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.et-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--et-dark);
  line-height: 1;
}

.et-stat-label {
  font-size: 0.9rem;
  color: var(--et-mid);
  font-weight: 600;
}

/* -------------------------
   Tours grid + card - Mobile First
   ------------------------- */
.et-tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  perspective: 1000px;
}

/* card shell */
.et-tour-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--et-radius);
  overflow: hidden;
  background: var(--et-gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--et-shadow-soft);
  transition: all var(--et-transition);
  transform-style: preserve-3d;
  position: relative;
}

/* hover elevates card */
.et-tour-card:hover {
  transform: translateY(-8px) rotateX(2deg) scale(1.02);
  box-shadow: var(--et-shadow-hover);
}

.et-tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.et-tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.et-tour-card:hover .et-tour-image img {
  transform: scale(1.05);
}


/* subtle overlay + shine */
.et-tour-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
  z-index: 1;
}

.et-tour-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-12deg);
  transition: left 600ms cubic-bezier(.22, .9, .37, 1);
  z-index: 2;
}

.et-tour-card:hover .et-tour-image::after {
  left: 110%;
}

/* category pill in top-right - ICONS REMOVED */
.et-tour-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--et-dark);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.86);
  /* Removed icon styles */
}

/* content */
.et-tour-content {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.56);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

/* title / location / description */
.et-tour-title {
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--et-dark), #2d3748);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.et-tour-location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--et-blue);
  font-weight: 700;
  font-size: 0.95rem;
}

.et-tour-location i {
  color: var(--et-green);
  font-size: 1.1rem;
}

.et-tour-description {
  color: var(--et-mid);
  line-height: 1.6;
  font-size: 1rem;
  margin-top: 0.35rem;
  flex-grow: 1;
}

/* action button */
.et-tour-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: var(--et-gradient-primary);
  color: var(--et-white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(26, 115, 232, 0.18);
  transition: all var(--et-transition);
  position: relative;
  overflow: hidden;
  min-height: 54px;
  /* Better touch target */
  margin-top: auto;
  /* Push to bottom */
}

.et-tour-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26, 115, 232, 0.22);
}

.et-tour-button i {
  transition: transform 220ms ease;
}

.et-tour-button:hover i {
  transform: scale(1.15) rotate(-6deg);
}

/* duration / price badges */
.et-tour-duration {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
}

.et-tour-price {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--et-gradient-gold);
  color: var(--et-dark);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.18);
}

/* no results */
.et-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--et-radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--et-mid);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--et-shadow-soft);
}

.et-no-results i {
  font-size: 3rem;
  color: var(--et-blue);
  opacity: .85;
  margin-bottom: 1rem;
}

.et-no-results h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--et-dark);
  margin-bottom: .6rem;
}

.et-no-results p {
  font-size: 1rem;
  color: var(--et-mid);
  line-height: 1.6;
}

/* -------------------------
   Featured banner
   ------------------------- */
.et-featured-banner {
  margin-top: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.25rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  border-radius: var(--et-radius);
  background: var(--et-gradient-premium);
  color: var(--et-white);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 14px 40px rgba(54, 44, 122, 0.12);
}

.et-featured-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
}

.et-banner-content {
  position: relative;
  z-index: 2;
}

.et-featured-banner i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.et-featured-banner h3 {
  font-size: clamp(1.15rem, 4vw, 2rem);
  margin-bottom: .8rem;
  font-weight: 800;
}

.et-featured-banner p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* whatsapp button */
.et-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.18);
  transition: all var(--et-transition);
  min-height: 54px;
  /* Better touch target */
}

.et-whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.22);
}

/* -------------------------
   Animations & motion
   ------------------------- */
@keyframes et-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* subtle floating for cards */
.et-tour-card {
  animation: et-float 6s ease-in-out infinite;
}

.et-tour-card:nth-child(2n) {
  animation-delay: 1s;
}

.et-tour-card:nth-child(3n) {
  animation-delay: 2s;
}

/* respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

  .et-tour-card,
  .et-tab,
  .et-tour-button,
  .et-tour-image::after {
    animation: none !important;
    transition: none !important;
  }
}

/* -------------------------
   Responsiveness - Tablet & Desktop
   ------------------------- */
@media (min-width: 480px) {
  .et-tours-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .et-section-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }
}

@media (min-width: 768px) {
  #easy-transit-tours {
    padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 4vw, 3rem);
  }

  .et-tabs-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-radius: 999px;
    padding: 0.75rem;
  }

  .et-tab {
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    min-height: auto;
  }

  .et-search-filter-container {
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-end;
  }

  .et-search-box {
    flex: 1 1 420px;
    min-width: 280px;
  }

  .et-filter-dropdown {
    flex: 0 0 220px;
  }

  .et-tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }

  .et-tours-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .et-search-hint {
    text-align: left;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .et-tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
  }

  .et-tour-card:hover {
    transform: translateY(-12px) rotateX(3deg) scale(1.02);
  }
}

/* -------------------------
   Dark mode
   ------------------------- */
body.dark #easy-transit-tours,
#easy-transit-tours.dark {
  color-scheme: dark;
  --et-muted-bg: #0b1220;
  --et-gradient-card: linear-gradient(145deg, rgba(16, 18, 23, 0.7) 0%, rgba(10, 12, 18, 0.6) 100%);
  background:
    radial-gradient(circle at 18% 82%, rgba(26, 115, 232, 0.04) 0%, transparent 55%),
    radial-gradient(circle at 82% 18%, rgba(52, 168, 83, 0.03) 0%, transparent 55%),
    linear-gradient(135deg, #071026 0%, #081124 50%, #04201a 100%);
}

body.dark #easy-transit-tours .et-section-subtitle {
  background: rgba(10, 12, 18, 0.48);
  border-color: rgba(255, 255, 255, 0.03);
  color: #dbe7ff;
  box-shadow: none;
}

body.dark #easy-transit-tours .et-tab {
  color: rgba(235, 235, 245, 0.85);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.02);
}

body.dark #easy-transit-tours .et-tab.active {
  box-shadow: 0 10px 28px rgba(26, 115, 232, 0.16);
}

body.dark #easy-transit-tours .et-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.025);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

body.dark #easy-transit-tours .et-tour-card {
  background: linear-gradient(120deg, rgba(10, 12, 18, 0.6), rgba(8, 10, 16, 0.6));
  border-color: rgba(255, 255, 255, 0.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

body.dark #easy-transit-tours .et-tour-content {
  background: rgba(10, 12, 18, 0.4);
  color: rgba(235, 235, 245, 0.96);
}

body.dark #easy-transit-tours .et-tour-description {
  color: rgba(210, 215, 230, 0.9);
}

body.dark #easy-transit-tours .et-featured-banner {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

body.dark #easy-transit-tours .et-whatsapp-button {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.12);
}

/* end of stylesheet */

:root {
  --primary: white;
  --primary-dark: #09412d;
  --secondary: #f9a826;
  --light: #f8f9fa;
  --dark: #343a40;
  --success: #28a745;
  --danger: #dc3545;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fb;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1.5rem 0;
  box-shadow: var(--box-shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo i {
  color: var(--secondary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--secondary);
}

.hero {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(rgba(44, 90, 160, 0.9), rgba(44, 90, 160, 0.8)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .booking-container {
    grid-template-columns: 1fr;
  }
}

.booking-form,
.map-container {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.map-container {
  height: 500px;
  position: relative;
}

#map {
  height: 100%;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
}

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

.fare-summary {
  background: #e9f7ef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--success);
}

.fare-breakdown {
  margin-top: 1rem;
}

.fare-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.fare-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 1px solid #ddd;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  width: 100%;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: #e59400;
}

.payment-options {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.payment-options .btn {
  flex: 1;
}

footer {
  background: var(--dark);
  color: white;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
  }
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #555;
}

.children-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #856404;
}

.route-info {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: var(--border-radius);
}

.distance-info,
.duration-info {
  text-align: center;
}

.distance-info i,
.duration-info i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.info-value {
  font-weight: 700;
  font-size: 1.2rem;
}

.info-label {
  font-size: 0.9rem;
  color: #666;
}

.loading {
  display: none;
  text-align: center;
  padding: 1rem;
}

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
  text-align: center;
}

.error-message {
  display: none;
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
  text-align: center;
}

/*--------------------------------------------------------------
# WhatsApp Button - Clean Inline Responsive
--------------------------------------------------------------*/

.whatsapp-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: .3s ease;
  box-shadow:
    0 4px 15px rgba(37, 211, 102, .3),
    0 2px 8px rgba(37, 211, 102, .2);
  position: relative;
  overflow: visible;
  /* IMPORTANT: allows badge to pop outside */
  white-space: nowrap;
}

/* Badge - pops outside & bounces */
.whatsapp-badge {
  position: absolute;
  top: -14px;
  /* Push badge further OUTSIDE */
  right: -14px;
  /* Push badge further OUTSIDE */
  background: #FF4081;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 12px;
  z-index: 10;
  animation: badgeBounce 1.8s infinite ease-out;
}

/* Bounce animation: outward jump + landing */
@keyframes badgeBounce {
  0% {
    transform: translate(0, 0) scale(1);
  }

  20% {
    transform: translate(2px, -4px) scale(1.1);
  }

  40% {
    transform: translate(-1px, 2px) scale(0.95);
  }

  60% {
    transform: translate(1px, -2px) scale(1.05);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Glow Swipe */
.whatsapp-chat-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: .6s;
}

.whatsapp-chat-btn:hover::before {
  left: 120%;
}

/* Hover Motion */
.whatsapp-chat-btn:hover {
  transform: translateY(-2px);
}

/* WhatsApp Icon */
.whatsapp-chat-btn i {
  font-size: 18px;
  transition: .3s;
}

.whatsapp-chat-btn:hover i {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# RESPONSIVE HEADER ALIGNMENT
--------------------------------------------------------------*/

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

.whatsapp-chat-btn {
  order: 3;
  margin-left: auto;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .whatsapp-chat-btn {
    padding: 8px 14px;
    font-size: 13px;
    gap: 6px;
  }

  .whatsapp-chat-btn i {
    font-size: 17px;
  }

  .whatsapp-badge {
    top: -10px;
    right: -10px;
  }
}

/* Enhanced Fleet Section Styles */

.fleet-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}


/* Add a subtle background pattern */

.fleet-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(221, 149, 12, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(8, 24, 11, 0.03) 0%,
      transparent 50%
    );

  pointer-events: none;
  z-index: -1;
}


/*--------------------------------------------------------------
# Section Header
--------------------------------------------------------------*/

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #08180B;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}


/* Add decorative underline to header */

.section-header h2::after {
  content: '';

  position: absolute;

  bottom: -10px;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      #DD950C,
      #F0AA18
    );

  border-radius: 2px;
}

.section-header p {
  font-size: 1.3rem;

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 45%
    );

  max-width: 700px;

  margin: 0 auto;

  line-height: 1.7;

  font-weight: 300;
}


/*--------------------------------------------------------------
# Fleet Container
--------------------------------------------------------------*/

.fleet-container {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(320px, 1fr)
    );

  gap: 35px;

  position: relative;
}


/*--------------------------------------------------------------
# Vehicle Card
--------------------------------------------------------------*/

.vehicle-card {
  background:
    linear-gradient(
      145deg,
      #FFFFFF,
      #F8F9FA
    );

  border-radius: 20px;

  overflow: hidden;

  box-shadow:
    0 10px 30px
    rgba(0, 0, 0, 0.08),
    0 6px 20px
    rgba(8, 24, 11, 0.05);

  transition:
    all 0.5s
    cubic-bezier(
      0.175,
      0.885,
      0.32,
      1.275
    );

  cursor: pointer;

  position: relative;

  border:
    1px solid
    rgba(255, 255, 255, 0.8);
}


/* Add subtle glow effect on hover */

.vehicle-card::before {
  content: '';

  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  border-radius: 20px;

  padding: 2px;

  background:
    linear-gradient(
      135deg,
      rgba(221, 149, 12, 0.2),
      rgba(8, 24, 11, 0.2)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  opacity: 0;

  transition:
    opacity 0.4s ease;

  pointer-events: none;
}

.vehicle-card:hover::before {
  opacity: 1;
}

.vehicle-card:hover {
  transform:
    translateY(-12px)
    scale(1.02);

  box-shadow:
    0 20px 40px
    rgba(0, 0, 0, 0.15),
    0 15px 25px
    rgba(8, 24, 11, 0.10);
}

.vehicle-card.active {
  transform:
    scale(1.03);

  box-shadow:
    0 25px 50px
    rgba(0, 0, 0, 0.20),
    0 0 0 1px
    rgba(221, 149, 12, 0.10);
}


/*--------------------------------------------------------------
# Card Image
--------------------------------------------------------------*/

.card-image-container {
  height: 220px;

  overflow: hidden;

  position: relative;

  perspective: 1200px;
}


/* Add gradient overlay to images */

.card-image-container::after {
  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 40%;

  background:
    linear-gradient(
      to top,
      rgba(8, 24, 11, 0.45),
      transparent
    );

  pointer-events: none;

  opacity: 0;

  transition:
    opacity 0.4s ease;
}

.vehicle-card:hover
.card-image-container::after {
  opacity: 1;
}

.card-image {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    all 0.8s
    cubic-bezier(
      0.25,
      0.46,
      0.45,
      0.94
    );
}

.vehicle-card:hover
.card-image {
  transform:
    rotateY(15deg)
    scale(1.08);
}


/*--------------------------------------------------------------
# Card Badge
--------------------------------------------------------------*/

.card-badge {
  position: absolute;

  top: 15px;

  right: 15px;

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  color: #FFFFFF;

  padding:
    8px 16px;

  border-radius:
    25px;

  font-size:
    0.75rem;

  font-weight:
    700;

  letter-spacing:
    0.5px;

  box-shadow:
    0 4px 12px
    rgba(0, 0, 0, 0.15);

  z-index:
    2;
}


/*--------------------------------------------------------------
# Card Content
--------------------------------------------------------------*/

.card-content {
  padding: 25px;
  position: relative;
}

.vehicle-type {
  font-size: 1.6rem;

  font-weight: 700;

  margin-bottom: 12px;

  color: #08180B;

  position: relative;

  display: inline-block;
}


/* Add decorative dot after vehicle type */

.vehicle-type::after {
  content: '';

  position: absolute;

  bottom: -5px;

  left: 0;

  width: 30px;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      #DD950C,
      transparent
    );

  border-radius: 2px;
}


/*--------------------------------------------------------------
# Vehicle Specs
--------------------------------------------------------------*/

.vehicle-specs {
  display: flex;

  justify-content:
    space-between;

  margin-bottom:
    18px;

  font-size:
    0.95rem;

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 45%
    );
}

.spec-item {
  display:
    flex;

  align-items:
    center;

  gap:
    8px;

  padding:
    6px 12px;

  background:
    rgba(221, 149, 12, 0.08);

  border-radius:
    12px;

  transition:
    all 0.3s ease;
}

.spec-item:hover {
  background:
    rgba(221, 149, 12, 0.15);

  transform:
    translateY(-2px);
}

.spec-item i {
  color:
    #DD950C;

  font-size:
    1.1rem;
}


/*--------------------------------------------------------------
# Capacity
--------------------------------------------------------------*/

.capacity {
  display:
    flex;

  align-items:
    center;

  gap:
    10px;

  margin-bottom:
    20px;

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 45%
    );

  font-size:
    1rem;

  padding:
    8px 0;

  border-bottom:
    1px dashed
    rgba(221, 149, 12, 0.20);
}

.capacity i {
  color:
    #DD950C;

  font-size:
    1.2rem;
}


/*--------------------------------------------------------------
# Card Details
--------------------------------------------------------------*/

.card-details {
  max-height:
    0;

  overflow:
    hidden;

  transition:
    max-height
    0.6s
    cubic-bezier(
      0.4,
      0,
      0.2,
      1
    );

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 45%
    );

  line-height:
    1.7;

  font-size:
    0.95rem;

  position:
    relative;
}


/* Add fade-in effect for details */

.card-details::before {
  content: '';

  position:
    absolute;

  top:
    0;

  left:
    0;

  right:
    0;

  height:
    1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(221, 149, 12, 0.30),
      transparent
    );

  opacity:
    0;

  transition:
    opacity 0.3s ease 0.2s;
}

.vehicle-card.active
.card-details::before {
  opacity:
    1;
}

.vehicle-card.active
.card-details {
  max-height:
    200px;

  margin-bottom:
    25px;

  padding-top:
    15px;
}


/*--------------------------------------------------------------
# Book Button
--------------------------------------------------------------*/

.book-btn {
  width: 100%;

  padding: 14px;

  background:
    linear-gradient(
      135deg,
      #DD950C,
      #F0AA18
    );

  border:
    none;

  border-radius:
    12px;

  color:
    #FFFFFF;

  font-weight:
    700;

  font-size:
    1.05rem;

  cursor:
    pointer;

  transition:
    all 0.4s
    cubic-bezier(
      0.175,
      0.885,
      0.32,
      1.275
    );

  display:
    flex;

  justify-content:
    center;

  align-items:
    center;

  gap:
    10px;

  opacity:
    0;

  transform:
    translateY(15px);

  box-shadow:
    0 6px 20px
    rgba(221, 149, 12, 0.30);

  position:
    relative;

  overflow:
    hidden;
}


/* Add shine effect to button */

.book-btn::before {
  content:
    '';

  position:
    absolute;

  top:
    0;

  left:
    -100%;

  width:
    100%;

  height:
    100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.30),
      transparent
    );

  transition:
    left 0.6s ease;
}

.book-btn:hover::before {
  left:
    100%;
}

.vehicle-card.active
.book-btn {
  opacity:
    1;

  transform:
    translateY(0);
}

.book-btn:hover {
  background:
    linear-gradient(
      135deg,
      #B87908,
      #DD950C
    );

  transform:
    translateY(-4px);

  box-shadow:
    0 10px 25px
    rgba(221, 149, 12, 0.40);
}


/*--------------------------------------------------------------
# Enhanced Color Variations for Cards
--------------------------------------------------------------*/

.vehicle-card:nth-child(1)
.card-badge {
  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );
}

.vehicle-card:nth-child(1)
.spec-item i,

.vehicle-card:nth-child(1)
.capacity i {
  color:
    #08180B;
}


.vehicle-card:nth-child(2)
.card-badge {
  background:
    linear-gradient(
      135deg,
      #DD950C,
      #F0AA18
    );
}

.vehicle-card:nth-child(2)
.spec-item i,

.vehicle-card:nth-child(2)
.capacity i {
  color:
    #DD950C;
}


.vehicle-card:nth-child(3)
.card-badge {
  background:
    linear-gradient(
      135deg,
      #102C17,
      #08180B
    );
}

.vehicle-card:nth-child(3)
.spec-item i,

.vehicle-card:nth-child(3)
.capacity i {
  color:
    #102C17;
}


.vehicle-card:nth-child(4)
.card-badge {
  background:
    linear-gradient(
      135deg,
      #08180B,
      #DD950C
    );
}

.vehicle-card:nth-child(4)
.spec-item i,

.vehicle-card:nth-child(4)
.capacity i {
  color:
    #DD950C;
}


/*--------------------------------------------------------------
# Enhanced 3D Rotation Effect
--------------------------------------------------------------*/

.card-image-container {
  transform-style:
    preserve-3d;
}

.vehicle-card:hover
.card-image-container {
  animation:
    enhancedRotateCar
    8s
    infinite
    ease-in-out;
}


@keyframes enhancedRotateCar {

  0%,
  100% {
    transform:
      perspective(1200px)
      rotateY(0deg)
      scale(1);
  }

  25% {
    transform:
      perspective(1200px)
      rotateY(-12deg)
      scale(1.02);
  }

  50% {
    transform:
      perspective(1200px)
      rotateY(0deg)
      scale(1);
  }

  75% {
    transform:
      perspective(1200px)
      rotateY(12deg)
      scale(1.02);
  }

}


/*--------------------------------------------------------------
# View More Indicator
--------------------------------------------------------------*/

.view-more-indicator {
  position:
    absolute;

  bottom:
    15px;

  left:
    50%;

  transform:
    translateX(-50%);

  color:
    #FFFFFF;

  background:
    rgba(8, 24, 11, 0.78);

  padding:
    6px 15px;

  border-radius:
    20px;

  font-size:
    0.8rem;

  font-weight:
    600;

  opacity:
    0;

  transition:
    all 0.4s ease;

  z-index:
    2;

  backdrop-filter:
    blur(10px);

  border:
    1px solid
    rgba(221, 149, 12, 0.30);
}

.vehicle-card:hover
.view-more-indicator {
  opacity:
    1;

  transform:
    translateX(-50%)
    translateY(-5px);
}


/*--------------------------------------------------------------
# Loading Shimmer Effect
--------------------------------------------------------------*/

.card-image.loading {
  background:
    linear-gradient(
      90deg,
      #F0F0F0 25%,
      #E0E0E0 50%,
      #F0F0F0 75%
    );

  background-size:
    200% 100%;

  animation:
    loading
    1.5s
    infinite;
}


@keyframes loading {

  0% {
    background-position:
      200% 0;
  }

  100% {
    background-position:
      -200% 0;
  }

}


/*==============================================================
# ENHANCED RESPONSIVE DESIGN
==============================================================*/

@media (max-width: 1200px) {

  .fleet-container {
    grid-template-columns:
      repeat(
        auto-fit,
        minmax(300px, 1fr)
      );

    gap:
      30px;
  }

}


@media (max-width: 768px) {

  .fleet-container {
    grid-template-columns:
      1fr;

    gap:
      25px;
  }

  .section-header h2 {
    font-size:
      2.4rem;

    letter-spacing:
      2px;
  }

  .section-header p {
    font-size:
      1.1rem;
  }

  .vehicle-card:hover {
    transform:
      translateY(-8px);
  }

  .vehicle-specs {
    flex-direction:
      column;

    gap:
      10px;
  }

  .spec-item {
    justify-content:
      center;
  }

}


@media (max-width: 480px) {

  .fleet-section {
    padding:
      40px 15px;
  }

  .section-header h2 {
    font-size:
      2rem;
  }

  .card-content {
    padding:
      20px;
  }

  .vehicle-type {
    font-size:
      1.4rem;
  }

}


/*--------------------------------------------------------------
# Floating Animation
--------------------------------------------------------------*/

@keyframes float {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-10px);
  }

}

.vehicle-card:nth-child(odd) {
  animation:
    float
    6s
    ease-in-out
    infinite;
}

.vehicle-card:nth-child(even) {
  animation:
    float
    6s
    ease-in-out
    infinite
    1s;
}

/* =========================================================
   WHY CHOOSE US SECTION
   Fortune Travel & Car Rentals
   ========================================================= */


/*--------------------------------------------------------------
# View More Button
--------------------------------------------------------------*/

.view-more-btn {

  width: 100%;

  background:
    linear-gradient(
      90deg,
      #DD950C,
      #F0AA18,
      #08180B
    );

  color: #FFFFFF;

  padding: 12px 0;

  border: none;

  border-radius: 6px;

  font-size: 15px;

  cursor: pointer;

  text-align: center;

  margin: 12px 0;

  transition: 0.3s ease;

  display: block;

  box-shadow:
    0 6px 18px
    rgba(221, 149, 12, 0.15);
}


.view-more-btn:hover {

  background:
    linear-gradient(
      90deg,
      #F0AA18,
      #DD950C,
      #102C17
    );

  transform:
    translateY(-2px);

  box-shadow:
    0 10px 25px
    rgba(221, 149, 12, 0.22);
}


.view-more-btn:active {

  background:
    linear-gradient(
      90deg,
      #B87908,
      #C98508,
      #08180B
    );

  transform:
    scale(0.97);
}


/*--------------------------------------------------------------
# Why Choose Us
--------------------------------------------------------------*/

.why-choose-us {

  padding: 5rem 0;

  background:
    linear-gradient(
      135deg,
      #F8F9FA 0%,
      #FFF8E8 100%
    );
}


/*--------------------------------------------------------------
# Hero Content
--------------------------------------------------------------*/

.hero-content {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 4rem;

  align-items: center;

  margin-bottom: 5rem;
}


/*--------------------------------------------------------------
# Content Wrapper
--------------------------------------------------------------*/

.content-wrapper {

  padding-right: 2rem;
}


/*--------------------------------------------------------------
# Badge Wrapper
--------------------------------------------------------------*/

.badge-wrapper {

  margin-bottom: 1.5rem;
}


/*--------------------------------------------------------------
# Promo Badge
--------------------------------------------------------------*/

.promo-badge {

  display: inline-block;

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  color: #FFFFFF;

  padding:
    0.5rem 1.5rem;

  border-radius: 2rem;

  font-size: 0.9rem;

  font-weight: 600;

  letter-spacing: 0.5px;

  text-transform: uppercase;

  box-shadow:
    0 6px 18px
    rgba(8, 24, 11, 0.15);

  border:
    1px solid
    rgba(221, 149, 12, 0.25);
}


/*--------------------------------------------------------------
# Main Heading
--------------------------------------------------------------*/

.content-wrapper h2 {

  font-size: 2.8rem;

  color: #08180B;

  margin-bottom: 1.5rem;

  font-weight: 700;

  line-height: 1.2;
}


/* Gold Heading Accent */

.content-wrapper h2::after {

  content: "";

  display: block;

  width: 55px;

  height: 3px;

  margin-top: 12px;

  border-radius: 50px;

  background:
    linear-gradient(
      90deg,
      #DD950C,
      #F0AA18
    );
}


/*--------------------------------------------------------------
# Main Paragraph
--------------------------------------------------------------*/

.content-wrapper p {

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 30%
    );

  font-size: 1.1rem;

  line-height: 1.8;

  margin-bottom: 2.5rem;
}


/*--------------------------------------------------------------
# Action Section
--------------------------------------------------------------*/

.action-section {

  display: flex;

  flex-direction: column;

  gap: 2rem;
}


/*--------------------------------------------------------------
# Main Actions
--------------------------------------------------------------*/

.main-actions {

  display: flex;

  gap: 1rem;

  flex-wrap: wrap;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {

  padding:
    1rem 2rem;

  border-radius:
    0.5rem;

  font-weight:
    600;

  text-decoration:
    none;

  display:
    inline-flex;

  align-items:
    center;

  gap:
    0.5rem;

  transition:
    all 0.3s ease;
}


/*--------------------------------------------------------------
# Explore Button
--------------------------------------------------------------*/

.btn-explore {

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  color:
    #FFFFFF;

  border:
    none;

  box-shadow:
    0 8px 20px
    rgba(8, 24, 11, 0.15);
}


/*--------------------------------------------------------------
# Explore Button Hover
--------------------------------------------------------------*/

.btn-explore:hover {

  transform:
    translateY(-2px);

  background:
    linear-gradient(
      135deg,
      #102C17,
      #183D20
    );

  box-shadow:
    0 10px 25px
    rgba(8, 24, 11, 0.25);

  color:
    #FFFFFF;
}


/*--------------------------------------------------------------
# Deals Button
--------------------------------------------------------------*/

.btn-deals {

  background:
    transparent;

  color:
    #DD950C;

  border:
    2px solid
    #DD950C;
}


/*--------------------------------------------------------------
# Deals Button Hover
--------------------------------------------------------------*/

.btn-deals:hover {

  background:
    #DD950C;

  color:
    #FFFFFF;

  transform:
    translateY(-2px);

  box-shadow:
    0 8px 20px
    rgba(221, 149, 12, 0.20);
}


/*--------------------------------------------------------------
# Quick Contact
--------------------------------------------------------------*/

.quick-contact {

  display: flex;

  align-items: center;

  gap: 1rem;

  flex-wrap: wrap;
}


/*--------------------------------------------------------------
# Contact Label
--------------------------------------------------------------*/

.contact-label {

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 35%
    );

  font-size:
    0.9rem;
}


/*--------------------------------------------------------------
# Contact Link
--------------------------------------------------------------*/

.contact-link {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  color:
    #DD950C;

  text-decoration:
    none;

  font-weight:
    600;

  font-size:
    1.1rem;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


/*--------------------------------------------------------------
# Contact Link Hover
--------------------------------------------------------------*/

.contact-link:hover {

  color:
    #B87908;

  transform:
    translateX(3px);
}


/*--------------------------------------------------------------
# Visual Element
--------------------------------------------------------------*/

.visual-element {

  position: relative;

  border-radius:
    1rem;

  overflow: hidden;

  box-shadow:
    0 20px 40px
    rgba(8, 24, 11, 0.12);
}


/*--------------------------------------------------------------
# Hero Image
--------------------------------------------------------------*/

.hero-image {

  width: 100%;

  height: 400px;

  object-fit: cover;
}


/*--------------------------------------------------------------
# Image Overlay
--------------------------------------------------------------*/

.image-overlay {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  background:
    linear-gradient(
      transparent,
      rgba(8, 24, 11, 0.90)
    );

  padding:
    2rem;

  display: flex;

  justify-content:
    space-around;
}


/*--------------------------------------------------------------
# Stat Item
--------------------------------------------------------------*/

.stat-item {

  text-align:
    center;

  color:
    #FFFFFF;
}


/*--------------------------------------------------------------
# Stat Number
--------------------------------------------------------------*/

.stat-number {

  display:
    block;

  font-size:
    2rem;

  font-weight:
    700;

  margin-bottom:
    0.25rem;

  color:
    #F0AA18;
}


/*--------------------------------------------------------------
# Stat Label
--------------------------------------------------------------*/

.stat-label {

  font-size:
    0.9rem;

  opacity:
    0.9;

  color:
    #FFFFFF;
}


/*--------------------------------------------------------------
# Benefits Showcase
--------------------------------------------------------------*/

.benefits-showcase {

  margin-bottom:
    4rem;
}


/*--------------------------------------------------------------
# Benefits Header
--------------------------------------------------------------*/

.benefits-header {

  text-align:
    center;

  margin-bottom:
    4rem;
}


/*--------------------------------------------------------------
# Benefits Header Heading
--------------------------------------------------------------*/

.benefits-header h3 {

  font-size:
    2.5rem;

  color:
    #08180B;

  margin-bottom:
    1rem;

  font-weight:
    700;
}


/* Gold Accent */

.benefits-header h3::after {

  content:
    "";

  display:
    block;

  width:
    55px;

  height:
    3px;

  margin:
    12px auto 0;

  border-radius:
    50px;

  background:
    linear-gradient(
      90deg,
      #DD950C,
      #F0AA18
    );
}


/*--------------------------------------------------------------
# Benefits Header Paragraph
--------------------------------------------------------------*/

.benefits-header p {

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 35%
    );

  font-size:
    1.1rem;

  max-width:
    600px;

  margin:
    0 auto;
}


/*--------------------------------------------------------------
# Benefits Grid
--------------------------------------------------------------*/

.benefits-grid {

  display:
    grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(350px, 1fr)
    );

  gap:
    2rem;
}


/*--------------------------------------------------------------
# Benefit Card
--------------------------------------------------------------*/

.benefit-card {

  background:
    #FFFFFF;

  border-radius:
    1rem;

  padding:
    2rem;

  box-shadow:
    0 10px 30px
    rgba(8, 24, 11, 0.08);

  transition:
    all 0.3s ease;

  border:
    1px solid
    rgba(221, 149, 12, 0.10);
}


/*--------------------------------------------------------------
# Benefit Card Hover
--------------------------------------------------------------*/

.benefit-card:hover {

  transform:
    translateY(-10px);

  box-shadow:
    0 20px 40px
    rgba(8, 24, 11, 0.14);

  border-color:
    rgba(221, 149, 12, 0.30);
}


/*--------------------------------------------------------------
# Benefit Visual
--------------------------------------------------------------*/

.benefit-visual {

  position:
    relative;

  margin-bottom:
    1.5rem;
}


/*--------------------------------------------------------------
# Benefit Icon
--------------------------------------------------------------*/

.benefit-icon-wrap {

  width:
    70px;

  height:
    70px;

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  border-radius:
    50%;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  color:
    #FFFFFF;

  font-size:
    1.8rem;

  position:
    relative;

  z-index:
    2;

  border:
    2px solid
    rgba(221, 149, 12, 0.20);

  box-shadow:
    0 8px 20px
    rgba(8, 24, 11, 0.15);

  transition:
    all 0.3s ease;
}


/*--------------------------------------------------------------
# Benefit Icon Hover
--------------------------------------------------------------*/

.benefit-card:hover
.benefit-icon-wrap {

  background:
    linear-gradient(
      135deg,
      #DD950C,
      #F0AA18
    );

  transform:
    scale(1.05);

  box-shadow:
    0 10px 25px
    rgba(221, 149, 12, 0.22);
}


/*--------------------------------------------------------------
# Benefit Pattern
--------------------------------------------------------------*/

.benefit-pattern {

  position:
    absolute;

  top:
    -10px;

  left:
    -10px;

  width:
    90px;

  height:
    90px;

  background:
    rgba(221, 149, 12, 0.10);

  border-radius:
    50%;

  z-index:
    1;
}


/*--------------------------------------------------------------
# Benefit Content Heading
--------------------------------------------------------------*/

.benefit-content h4 {

  font-size:
    1.5rem;

  color:
    #08180B;

  margin-bottom:
    1rem;

  font-weight:
    600;

  transition:
    color 0.3s ease;
}


/*--------------------------------------------------------------
# Benefit Content Heading Hover
--------------------------------------------------------------*/

.benefit-card:hover
.benefit-content h4 {

  color:
    #DD950C;
}


/*--------------------------------------------------------------
# Benefit Content Paragraph
--------------------------------------------------------------*/

.benefit-content p {

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 35%
    );

  line-height:
    1.6;

  margin:
    0;
}


/*--------------------------------------------------------------
# Additional Features
--------------------------------------------------------------*/

.additional-features {

  background:
    #FFFFFF;

  border-radius:
    1rem;

  padding:
    3rem;

  box-shadow:
    0 10px 30px
    rgba(8, 24, 11, 0.08);

  border:
    1px solid
    rgba(221, 149, 12, 0.10);
}


/*--------------------------------------------------------------
# Features Grid
--------------------------------------------------------------*/

.features-grid {

  display:
    grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(200px, 1fr)
    );

  gap:
    1.5rem;
}


/*--------------------------------------------------------------
# Feature Item
--------------------------------------------------------------*/

.feature-item {

  display:
    flex;

  align-items:
    center;

  gap:
    1rem;

  padding:
    0.75rem;

  border-radius:
    0.5rem;

  transition:
    all 0.3s ease;
}


/*--------------------------------------------------------------
# Feature Item Hover
--------------------------------------------------------------*/

.feature-item:hover {

  background:
    #FFF8E8;

  transform:
    translateX(5px);
}


/*--------------------------------------------------------------
# Feature Icon
--------------------------------------------------------------*/

.feature-item i {

  color:
    #DD950C;

  font-size:
    1.2rem;

  transition:
    transform 0.3s ease;
}


/*--------------------------------------------------------------
# Feature Icon Hover
--------------------------------------------------------------*/

.feature-item:hover i {

  transform:
    scale(1.15);
}


/*--------------------------------------------------------------
# Feature Text
--------------------------------------------------------------*/

.feature-item span {

  color:
    #08180B;

  font-weight:
    500;
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 992px) {

  .hero-content {

    grid-template-columns:
      1fr;

    gap:
      3rem;
  }

  .content-wrapper {

    padding-right:
      0;

    text-align:
      center;
  }

  .content-wrapper h2 {

    font-size:
      2.5rem;
  }

  .content-wrapper h2::after {

    margin-left:
      auto;

    margin-right:
      auto;
  }

  .hero-image {

    height:
      350px;
  }

}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .why-choose-us {

    padding:
      3rem 0;
  }

  .benefits-grid {

    grid-template-columns:
      1fr;
  }

  .main-actions {

    justify-content:
      center;
  }

  .quick-contact {

    justify-content:
      center;

    text-align:
      center;
  }

  .content-wrapper h2 {

    font-size:
      2.2rem;
  }

  .benefits-header h3 {

    font-size:
      2rem;
  }

  .additional-features {

    padding:
      2rem;
  }

}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 480px) {

  .content-wrapper h2 {

    font-size:
      1.8rem;
  }

  .main-actions {

    flex-direction:
      column;
  }

  .btn {

    width:
      100%;

    justify-content:
      center;
  }

  .hero-image {

    height:
      300px;
  }

  .features-grid {

    grid-template-columns:
      1fr;
  }

}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/

.service-details .service-box {
  padding: 20px;

  background: #FFFFFF;

  box-shadow:
    0px 2px 20px
    rgba(8, 24, 11, 0.10);

  border-radius: 12px;
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;

  font-weight: 700;

  color: #08180B;

  border-bottom:
    2px solid
    rgba(221, 149, 12, 0.20);

  padding-bottom: 15px;

  margin-bottom: 15px;
}


/*--------------------------------------------------------------
# Services List
--------------------------------------------------------------*/

.service-details .services-list a {
  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 20%
    );

  background-color:
    rgba(8, 24, 11, 0.04);

  display: flex;

  align-items: center;

  padding: 12px 15px;

  margin-top: 15px;

  transition: 0.3s;

  border-radius: 8px;

  text-decoration: none;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;

  margin-right: 8px;

  color: #DD950C;
}

.service-details .services-list a.active {
  color: #FFFFFF;

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  box-shadow:
    0 6px 18px
    rgba(8, 24, 11, 0.15);
}

.service-details .services-list a.active i {
  color: #F0AA18;
}

.service-details .services-list a:hover {
  background-color:
    rgba(221, 149, 12, 0.08);

  color: #DD950C;

  transform: translateX(3px);
}


/*--------------------------------------------------------------
# Download Catalog
--------------------------------------------------------------*/

.service-details .download-catalog a {
  color: #08180B;

  display: flex;

  align-items: center;

  padding: 10px 0;

  transition: 0.3s;

  border-top:
    1px solid
    rgba(8, 24, 11, 0.10);

  text-decoration: none;
}

.service-details .download-catalog a:first-child {
  border-top: 0;

  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;

  margin-right: 8px;

  color: #DD950C;
}

.service-details .download-catalog a:hover {
  color: #DD950C;
}


/*--------------------------------------------------------------
# Help Box
--------------------------------------------------------------*/

.service-details .help-box {
  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  color: #FFFFFF;

  margin-top: 30px;

  padding: 30px 15px;

  border-radius: 12px;

  box-shadow:
    0 12px 30px
    rgba(8, 24, 11, 0.15);

  border:
    1px solid
    rgba(221, 149, 12, 0.20);
}

.service-details .help-box .help-icon {
  font-size: 48px;

  color: #F0AA18;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: #FFFFFF;
}


/*--------------------------------------------------------------
# Service Image
--------------------------------------------------------------*/

.service-details .services-img {
  margin-bottom: 20px;

  border-radius: 12px;

  overflow: hidden;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

.service-details h3 {
  font-size: 26px;

  font-weight: 700;

  color: #08180B;
}

.service-details p {
  font-size: 15px;

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 25%
    );
}

.service-details ul {
  list-style: none;

  padding: 0;

  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;

  display: flex;

  align-items: center;
}

.service-details ul i {
  font-size: 20px;

  margin-right: 8px;

  color: #DD950C;
}


/*==============================================================
  SERVICES HERO CAROUSEL
==============================================================*/

.services-hero-carousel {
  border-radius: 12px !important;

  overflow: hidden;

  box-shadow:
    0 10px 30px
    rgba(8, 24, 11, 0.15);

  margin-bottom: 2rem;
}

.services-hero-carousel .carousel-inner {
  border-radius: 12px;

  height: 500px;
}

.services-hero-carousel .carousel-item img {
  width: 100%;

  height: 500px;

  object-fit: cover;

  object-position: center;

  filter: brightness(0.88);
}


/*--------------------------------------------------------------
# Carousel Caption
--------------------------------------------------------------*/

.services-hero-carousel .carousel-caption {
  background:
    rgba(8, 24, 11, 0.78);

  backdrop-filter: blur(10px);

  border-radius: 10px;

  padding: 25px;

  right: 10%;

  left: 10%;

  bottom: 40px;

  text-align: center;

  border:
    1px solid
    rgba(221, 149, 12, 0.25);
}

.services-hero-carousel .carousel-caption h5 {
  font-size: 2.2rem;

  font-weight: 700;

  color: #FFFFFF;

  margin-bottom: 10px;

  text-shadow:
    2px 2px 4px
    rgba(0, 0, 0, 0.5);
}

.services-hero-carousel .carousel-caption p {
  font-size: 1.2rem;

  color:
    rgba(255, 255, 255, 0.9);

  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Carousel Indicators
--------------------------------------------------------------*/

.services-hero-carousel .carousel-indicators {
  margin-bottom: 20px;
}

.services-hero-carousel .carousel-indicators button {
  width: 12px;

  height: 12px;

  border-radius: 50%;

  border:
    2px solid
    #F0AA18;

  background-color:
    transparent;

  margin: 0 6px;

  transition:
    all 0.3s ease;
}

.services-hero-carousel .carousel-indicators button.active {
  background-color:
    #DD950C;

  border-color:
    #DD950C;

  transform:
    scale(1.2);
}


/*--------------------------------------------------------------
# Carousel Controls
--------------------------------------------------------------*/

.services-hero-carousel .carousel-control-prev,
.services-hero-carousel .carousel-control-next {
  width: 60px;

  height: 60px;

  background:
    rgba(8, 24, 11, 0.65);

  border-radius: 50%;

  top: 50%;

  transform:
    translateY(-50%);

  margin: 0 20px;

  opacity: 0;

  transition:
    opacity 0.3s ease,
    background 0.3s ease;
}

.services-hero-carousel:hover
.carousel-control-prev,
.services-hero-carousel:hover
.carousel-control-next {
  opacity: 1;
}

.services-hero-carousel
.carousel-control-prev:hover,
.services-hero-carousel
.carousel-control-next:hover {
  background:
    #DD950C;
}

.services-hero-carousel
.carousel-control-prev-icon,
.services-hero-carousel
.carousel-control-next-icon {
  width: 2rem;

  height: 2rem;
}


/*--------------------------------------------------------------
# Carousel Animation
--------------------------------------------------------------*/

.services-hero-carousel .carousel-item {
  transition:
    transform 0.8s ease-in-out;
}


/*==============================================================
  RESPONSIVE CAROUSEL
==============================================================*/

@media (max-width: 768px) {

  .services-hero-carousel .carousel-inner,
  .services-hero-carousel .carousel-item img {
    height: 350px;
  }

  .services-hero-carousel .carousel-caption {
    padding: 15px;

    bottom: 20px;
  }

  .services-hero-carousel
  .carousel-caption h5 {
    font-size: 1.5rem;
  }

  .services-hero-carousel
  .carousel-caption p {
    font-size: 1rem;
  }

  .services-hero-carousel
  .carousel-control-prev,
  .services-hero-carousel
  .carousel-control-next {
    width: 40px;

    height: 40px;

    opacity: 1;
  }

}


@media (max-width: 576px) {

  .services-hero-carousel .carousel-inner,
  .services-hero-carousel .carousel-item img {
    height: 250px;
  }

  .services-hero-carousel .carousel-caption {
    padding: 10px;

    bottom: 10px;
  }

  .services-hero-carousel
  .carousel-caption h5 {
    font-size: 1.2rem;
  }

  .services-hero-carousel
  .carousel-caption p {
    font-size: 0.9rem;
  }

}


/*==============================================================
  SERVICES SHOWCASE - E-COMMERCE STYLE
==============================================================*/

.services-showcase {
  position: sticky;

  top: 20px;
}

.showcase-card {
  background:
    linear-gradient(
      135deg,
      #FFFFFF 0%,
      #F8F9FA 100%
    );

  padding: 2.5rem;

  border-radius: 20px;

  box-shadow:
    0 20px 60px
    rgba(8, 24, 11, 0.08);

  border:
    1px solid
    rgba(221, 149, 12, 0.12);

  backdrop-filter:
    blur(10px);

  position: relative;

  overflow: hidden;
}


/*--------------------------------------------------------------
# Gradient Accent
--------------------------------------------------------------*/

.showcase-card::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 5px;

  background:
    linear-gradient(
      90deg,
      #08180B,
      #DD950C,
      #F0AA18,
      #102C17
    );

  z-index: 1;
}


/*--------------------------------------------------------------
# Floating Icon
--------------------------------------------------------------*/

.showcase-icon {
  width: 90px;

  height: 90px;

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1.5rem;

  position: relative;

  box-shadow:
    0 10px 30px
    rgba(8, 24, 11, 0.25);

  transition:
    transform 0.3s ease;

  border:
    2px solid
    rgba(221, 149, 12, 0.20);
}

.showcase-icon:hover {
  transform:
    rotate(10deg)
    scale(1.05);

  background:
    linear-gradient(
      135deg,
      #DD950C,
      #F0AA18
    );
}

.showcase-icon i {
  font-size: 2.5rem;

  color: #FFFFFF;
}


/*--------------------------------------------------------------
# Showcase Header
--------------------------------------------------------------*/

.showcase-header {
  text-align: center;

  margin-bottom: 2rem;
}

.showcase-title {
  color: #08180B;

  font-size: 2rem;

  font-weight: 800;

  margin-bottom: 0.5rem;

  background:
    linear-gradient(
      135deg,
      #08180B,
      #DD950C
    );

  -webkit-background-clip:
    text;

  -webkit-text-fill-color:
    transparent;

  background-clip:
    text;
}

.showcase-subtitle {
  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 40%
    );

  font-size: 1rem;

  font-weight: 400;

  line-height: 1.5;
}


/*==============================================================
  SERVICES GRID
==============================================================*/

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 1rem;

  margin-bottom: 2.5rem;
}


/*--------------------------------------------------------------
# Service Card
--------------------------------------------------------------*/

.service-card {
  background: #FFFFFF;

  border:
    2px solid
    #F1F3F2;

  border-radius: 15px;

  padding: 1.2rem;

  text-align: center;

  cursor: pointer;

  transition:
    all 0.3s
    cubic-bezier(
      0.4,
      0,
      0.2,
      1
    );

  position: relative;

  overflow: hidden;
}


/*--------------------------------------------------------------
# Service Card Overlay
--------------------------------------------------------------*/

.service-card::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background:
    linear-gradient(
      135deg,
      rgba(221, 149, 12, 0.08),
      rgba(8, 24, 11, 0.06)
    );

  opacity: 0;

  transition:
    opacity 0.3s ease;
}

.service-card:hover {
  transform:
    translateY(-5px);

  border-color:
    #DD950C;

  box-shadow:
    0 15px 40px
    rgba(221, 149, 12, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}


/*--------------------------------------------------------------
# Service Icon Hover
--------------------------------------------------------------*/

.service-card:hover
.service-icon {
  transform:
    scale(1.1);

  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );
}

.service-icon {
  width: 50px;

  height: 50px;

  background:
    #F8F9FA;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 0.8rem;

  transition:
    all 0.3s ease;

  position: relative;

  z-index: 2;
}

.service-icon i {
  font-size: 1.5rem;

  color: #DD950C;

  transition:
    color 0.3s ease;
}

.service-card:hover
.service-icon i {
  color: #FFFFFF;
}


/*--------------------------------------------------------------
# Service Name
--------------------------------------------------------------*/

.service-name {
  color: #08180B;

  font-size: 0.9rem;

  font-weight: 600;

  margin: 0;

  line-height: 1.2;

  transition:
    color 0.3s ease;

  position: relative;

  z-index: 2;
}

.service-card:hover
.service-name {
  color: #DD950C;
}


/*==============================================================
  MAIN CTA BUTTON
==============================================================*/

.cta-primary {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.8rem;

  background:
    linear-gradient(
      135deg,
      #DD950C,
      #F0AA18
    );

  color: #FFFFFF;

  padding: 1.3rem 2rem;

  border-radius: 15px;

  font-size: 1.1rem;

  font-weight: 700;

  text-decoration: none;

  width: 100%;

  border: none;

  transition:
    all 0.4s
    cubic-bezier(
      0.4,
      0,
      0.2,
      1
    );

  position: relative;

  overflow: hidden;

  margin-bottom: 1.5rem;

  box-shadow:
    0 10px 30px
    rgba(221, 149, 12, 0.30);
}


/*--------------------------------------------------------------
# CTA Shine
--------------------------------------------------------------*/

.cta-primary::before {
  content: '';

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
    );

  transition:
    left 0.7s ease;
}

.cta-primary:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 15px 40px
    rgba(221, 149, 12, 0.40);

  background:
    linear-gradient(
      135deg,
      #F0AA18,
      #DD950C
    );

  color:
    #FFFFFF;

  text-decoration:
    none;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:active {
  transform:
    translateY(-1px);
}

.cta-primary i {
  font-size:
    1.3rem;
}


/*==============================================================
  STATS SECTION
==============================================================*/

.stats-container {
  display: flex;

  justify-content:
    space-around;

  background:
    linear-gradient(
      135deg,
      #F8F9FA,
      #FFF8E8
    );

  padding: 1.2rem;

  border-radius: 15px;

  margin-bottom: 1.5rem;

  border:
    1px solid
    rgba(221, 149, 12, 0.12);
}

.stat-item {
  text-align:
    center;
}

.stat-number {
  display:
    block;

  font-size:
    1.8rem;

  font-weight:
    800;

  background:
    linear-gradient(
      135deg,
      #08180B,
      #DD950C
    );

  -webkit-background-clip:
    text;

  -webkit-text-fill-color:
    transparent;

  background-clip:
    text;

  line-height:
    1;

  margin-bottom:
    0.3rem;
}

.stat-label {
  font-size:
    0.75rem;

  color:
    color-mix(
      in srgb,
      #08180B,
      transparent 40%
    );

  font-weight:
    600;

  text-transform:
    uppercase;

  letter-spacing:
    0.5px;
}


/*==============================================================
  SUPPORT CTA
==============================================================*/

.support-cta {
  background:
    linear-gradient(
      135deg,
      #08180B,
      #102C17
    );

  padding:
    1.2rem;

  border-radius:
    15px;

  text-align:
    center;

  margin-top:
    1.5rem;

  position:
    relative;

  overflow:
    hidden;

  border:
    1px solid
    rgba(221, 149, 12, 0.25);
}


/*--------------------------------------------------------------
# Support Pattern
--------------------------------------------------------------*/

.support-cta::before {
  content:
    '';

  position:
    absolute;

  top:
    -50%;

  left:
    -50%;

  width:
    200%;

  height:
    200%;

  background:
    radial-gradient(
      circle,
      rgba(221, 149, 12, 0.14) 1%,
      transparent 1%
    );

  background-size:
    15px 15px;

  animation:
    floatDots 20s linear infinite;
}


@keyframes floatDots {

  0% {
    transform:
      translate(0, 0)
      rotate(0deg);
  }

  100% {
    transform:
      translate(-30px, -30px)
      rotate(360deg);
  }

}


/*--------------------------------------------------------------
# Support Text
--------------------------------------------------------------*/

.support-text {
  color:
    #FFFFFF;

  font-size:
    0.9rem;

  margin-bottom:
    0.8rem;

  font-weight:
    500;

  position:
    relative;

  z-index:
    1;
}


/*--------------------------------------------------------------
# Support Links
--------------------------------------------------------------*/

.support-links {
  display:
    flex;

  justify-content:
    center;

  gap:
    1rem;

  position:
    relative;

  z-index:
    1;
}

.support-link {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    0.5rem;

  padding:
    0.6rem 1rem;

  background:
    rgba(255, 255, 255, 0.12);

  backdrop-filter:
    blur(10px);

  color:
    #FFFFFF;

  text-decoration:
    none;

  border-radius:
    10px;

  font-size:
    0.85rem;

  font-weight:
    500;

  transition:
    all 0.3s ease;

  border:
    1px solid
    rgba(221, 149, 12, 0.30);
}

.support-link:hover {
  background:
    #DD950C;

  transform:
    translateY(-2px);

  color:
    #FFFFFF;

  text-decoration:
    none;

  box-shadow:
    0 5px 15px
    rgba(221, 149, 12, 0.25);
}

.support-link i {
  font-size:
    1rem;
}


/*==============================================================
  ANIMATIONS
==============================================================*/

@keyframes fadeInUp {

  from {
    opacity:
      0;

    transform:
      translateY(30px);
  }

  to {
    opacity:
      1;

    transform:
      translateY(0);
  }

}

.showcase-card {
  animation:
    fadeInUp
    0.8s
    cubic-bezier(
      0.4,
      0,
      0.2,
      1
    );
}


/*--------------------------------------------------------------
# Pulse Animation
--------------------------------------------------------------*/

@keyframes pulse {

  0% {
    box-shadow:
      0 10px 30px
      rgba(221, 149, 12, 0.30);
  }

  50% {
    box-shadow:
      0 10px 40px
      rgba(221, 149, 12, 0.50);
  }

  100% {
    box-shadow:
      0 10px 30px
      rgba(221, 149, 12, 0.30);
  }

}

.cta-primary {
  animation:
    pulse 2s infinite;
}


/*==============================================================
  RESPONSIVE DESIGN
==============================================================*/

@media (max-width: 1200px) {

  .services-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


@media (max-width: 992px) {

  .services-showcase {
    position:
      static;

    margin-top:
      2rem;
  }

  .showcase-card {
    padding:
      2rem;
  }

  .showcase-title {
    font-size:
      1.8rem;
  }

  .services-grid {
    gap:
      0.8rem;
  }

  .service-card {
    padding:
      1rem;
  }

}


@media (max-width: 768px) {

  .showcase-card {
    padding:
      1.5rem;

    border-radius:
      15px;
  }

  .showcase-title {
    font-size:
      1.6rem;
  }

  .services-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .showcase-icon {
    width:
      80px;

    height:
      80px;
  }

  .showcase-icon i {
    font-size:
      2rem;
  }

  .stats-container {
    flex-direction:
      column;

    gap:
      1rem;
  }

  .support-links {
    flex-direction:
      column;

    gap:
      0.8rem;
  }

}


@media (max-width: 480px) {

  .services-grid {
    grid-template-columns:
      1fr;
  }

  .showcase-title {
    font-size:
      1.4rem;
  }

  .cta-primary {
    padding:
      1rem 1.5rem;

    font-size:
      1rem;
  }

}

/* Service card hover effects */
.service-card:hover .service-icon {
  animation: bounce 0.6s ease;
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(0.95);
  }

  70% {
    transform: scale(1.05);
  }
}

/* Gradient overlay on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2ecc71, #3498db);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
}

/* Active state */
.service-card:active {
  transform: translateY(-2px) scale(0.98);
  transition: transform 0.1s ease;
}

/* Loading animation for icons */
.service-icon {
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2ecc71, #3498db, #2ecc71);
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradientMove 3s linear infinite;
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Booking Director with Video Background */
.booking-director {
  position: sticky;
  top: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Top gradient border */
.booking-director::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
      #2ecc71 0%,
      #3498db 33%,
      #1a237e 66%,
      #2ecc71 100%);
  z-index: 1;
  animation: gradientFlow 4s linear infinite;
  background-size: 200% 100%;
}

@keyframes gradientFlow {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Animated background pattern */
.booking-director::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(26, 35, 126, 0.05) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* Icon with floating animation */
.director-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2ecc71, #3498db, #1a237e);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow:
    0 15px 35px rgba(46, 204, 113, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
  animation: iconFloat 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    box-shadow:
      0 15px 35px rgba(46, 204, 113, 0.3),
      inset 0 2px 0 rgba(255, 255, 255, 0.5);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
    box-shadow:
      0 25px 45px rgba(46, 204, 113, 0.4),
      inset 0 2px 0 rgba(255, 255, 255, 0.5);
  }
}

.director-icon i {
  font-size: 2.8rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Text styles */
.director-title {
  color: #1a237e;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #1a237e 0%, #3498db 50%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.director-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Main CTA Button - Modern 3D */
.btn-director-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 50%, #1a237e 100%);
  color: white;
  padding: 1.4rem 2.5rem;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow:
    0 12px 30px rgba(46, 204, 113, 0.3),
    0 4px 0 rgba(46, 204, 113, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Button shine effect */
.btn-director-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: left 0.8s ease;
  z-index: -1;
}

.btn-director-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(46, 204, 113, 0.4),
    0 6px 0 rgba(46, 204, 113, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: white;
  text-decoration: none;
}

.btn-director-primary:hover::before {
  left: 100%;
}

.btn-director-primary:active {
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(46, 204, 113, 0.3),
    0 3px 0 rgba(46, 204, 113, 0.4);
}

.btn-director-primary i {
  font-size: 1.4rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Service Grid - 3x3 Layout */
.director-options {
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.options-label {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 3x3 Grid for 9 services */
.service-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(226, 232, 240, 0.8);
  border-radius: 14px;
  padding: 1.2rem 0.5rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

/* Top accent bar on hover */
.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2ecc71, #3498db, #1a237e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #2ecc71;
  background: white;
  box-shadow:
    0 12px 30px rgba(46, 204, 113, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-btn:hover::before {
  opacity: 1;
}

/* Service icon styling */
.service-btn i {
  font-size: 1.6rem;
  color: #3498db;
  margin-bottom: 0.6rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Create icon background circle */
.service-btn i::before {
  display: block;
  padding: 0.4rem;
}

.service-btn:hover i {
  color: white;
  transform: scale(1.15);
}

/* Create pseudo-element for icon background */
.service-btn i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2ecc71, #3498db);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.3s ease;
}

.service-btn:hover i::after {
  transform: translate(-50%, -50%) scale(1);
}

.service-btn span {
  color: #1a237e;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s ease;
  z-index: 1;
  padding: 0 0.3rem;
}

.service-btn:hover span {
  color: #2ecc71;
}

/* Trust Indicators - Modern Badges */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(241, 245, 249, 0.8);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.trust-item:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: #2ecc71;
}

.trust-item i {
  color: #2ecc71;
  font-size: 1.1rem;
}

/* Contact Prompt */
.contact-prompt {
  background: linear-gradient(135deg,
      rgba(241, 245, 249, 0.9) 0%,
      rgba(226, 232, 240, 0.8) 100%);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-prompt p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-prompt a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.contact-prompt a:hover {
  color: #2ecc71;
  text-decoration: underline;
}

.contact-prompt strong {
  color: #1a237e;
  font-weight: 700;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-director {
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes buttonPulse {

  0%,
  100% {
    box-shadow:
      0 12px 30px rgba(46, 204, 113, 0.3),
      0 4px 0 rgba(46, 204, 113, 0.4);
  }

  50% {
    box-shadow:
      0 12px 40px rgba(46, 204, 113, 0.5),
      0 4px 0 rgba(46, 204, 113, 0.5);
  }
}

.btn-director-primary {
  animation: buttonPulse 2s infinite;
}

/* Responsive adjustments - Maintain 3x3 as much as possible */
@media (max-width: 1200px) {
  .service-buttons {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }
}

@media (max-width: 992px) {
  .booking-director {
    position: static;
    margin-top: 2rem;
    padding: 2rem;
  }

  .director-title {
    font-size: 1.8rem;
  }

  .director-icon {
    width: 80px;
    height: 80px;
  }

  .director-icon i {
    font-size: 2.4rem;
  }

  /* Switch to 3x3 on tablet */
  .service-buttons {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .service-btn {
    padding: 1rem 0.4rem;
    min-height: 95px;
  }

  .service-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .service-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .booking-director {
    padding: 1.8rem;
    border-radius: 20px;
  }

  .director-title {
    font-size: 1.6rem;
  }

  .director-subtitle {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .btn-director-primary {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-radius: 14px;
  }

  /* Switch to 3x3 on mobile - compact layout */
  .service-buttons {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
  }

  .service-btn {
    padding: 0.9rem 0.3rem;
    min-height: 90px;
    border-radius: 12px;
  }

  .service-btn i {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .service-btn span {
    font-size: 0.7rem;
  }

  .trust-indicators {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }

  .trust-item {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {

  /* Switch to 3x2 on smaller mobile */
  .service-buttons {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .service-btn {
    padding: 0.8rem 0.2rem;
    min-height: 85px;
  }

  .service-btn i {
    font-size: 1.3rem;
  }

  .service-btn span {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .booking-director {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .director-title {
    font-size: 1.4rem;
  }

  .director-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .director-icon i {
    font-size: 2rem;
  }

  /* Keep 3x3 on small mobile - very compact */
  .service-buttons {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .service-btn {
    padding: 0.7rem 0.2rem;
    min-height: 80px;
    border-radius: 10px;
  }

  .service-btn i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .service-btn span {
    font-size: 0.6rem;
    line-height: 1.1;
  }

  .btn-director-primary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-prompt {
    padding: 1.2rem;
  }

  .contact-prompt p {
    font-size: 0.85rem;
  }
}

/* Extra small devices - Switch to 2xN if absolutely necessary */
@media (max-width: 360px) {
  .service-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .service-btn {
    min-height: 75px;
    padding: 0.7rem 0.3rem;
  }

  .service-btn i {
    font-size: 1.3rem;
  }

  .service-btn span {
    font-size: 0.65rem;
  }
}

/* Hover effects */
.booking-director:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Service button bounce animation */
.service-btn:hover i {
  animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconBounce {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  30% {
    transform: scale(1.2) rotate(5deg);
  }

  70% {
    transform: scale(0.95) rotate(-2deg);
  }
}

/* Add subtle background animation to service buttons */
.service-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(46, 204, 113, 0.05) 50%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-btn:hover::after {
  opacity: 1;
}

#success-btn {
  background-color: #184E3B;
}

#success-btn :hover {
  background-color: var(--accent-color);
}


/* =========================================================
   SECTOR CARD STYLES
   Fortune Travel & Car Rentals Brand Colors
   Dark Green: #08180B
   Gold:       #DD950C
   ========================================================= */

.sectors-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

.sector-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(8, 24, 11, 0.08);
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #08180B,
        #DD950C
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 24, 11, 0.14);
}

.sector-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   SECTOR ICON
   ========================================================= */

.sector-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #08180B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(8, 24, 11, 0.30);
}

.sector-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}


/* =========================================================
   SECTOR NAME
   ========================================================= */

.sector-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #08180B;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-name {
    color: #DD950C;
}


/* =========================================================
   SECTOR DESCRIPTION
   ========================================================= */

.sector-description {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 10px;
    line-height: 1.4;
}


/* =========================================================
   CATEGORY SECTION
   ========================================================= */

.category-section {
    padding: 60px 0;
    background: #ffffff;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #08180B;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: #DD950C;
    margin: 0 auto;
}

.category-subtitle {
    color: #666666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}


/* =========================================================
   BADGE
   ========================================================= */

.sector-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #DD950C;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}


/* =========================================================
   STATS SECTION
   ========================================================= */

.stats-section {
    background: linear-gradient(
        135deg,
        #08180B 0%,
        #102C17 100%
    );
    padding: 60px 0;
    color: #ffffff;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #DD950C;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 5px;
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 768px) {

    .sectors-hero h1 {
        font-size: 2.2rem;
    }

    .sectors-hero p {
        font-size: 1rem;
    }

    .sector-card {
        padding: 20px 15px;
    }

    .sector-icon {
        width: 60px;
        height: 60px;
    }

    .sector-icon i {
        font-size: 1.8rem;
    }

    .sector-name {
        font-size: 0.95rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .sectors-grid {
        padding: 50px 0;
    }

    .sector-card {
        margin-bottom: 20px;
    }

    .category-title {
        font-size: 1.3rem;
    }
}


/* =========================================================
   CARD TRANSITION
   ========================================================= */

.sector-card {
    transition: all 0.4s cubic-bezier(
        0.4,
        0,
        0.2,
        1
    );
}


/* =========================================================
   HOVER GLOW EFFECT
   ========================================================= */

.sector-card:hover .sector-icon i {
    animation: iconPulse 0.5s ease;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}


/* =========================================================
   NOTE TEXT
   ========================================================= */

.note-text {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #FFF8E8;
    border-radius: 15px;
    border-left: 4px solid #DD950C;
}

.note-text i {
    color: #DD950C;
    margin-right: 10px;
}


/* =========================================================
   GRID LAYOUT ENHANCEMENT
   ========================================================= */

.sectors-grid .row {
    margin: 0 -15px;
}


/* =========================================================
   SECTION DIVIDER
   ========================================================= */

.section-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.section-divider span {
    background: #ffffff;
    padding: 0 20px;
    color: #08180B;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dddddd;
    z-index: 0;
}

 /* =========================================================
   CTA SECTION
   Fortune Travel & Car Rentals Brand Colors
   Dark Green: #08180B
   Gold:       #DD950C
   ========================================================= */

.cta-section {
    background-color: #f8f9fa;
}


/* =========================================================
   CTA BANNER
   ========================================================= */

.cta-banner {
    background:
        linear-gradient(
            135deg,
            rgba(8, 24, 11, 0.94),
            rgba(16, 44, 23, 0.92)
        ),
        url('assets/img/cta-banner-bg.jpg') center/cover no-repeat;

    border-radius: 20px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 15px 40px rgba(8, 24, 11, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cta-banner:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(8, 24, 11, 0.30);
}


/* =========================================================
   CTA OVERLAY
   ========================================================= */

.cta-overlay {
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;

    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.35);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}


/* =========================================================
   CTA BUTTONS
   ========================================================= */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;

    transition: all 0.3s ease;

    border: none;
    min-width: 200px;
    text-align: center;
    display: inline-block;
}


/* =========================================================
   PRIMARY BUTTON — GOLD
   ========================================================= */

.cta-buttons .btn-primary {
    background:
        linear-gradient(
            135deg,
            #DD950C,
            #F0AA18
        );

    color: #ffffff;

    box-shadow:
        0 4px 15px rgba(221, 149, 12, 0.30);
}

.cta-buttons .btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            #C98508,
            #DD950C
        );

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(221, 149, 12, 0.40);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.cta-buttons .btn-secondary {
    background:
        rgba(255, 255, 255, 0.10);

    color: #ffffff;

    border:
        2px solid rgba(221, 149, 12, 0.75);

    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background:
        rgba(221, 149, 12, 0.18);

    border-color: #DD950C;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   DECORATIVE GOLD ELEMENT
   ========================================================= */

.cta-banner::before {
    content: '';

    position: absolute;

    top: -50%;
    right: -50%;

    width: 300px;
    height: 300px;

    background:
        radial-gradient(
            circle,
            rgba(221, 149, 12, 0.16) 0%,
            transparent 70%
        );

    z-index: 1;
}


/* =========================================================
   DECORATIVE GREEN ELEMENT
   ========================================================= */

.cta-banner::after {
    content: '';

    position: absolute;

    bottom: -30%;
    left: -30%;

    width: 250px;
    height: 250px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.07) 0%,
            transparent 70%
        );

    z-index: 1;
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 768px) {

    .cta-overlay {
        padding: 60px 25px;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-overlay {
        padding: 50px 20px;
    }

    .cta-buttons .btn {
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

