/**
* Template Name: Travely
* Template URL: https://bootstrapmade.com/travely-bootstrap-travel-template/
* Updated: Mar 04 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@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 - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f9fafb; /* Background color for the entire website, including individual sections */
  --default-color: #374151; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111827; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #10b981; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #10b981; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #374151; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #10b981; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9fafb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.4);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --surface-color: rgba(0, 0, 0, 0.9);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

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

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 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;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 20px;
  }

  .section-title h2:before,
  .section-title h2:after {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
  background: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 10%) 0%, color-mix(in srgb, var(--accent-color), transparent 70%) 100%), url("../img/travel/showcase-7.webp") center center no-repeat;
  background-size: cover;
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.travel-hero .hero-content .badge-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.travel-hero .hero-content .badge-tag i {
  margin-right: 6px;
}

.travel-hero .hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.travel-hero .hero-content p {
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-hero .btn-explore {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.travel-hero .btn-explore:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.travel-hero .btn-browse {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--default-color);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.travel-hero .btn-browse:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.travel-hero .search-bar {
  background-color: color-mix(in srgb, var(--surface-color), transparent 5%);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-hero .search-bar label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 6px;
}

.travel-hero .search-bar .input-icon {
  position: relative;
}

.travel-hero .search-bar .input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 1rem;
}

.travel-hero .search-bar .input-icon .form-control {
  padding-left: 40px;
}

.travel-hero .search-bar .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 11px 14px;
  height: auto;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  color: var(--default-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.travel-hero .search-bar .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
}

.travel-hero .search-bar .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.travel-hero .search-bar .btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.travel-hero .search-bar .btn-search:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.travel-hero .stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.travel-hero .stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.travel-hero .stats-row .stat-item i {
  color: var(--accent-color);
  font-size: 1.15rem;
}

.travel-hero .stats-row .stat-item strong {
  font-weight: 800;
  color: var(--default-color);
}

@media (max-width: 992px) {
  .travel-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .travel-hero .hero-content h1 {
    font-size: 3rem;
  }

  .travel-hero .stats-row {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .travel-hero {
    padding: 80px 0 50px;
  }

  .travel-hero .hero-content h1 {
    font-size: 2.25rem;
  }

  .travel-hero .hero-content h1 br {
    display: none;
  }

  .travel-hero .hero-content p {
    font-size: 1rem;
  }

  .travel-hero .hero-content .badge-tag {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .travel-hero .btn-explore,
  .travel-hero .btn-browse {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .travel-hero .d-flex {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .travel-hero .search-bar {
    padding: 20px;
    border-radius: 12px;
  }

  .travel-hero .stats-row {
    gap: 16px;
  }

  .travel-hero .stats-row .stat-item {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .intro-area {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .why-us .intro-area {
    margin-bottom: 3rem;
  }
}

.why-us .label-tag {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
}

.why-us .label-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--accent-color);
}

.why-us .label-tag-center {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.why-us .image-block {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.why-us .image-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--accent-color), transparent 40%) 100%);
  pointer-events: none;
}

.why-us .image-block img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-us .image-block .experience-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-color);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .image-block .experience-tag i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.why-us .image-block .experience-tag strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.why-us .image-block .experience-tag span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 768px) {
  .why-us .image-block img {
    height: 350px;
  }
}

.why-us .intro-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .why-us .intro-content h3 {
    font-size: 1.7rem;
  }
}

.why-us .intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
}

.why-us .highlight-points {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.why-us .highlight-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.why-us .highlight-points .point-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-us .highlight-points .point-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-us .review-strip {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
  border-radius: 60px;
}

.why-us .review-strip img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.why-us .review-strip .review-info .stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.15rem;
}

.why-us .review-strip .review-info .stars i {
  color: #f5a623;
  font-size: 0.75rem;
}

.why-us .review-strip .review-info .stars span {
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.4rem;
  color: var(--heading-color);
}

.why-us .review-strip .review-info p {
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.why-us .differentiators-area {
  padding-top: 4rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .differentiators-area .diff-header {
  margin-bottom: 3.5rem;
}

.why-us .differentiators-area .diff-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .why-us .differentiators-area .diff-header h3 {
    font-size: 1.8rem;
  }
}

.why-us .differentiators-area .diff-header p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 550px;
  margin: 0 auto;
}

.why-us .diff-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 14px;
  background: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.3s ease;
}

.why-us .diff-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .diff-card .diff-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.why-us .diff-card:hover .diff-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .diff-card .diff-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-us .diff-card .diff-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

@media (max-width: 768px) {
  .why-us .diff-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations .spot-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.featured-destinations .spot-card.spot-featured {
  height: 420px;
}

.featured-destinations .spot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-destinations .spot-card .spot-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, #000000, transparent 15%) 0%, color-mix(in srgb, #000000, transparent 70%) 40%, transparent 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.featured-destinations .spot-card .spot-tags {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.featured-destinations .spot-card .spot-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.featured-destinations .spot-card .spot-details .trip-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, #ffffff, transparent 30%);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-destinations .spot-card .spot-details .trip-count i {
  font-size: 14px;
}

.featured-destinations .spot-card .spot-details h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.featured-destinations .spot-card .spot-details p {
  color: color-mix(in srgb, #ffffff, transparent 20%);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.featured-destinations .spot-card .discover-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
  border-bottom: 1px solid color-mix(in srgb, #ffffff, transparent 50%);
  padding-bottom: 2px;
}

.featured-destinations .spot-card .discover-link i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.featured-destinations .spot-card .discover-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.featured-destinations .spot-card .discover-link:hover i {
  transform: translateX(4px);
}

.featured-destinations .spot-card:hover img {
  transform: scale(1.08);
}

.featured-destinations .spot-card:hover .spot-gradient {
  background: linear-gradient(to top, color-mix(in srgb, #000000, transparent 5%) 0%, color-mix(in srgb, #000000, transparent 50%) 50%, color-mix(in srgb, #000000, transparent 80%) 100%);
}

.featured-destinations .spot-card:hover .spot-details p {
  max-height: 60px;
  opacity: 1;
}

.featured-destinations .spot-card:hover .discover-link {
  opacity: 1;
  transform: translateY(0);
}

.featured-destinations .tag-pill {
  display: inline-block;
  background: color-mix(in srgb, #ffffff, transparent 75%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.featured-destinations .tag-pill.vibrant {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.featured-destinations .tag-pill.special {
  background: #e8593b;
  color: #ffffff;
}

.featured-destinations .help-banner {
  margin-top: 50px;
  padding: 30px 35px;
  background: var(--accent-color);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.featured-destinations .help-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: color-mix(in srgb, #ffffff, transparent 90%);
  border-radius: 50%;
  pointer-events: none;
}

.featured-destinations .help-banner .banner-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, #ffffff, transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-destinations .help-banner .banner-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.featured-destinations .help-banner .banner-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 5px;
}

.featured-destinations .help-banner .banner-text p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
}

.featured-destinations .help-banner .banner-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.featured-destinations .help-banner .action-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.featured-destinations .help-banner .action-btn.filled {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.featured-destinations .help-banner .action-btn.filled:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

.featured-destinations .help-banner .action-btn.outlined {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 40%);
}

.featured-destinations .help-banner .action-btn.outlined:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-destinations .spot-card {
    height: 280px;
  }

  .featured-destinations .spot-card.spot-featured {
    height: 280px;
  }

  .featured-destinations .spot-card .spot-details {
    padding: 18px;
  }

  .featured-destinations .spot-card .spot-details h3 {
    font-size: 18px;
  }

  .featured-destinations .spot-card .spot-details p {
    max-height: 60px;
    opacity: 1;
    font-size: 13px;
  }

  .featured-destinations .spot-card .discover-link {
    opacity: 1;
    transform: translateY(0);
  }

  .featured-destinations .help-banner {
    padding: 24px 20px;
    text-align: center;
  }

  .featured-destinations .help-banner .banner-text {
    margin-bottom: 20px;
  }

  .featured-destinations .help-banner .banner-text h4 {
    font-size: 18px;
  }

  .featured-destinations .help-banner .banner-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .featured-destinations .spot-card {
    height: 260px;
  }

  .featured-destinations .spot-card.spot-featured {
    height: 260px;
  }

  .featured-destinations .help-banner .banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .featured-destinations .help-banner .banner-actions .action-btn {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Featured Tours Section
--------------------------------------------------------------*/
.featured-tours .tour-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-tours .tour-card:hover {
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.featured-tours .tour-card:hover .tour-img-wrap img {
  transform: scale(1.08);
}

.featured-tours .tour-card:hover .book-link {
  color: var(--accent-color);
  gap: 10px;
}

.featured-tours .tour-card .tour-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
}

.featured-tours .tour-card .tour-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-tours .tour-card .tour-img-wrap .tour-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  z-index: 2;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.hot {
  background-color: #e74c3c;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.cultural {
  background-color: #8e44ad;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.limited {
  background-color: #e67e22;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.new {
  background-color: #27ae60;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.adventure {
  background-color: #d35400;
}

.featured-tours .tour-card .tour-img-wrap .tour-label.popular {
  background-color: #f1c40f;
  color: var(--default-color);
}

.featured-tours .tour-card .tour-img-wrap .tour-label.luxury {
  background-color: #9b59b6;
}

.featured-tours .tour-card .tour-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-tours .tour-card .tour-body .tour-price-tag {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.featured-tours .tour-card .tour-body h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--heading-color);
}

.featured-tours .tour-card .tour-body .tour-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.featured-tours .tour-card .tour-body .tour-meta-list li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 4px 12px;
  border-radius: 20px;
}

.featured-tours .tour-card .tour-body .tour-meta-list li i {
  color: var(--accent-color);
  font-size: 13px;
}

.featured-tours .tour-card .tour-body p {
  font-size: 13px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 16px;
  flex-grow: 1;
}

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

.featured-tours .tour-card .tour-body .tour-bottom .tour-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.featured-tours .tour-card .tour-body .tour-bottom .tour-stars i {
  color: #f39c12;
  font-size: 13px;
}

.featured-tours .tour-card .tour-body .tour-bottom .tour-stars span {
  font-size: 13px;
  font-weight: 700;
  color: var(--default-color);
  margin-left: 5px;
}

.featured-tours .tour-card .tour-body .tour-bottom .book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent-color), black 10%);
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-tours .tour-card .tour-body .tour-bottom .book-link i {
  transition: transform 0.3s ease;
}

.featured-tours .tour-card .tour-body .tour-bottom .book-link:hover {
  color: var(--accent-color);
}

.featured-tours .tour-card .tour-body .tour-bottom .book-link:hover i {
  transform: translateX(4px);
}

.featured-tours .browse-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.featured-tours .browse-all-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 55%);
}

@media (max-width: 768px) {
  .featured-tours .tour-card .tour-img-wrap {
    min-height: 220px;
  }

  .featured-tours .tour-card .tour-body {
    padding: 20px;
  }

  .featured-tours .tour-card .tour-body .tour-price-tag {
    font-size: 20px;
  }

  .featured-tours .tour-card .tour-body h5 {
    font-size: 17px;
  }

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

  .featured-tours .tour-card .tour-body .tour-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .featured-tours .tour-card .tour-img-wrap {
    min-height: 200px;
  }

  .featured-tours .tour-card .tour-body {
    padding: 16px;
  }

  .featured-tours .tour-card .tour-body .tour-meta-list {
    gap: 4px;
  }

  .featured-tours .tour-card .tour-body .tour-meta-list li {
    font-size: 11px;
    padding: 3px 10px;
  }

  .featured-tours .browse-all-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Testimonials Home Section
--------------------------------------------------------------*/
.testimonials-home {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.testimonials-home .swiper-wrapper {
  height: auto !important;
}

.testimonials-home .review-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 60px 25px 30px;
  margin-top: 45px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-home .review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials-home .reviewer-photo {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-home .reviewer-photo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials-home .review-body {
  position: relative;
  overflow: hidden;
}

.testimonials-home .review-body .quote-decor {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 80px;
  color: color-mix(in srgb, var(--accent-color), transparent 88%);
  line-height: 1;
  z-index: 0;
  transform: scale(-1, -1);
}

.testimonials-home .review-body p {
  position: relative;
  z-index: 1;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 18px;
  min-height: 80px;
}

.testimonials-home .review-body .rating {
  margin-bottom: 14px;
}

.testimonials-home .review-body .rating i {
  color: #ffc107;
  font-size: 14px;
  margin: 0 2px;
}

.testimonials-home .review-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.testimonials-home .review-body .role {
  display: inline-block;
  font-size: 13px;
  color: var(--accent-color);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testimonials-home .swiper-button-prev,
.testimonials-home .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.testimonials-home .swiper-button-prev::after,
.testimonials-home .swiper-button-next::after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 700;
}

.testimonials-home .swiper-button-prev:hover,
.testimonials-home .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.testimonials-home .swiper-button-prev:hover::after,
.testimonials-home .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

@media (max-width: 768px) {

  .testimonials-home .swiper-button-prev,
  .testimonials-home .swiper-button-next {
    display: none;
  }
}

.testimonials-home .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials-home .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonials-home .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  transform: scale(1.3);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
}

.call-to-action .cta-content .tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  padding: 6px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 4px;
}

.call-to-action .cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }
}

.call-to-action .cta-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.call-to-action .cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action .cta-actions {
    flex-direction: column;
  }
}

.call-to-action .cta-actions .btn-explore {
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.call-to-action .cta-actions .btn-explore:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-actions .btn-outline-cta {
  padding: 14px 32px;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: 600;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.call-to-action .cta-actions .btn-outline-cta:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-image {
  position: relative;
}

.call-to-action .cta-image img {
  border-radius: 16px;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .cta-image .image-accent-border {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 16px;
  z-index: -1;
}

@media (max-width: 992px) {
  .call-to-action .cta-image .image-accent-border {
    display: none;
  }
}

.call-to-action .highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 12px 12px 0;
  transition: all 0.3s ease;
}

.call-to-action .highlight-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  border-left-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.call-to-action .highlight-card .card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .highlight-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.call-to-action .highlight-card .card-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.call-to-action .highlight-card .card-text p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.5;
}

.call-to-action .counter-strip {
  margin-top: 3.5rem;
  background-color: var(--accent-color);
  border-radius: 16px;
  padding: 3rem 2rem;
}

@media (max-width: 768px) {
  .call-to-action .counter-strip {
    padding: 2rem 1rem;
  }
}

.call-to-action .counter-block {
  text-align: center;
  padding: 1rem 0;
}

.call-to-action .counter-block i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0.75rem;
  display: block;
}

.call-to-action .counter-block .counter-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .call-to-action .counter-block .counter-number {
    font-size: 1.8rem;
  }
}

.call-to-action .counter-block .counter-text {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-mosaic {
  position: relative;
  padding-bottom: 2rem;
}

.about .image-mosaic img {
  border-radius: 12px;
  object-fit: cover;
  height: 280px;
  width: 100%;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .image-mosaic .experience-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
  z-index: 2;
}

.about .image-mosaic .experience-badge .badge-number {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1;
}

.about .image-mosaic .experience-badge .badge-text {
  font-size: 0.8rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about .image-mosaic {
    margin-bottom: 2rem;
  }
}

.about .about-content .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.about .about-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--accent-color);
}

.about .about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

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

.about .about-content .intro {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about .about-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 0.95rem;
}

.about .stats-banner {
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  background: var(--accent-color);
  border-radius: 16px;
  padding: 0.5rem 0;
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .stats-banner .stat-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  position: relative;
}

.about .stats-banner .stat-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.about .stats-banner .stat-block i {
  font-size: 1.75rem;
  color: var(--contrast-color);
  opacity: 0.8;
}

.about .stats-banner .stat-block .stat-info {
  display: flex;
  flex-direction: column;
}

.about .stats-banner .stat-block .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

.about .stats-banner .stat-block .stat-desc {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .stats-banner .col-md-3:last-child .stat-block::after {
  display: none;
}

@media (max-width: 768px) {
  .about .stats-banner .stat-block {
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }

  .about .stats-banner .stat-block i {
    font-size: 1.25rem;
  }

  .about .stats-banner .stat-block .stat-value {
    font-size: 1.25rem;
  }

  .about .stats-banner .stat-block::after {
    display: none;
  }
}

.about .capability-card {
  display: flex;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.about .capability-card .card-accent {
  width: 5px;
  min-height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.about .capability-card .card-body-inner {
  padding: 1.75rem 1.5rem;
}

.about .capability-card .card-body-inner i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.about .capability-card .card-body-inner h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.about .capability-card .card-body-inner p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .capability-card:hover .card-accent {
  background: var(--accent-color);
  width: 6px;
}

.about .capability-card:hover .card-body-inner i {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }

  .about .stats-banner {
    margin-top: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Travel Destinations Section
--------------------------------------------------------------*/
.travel-destinations .tabs-bar {
  margin-bottom: 40px;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-destinations .tabs-bar .region-filters {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

@media (max-width: 768px) {
  .travel-destinations .tabs-bar .region-filters {
    flex-wrap: wrap;
  }
}

.travel-destinations .tabs-bar .region-filters li {
  position: relative;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .travel-destinations .tabs-bar .region-filters li {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.travel-destinations .tabs-bar .region-filters li::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.travel-destinations .tabs-bar .region-filters li:hover {
  color: var(--accent-color);
}

.travel-destinations .tabs-bar .region-filters li.filter-active {
  color: var(--accent-color);
}

.travel-destinations .tabs-bar .region-filters li.filter-active::after {
  transform: scaleX(1);
}

.travel-destinations .places-grid .place-card {
  background: var(--surface-color);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.travel-destinations .places-grid .place-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-destinations .places-grid .place-card:hover .card-image img {
  transform: scale(1.08);
}

.travel-destinations .places-grid .place-card .card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

@media (max-width: 768px) {
  .travel-destinations .places-grid .place-card .card-image {
    height: 190px;
  }
}

.travel-destinations .places-grid .place-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-destinations .places-grid .place-card .card-image .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
}

.travel-destinations .places-grid .place-card .card-image .card-badge.highlight {
  background: color-mix(in srgb, #e74c3c, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-image .card-badge.trending {
  background: color-mix(in srgb, #2ecc71, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-image .card-badge.wilderness {
  background: color-mix(in srgb, #e67e22, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-image .card-badge.explorer {
  background: color-mix(in srgb, #3498db, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-image .card-badge.premier {
  background: color-mix(in srgb, #9b59b6, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-image .card-badge.heritage {
  background: color-mix(in srgb, #1abc9c, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-image .card-badge.exotic {
  background: color-mix(in srgb, #e91e63, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-image .card-badge.coastal {
  background: color-mix(in srgb, #00bcd4, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-image .card-badge.spiritual {
  background: color-mix(in srgb, #ff9800, transparent 10%);
}

.travel-destinations .places-grid .place-card .card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.travel-destinations .places-grid .place-card .card-body .location-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.travel-destinations .places-grid .place-card .card-body .location-label i {
  color: var(--accent-color);
  font-size: 16px;
}

.travel-destinations .places-grid .place-card .card-body .location-label span {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.travel-destinations .places-grid .place-card .card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
  flex: 1;
}

.travel-destinations .places-grid .place-card .card-body .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 14px;
}

.travel-destinations .places-grid .place-card .card-body .card-meta .tours-badge {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.travel-destinations .places-grid .place-card .card-body .card-meta .tours-badge i {
  font-size: 14px;
  color: var(--accent-color);
}

.travel-destinations .places-grid .place-card .card-body .card-meta .starting-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-color);
}

.travel-destinations .places-grid .place-card .card-body .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.travel-destinations .places-grid .place-card .card-body .card-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.travel-destinations .places-grid .place-card .card-body .card-link:hover {
  color: color-mix(in srgb, var(--accent-color), var(--default-color) 20%);
}

.travel-destinations .places-grid .place-card .card-body .card-link:hover i {
  transform: translateX(4px);
}

.travel-destinations .cta-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--default-color) 25%));
  border-radius: 16px;
  padding: 40px 44px;
}

@media (max-width: 768px) {
  .travel-destinations .cta-banner {
    padding: 30px 24px;
  }
}

.travel-destinations .cta-banner .cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .travel-destinations .cta-banner .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

.travel-destinations .cta-banner .cta-content>i {
  font-size: 48px;
  color: var(--contrast-color);
  opacity: 0.85;
  flex-shrink: 0;
}

.travel-destinations .cta-banner .cta-content h4 {
  color: var(--contrast-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

.travel-destinations .cta-banner .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.travel-destinations .cta-banner .btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--contrast-color);
  color: var(--accent-color);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.travel-destinations .cta-banner .btn-browse:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 70%);
}

.travel-destinations .cta-banner .btn-browse i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.travel-destinations .cta-banner .btn-browse:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Travel Destination Details Section
--------------------------------------------------------------*/
.travel-destination-details .hero-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 100px;
}

.travel-destination-details .hero-banner img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .travel-destination-details .hero-banner img {
    height: 380px;
  }
}

.travel-destination-details .hero-banner .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 50px;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 10%), transparent);
}

@media (max-width: 768px) {
  .travel-destination-details .hero-banner .hero-overlay {
    padding: 40px 25px;
  }
}

.travel-destination-details .hero-banner .hero-overlay .hero-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.travel-destination-details .hero-banner .hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .travel-destination-details .hero-banner .hero-overlay h1 {
    font-size: 2.25rem;
  }
}

.travel-destination-details .hero-banner .hero-overlay p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.travel-destination-details .place-overview {
  margin-bottom: 100px;
}

.travel-destination-details .place-overview .overview-img {
  position: relative;
}

.travel-destination-details .place-overview .overview-img img {
  border-radius: 12px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .travel-destination-details .place-overview .overview-img img {
    height: 280px;
  }
}

.travel-destination-details .place-overview .overview-img .img-accent {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 12px;
  z-index: -1;
}

@media (max-width: 992px) {
  .travel-destination-details .place-overview .overview-img .img-accent {
    display: none;
  }
}

.travel-destination-details .place-overview .overview-text {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .travel-destination-details .place-overview .overview-text {
    padding-left: 0;
    margin-top: 20px;
  }
}

.travel-destination-details .place-overview .overview-text h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
}

.travel-destination-details .place-overview .overview-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .travel-destination-details .place-overview .overview-text h2 {
    font-size: 1.875rem;
  }
}

.travel-destination-details .place-overview .overview-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
}

.travel-destination-details .place-overview .overview-text .overview-stats {
  display: flex;
  gap: 40px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
  .travel-destination-details .place-overview .overview-text .overview-stats {
    gap: 25px;
  }
}

.travel-destination-details .place-overview .overview-text .overview-stats .stat-item {
  text-align: center;
}

.travel-destination-details .place-overview .overview-text .overview-stats .stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.travel-destination-details .place-overview .overview-text .overview-stats .stat-item span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.travel-destination-details .top-attractions {
  margin-bottom: 100px;
}

.travel-destination-details .top-attractions .attractions-header {
  margin-bottom: 60px;
}

.travel-destination-details .top-attractions .attractions-header h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .travel-destination-details .top-attractions .attractions-header h2 {
    font-size: 1.875rem;
  }
}

.travel-destination-details .top-attractions .attractions-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 550px;
}

.travel-destination-details .top-attractions .attraction-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.travel-destination-details .top-attractions .attraction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-destination-details .top-attractions .attraction-card .attraction-img {
  overflow: hidden;
  height: 100%;
}

.travel-destination-details .top-attractions .attraction-card .attraction-img img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-destination-details .top-attractions .attraction-card:hover .attraction-img img {
  transform: scale(1.05);
}

.travel-destination-details .top-attractions .attraction-card .attraction-body {
  padding: 28px;
}

.travel-destination-details .top-attractions .attraction-card .attraction-body .attraction-number {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.travel-destination-details .top-attractions .attraction-card .attraction-body h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.travel-destination-details .top-attractions .attraction-card .attraction-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.travel-destination-details .tour-packages {
  margin-bottom: 100px;
}

.travel-destination-details .tour-packages .packages-header {
  margin-bottom: 50px;
}

.travel-destination-details .tour-packages .packages-header h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .travel-destination-details .tour-packages .packages-header h2 {
    font-size: 1.875rem;
  }
}

.travel-destination-details .tour-packages .packages-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .tour-packages .packages-header .view-all-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.travel-destination-details .tour-packages .packages-header .view-all-link:hover {
  gap: 14px;
}

@media (max-width: 992px) {
  .travel-destination-details .tour-packages .packages-header .view-all-link {
    margin-top: 10px;
  }
}

.travel-destination-details .tour-packages .swiper-wrapper {
  height: auto !important;
}

.travel-destination-details .tour-packages .package-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.travel-destination-details .tour-packages .package-card .package-img {
  position: relative;
  overflow: hidden;
}

.travel-destination-details .tour-packages .package-card .package-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-destination-details .tour-packages .package-card .package-img:hover img {
  transform: scale(1.08);
}

.travel-destination-details .tour-packages .package-card .package-img .package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.travel-destination-details .tour-packages .package-card .package-body {
  padding: 25px;
}

.travel-destination-details .tour-packages .package-card .package-body .package-duration {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.travel-destination-details .tour-packages .package-card .package-body .package-duration i {
  font-size: 0.9rem;
}

.travel-destination-details .tour-packages .package-card .package-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.travel-destination-details .tour-packages .package-card .package-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}

.travel-destination-details .tour-packages .package-card .package-body .package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-destination-details .tour-packages .package-card .package-body .package-footer .package-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
}

.travel-destination-details .tour-packages .package-card .package-body .package-footer .package-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.travel-destination-details .tour-packages .package-card .package-body .package-footer .package-rating i {
  color: #f5a623;
}

.travel-destination-details .tour-packages .package-card .package-body .package-link {
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.travel-destination-details .tour-packages .package-card .package-body .package-link:hover {
  gap: 10px;
}

.travel-destination-details .tour-packages .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.travel-destination-details .essential-details {
  margin-bottom: 100px;
}

.travel-destination-details .essential-details .details-header {
  margin-bottom: 60px;
}

.travel-destination-details .essential-details .details-header h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .travel-destination-details .essential-details .details-header h2 {
    font-size: 1.875rem;
  }
}

.travel-destination-details .essential-details .details-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .essential-details .detail-box {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--accent-color);
}

.travel-destination-details .essential-details .detail-box:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-destination-details .essential-details .detail-box .detail-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.travel-destination-details .essential-details .detail-box .detail-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.travel-destination-details .essential-details .detail-box h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.travel-destination-details .essential-details .detail-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.travel-destination-details .photo-showcase {
  margin-bottom: 100px;
}

.travel-destination-details .photo-showcase .showcase-header {
  margin-bottom: 60px;
}

.travel-destination-details .photo-showcase .showcase-header h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .travel-destination-details .photo-showcase .showcase-header h2 {
    font-size: 1.875rem;
  }
}

.travel-destination-details .photo-showcase .showcase-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .photo-showcase .showcase-item {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.travel-destination-details .photo-showcase .showcase-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .travel-destination-details .photo-showcase .showcase-item img {
    height: 200px;
  }
}

.travel-destination-details .photo-showcase .showcase-item.wide img {
  height: 280px;
}

@media (max-width: 768px) {
  .travel-destination-details .photo-showcase .showcase-item.wide img {
    height: 200px;
  }
}

.travel-destination-details .photo-showcase .showcase-item .showcase-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.travel-destination-details .photo-showcase .showcase-item .showcase-overlay i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.travel-destination-details .photo-showcase .showcase-item:hover img {
  transform: scale(1.08);
}

.travel-destination-details .photo-showcase .showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.travel-destination-details .action-banner {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 16px;
  padding: 60px 50px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .travel-destination-details .action-banner {
    padding: 40px 30px;
  }
}

.travel-destination-details .action-banner .banner-text h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .travel-destination-details .action-banner .banner-text h2 {
    font-size: 1.75rem;
  }
}

.travel-destination-details .action-banner .banner-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

.travel-destination-details .action-banner .banner-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .travel-destination-details .action-banner .banner-actions {
    flex-direction: row;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .travel-destination-details .action-banner .banner-actions {
    flex-direction: column;
  }
}

.travel-destination-details .action-banner .banner-actions .action-btn {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.travel-destination-details .action-banner .banner-actions .action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.travel-destination-details .action-banner .banner-actions .action-btn.primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.travel-destination-details .action-banner .banner-actions .action-btn.secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.travel-destination-details .action-banner .banner-actions .action-btn.secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .travel-destination-details .action-banner .banner-actions .action-btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.travel-tours .intro-block .intro-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.travel-tours .intro-block .intro-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--accent-color);
}

.travel-tours .intro-block .intro-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .travel-tours .intro-block .intro-heading {
    font-size: 2rem;
  }
}

.travel-tours .intro-block .intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.travel-tours .search-wrapper {
  width: 100%;
  max-width: 420px;
}

@media (max-width: 992px) {
  .travel-tours .search-wrapper {
    max-width: 100%;
  }
}

.travel-tours .search-wrapper .input-group {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.travel-tours .search-wrapper .input-group:focus-within {
  border-color: var(--accent-color);
}

.travel-tours .search-wrapper .input-group .input-group-text {
  background: transparent;
  border: none;
  padding-left: 1.25rem;
  color: var(--accent-color);
  font-size: 1.125rem;
}

.travel-tours .search-wrapper .input-group .form-control {
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--default-color);
  padding: 0.875rem 0.5rem;
}

.travel-tours .search-wrapper .input-group .form-control:focus {
  box-shadow: none;
}

.travel-tours .search-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.travel-tours .search-wrapper .input-group .search-action {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 0 1.25rem;
  font-size: 1.125rem;
  transition: background 0.3s ease;
  border-radius: 0;
}

.travel-tours .search-wrapper .input-group .search-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}

.travel-tours .tag-filters {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.travel-tours .tag-filters .tag-filter {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 0.625rem 1.375rem;
  border-radius: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.travel-tours .tag-filters .tag-filter:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.travel-tours .tag-filters .tag-filter.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-tours .spotlight-tour {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 450px;
}

.travel-tours .spotlight-tour>img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .travel-tours .spotlight-tour>img {
    height: 550px;
  }
}

.travel-tours .spotlight-tour .spotlight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, color-mix(in srgb, #000, transparent 10%), color-mix(in srgb, #000, transparent 50%) 50%, transparent);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-tours .spotlight-tour .spotlight-overlay {
    padding: 2rem;
  }
}

.travel-tours .spotlight-tour .spotlight-overlay .spotlight-label {
  display: inline-block;
  background: var(--accent-color);
  padding: 0.375rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.travel-tours .spotlight-tour .spotlight-overlay h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .travel-tours .spotlight-tour .spotlight-overlay h3 {
    font-size: 1.75rem;
  }
}

.travel-tours .spotlight-tour .spotlight-overlay p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 1.25rem;
  max-width: 600px;
}

.travel-tours .spotlight-tour .spotlight-overlay .spotlight-info {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .spotlight-tour .spotlight-overlay .spotlight-info span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.travel-tours .spotlight-tour .spotlight-overlay .spotlight-info span i {
  font-size: 1rem;
  color: var(--accent-color);
}

.travel-tours .spotlight-tour .spotlight-overlay .spotlight-bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.travel-tours .spotlight-tour .spotlight-overlay .spotlight-bottom .spotlight-price small {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.travel-tours .spotlight-tour .spotlight-overlay .spotlight-bottom .spotlight-price strong {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
}

.travel-tours .spotlight-btn {
  background: var(--contrast-color);
  color: var(--default-color);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .spotlight-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, #000, transparent 70%);
  color: var(--default-color);
}

.travel-tours .block-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.travel-tours .theme-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.travel-tours .theme-card:hover img {
  transform: scale(1.08);
}

.travel-tours .theme-card:hover .theme-label {
  background: color-mix(in srgb, #000, transparent 30%);
}

.travel-tours .theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.travel-tours .theme-card .theme-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, color-mix(in srgb, #000, transparent 20%), transparent);
  transition: background 0.3s ease;
}

.travel-tours .theme-card .theme-label h5 {
  color: var(--contrast-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.travel-tours .theme-card .theme-label span {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-size: 0.85rem;
}

.travel-tours .listings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.travel-tours .listings-header .block-heading {
  margin-bottom: 0;
}

.travel-tours .listings-header .sort-options .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  font-size: 0.9rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  min-width: 200px;
}

.travel-tours .listings-header .sort-options .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.travel-tours .trip-card {
  background: var(--surface-color);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  height: 100%;
}

.travel-tours .trip-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tours .trip-card:hover .trip-thumbnail img {
  transform: scale(1.05);
}

.travel-tours .trip-card .trip-thumbnail {
  position: relative;
  overflow: hidden;
  height: 100%;
}

@media (max-width: 768px) {
  .travel-tours .trip-card .trip-thumbnail {
    height: 200px;
  }
}

.travel-tours .trip-card .trip-thumbnail img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.travel-tours .trip-card .trip-thumbnail .trip-status {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.travel-tours .trip-card .trip-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.travel-tours .trip-card .trip-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.travel-tours .trip-card .trip-info p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.travel-tours .trip-card .trip-info .trip-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.travel-tours .trip-card .trip-info .trip-meta span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.travel-tours .trip-card .trip-info .trip-meta span i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.travel-tours .trip-card .trip-info .trip-footer {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1rem;
}

.travel-tours .trip-card .trip-info .trip-footer .trip-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.travel-tours .trip-card .trip-info .trip-footer .trip-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.travel-tours .promo-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
}

.travel-tours .promo-banner>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.travel-tours .promo-banner .promo-overlay {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, transparent 30%, color-mix(in srgb, #000, transparent 20%));
}

.travel-tours .promo-banner .promo-overlay .promo-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.travel-tours .promo-banner .promo-overlay h4 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.travel-tours .promo-banner .promo-overlay p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 1rem;
}

.travel-tours .promo-banner .promo-overlay .promo-deadline {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.travel-tours .promo-btn {
  display: inline-block;
  background: var(--contrast-color);
  color: var(--default-color);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
}

.travel-tours .promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, #000, transparent 70%);
  color: var(--default-color);
}

.travel-tours .consult-banner {
  background: var(--accent-color);
  border-radius: 20px;
  padding: 3.5rem;
}

@media (max-width: 768px) {
  .travel-tours .consult-banner {
    padding: 2.5rem 2rem;
  }
}

.travel-tours .consult-banner .consult-content i {
  font-size: 2.5rem;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  display: block;
  opacity: 0.8;
}

.travel-tours .consult-banner .consult-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .travel-tours .consult-banner .consult-content h3 {
    font-size: 1.5rem;
  }
}

.travel-tours .consult-banner .consult-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 0;
}

.travel-tours .consult-banner .consult-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .travel-tours .consult-banner .consult-actions {
    margin-top: 2rem;
  }
}

.travel-tours .primary-action {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, #000, transparent 70%);
  color: var(--accent-color);
}

.travel-tours .secondary-action {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .secondary-action:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-color: var(--contrast-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Travel Tour Details Section
--------------------------------------------------------------*/
.travel-tour-details .hero-split {
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .travel-tour-details .hero-split {
    margin-bottom: 60px;
  }
}

.travel-tour-details .hero-split .hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.travel-tour-details .hero-split .hero-visual img {
  width: 100%;
  border-radius: 16px;
}

.travel-tour-details .hero-split .hero-visual .badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.travel-tour-details .hero-split .hero-visual .badge-overlay .tour-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.travel-tour-details .hero-split .hero-info {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .travel-tour-details .hero-split .hero-info {
    padding-right: 0;
    margin-top: 32px;
  }
}

.travel-tour-details .hero-split .hero-info h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .travel-tour-details .hero-split .hero-info h1 {
    font-size: 2.2rem;
  }
}

.travel-tour-details .hero-split .hero-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 28px;
}

.travel-tour-details .hero-split .hero-info .meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.travel-tour-details .hero-split .hero-info .meta-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.travel-tour-details .hero-split .hero-info .meta-chips .chip i {
  font-size: 0.9rem;
}

.travel-tour-details .overview-block {
  margin-bottom: 90px;
}

@media (max-width: 992px) {
  .travel-tour-details .overview-block {
    margin-bottom: 70px;
  }
}

.travel-tour-details .overview-block .overview-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.travel-tour-details .overview-block .overview-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 32px;
}

.travel-tour-details .overview-block .overview-text .feature-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.travel-tour-details .overview-block .overview-text .feature-box:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.travel-tour-details .overview-block .overview-text .feature-box i {
  font-size: 1.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.travel-tour-details .overview-block .overview-text .feature-box span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
}

.travel-tour-details .overview-block .price-panel {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
}

@media (max-width: 992px) {
  .travel-tour-details .overview-block .price-panel {
    margin-top: 40px;
  }
}

.travel-tour-details .overview-block .price-panel .price-tag {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.travel-tour-details .overview-block .price-panel .price-value {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 8px;
}

.travel-tour-details .overview-block .price-panel .price-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 28px;
}

.travel-tour-details .overview-block .price-panel .btn-book {
  display: inline-block;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.travel-tour-details .overview-block .price-panel .btn-book:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.travel-tour-details .overview-block .price-panel .trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
  font-size: 0.82rem;
  opacity: 0.85;
}

.travel-tour-details .itinerary-block {
  margin-bottom: 90px;
}

@media (max-width: 992px) {
  .travel-tour-details .itinerary-block {
    margin-bottom: 70px;
  }
}

.travel-tour-details .itinerary-block>h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
}

.travel-tour-details .itinerary-block .accordion {
  max-width: 900px;
  margin: 0 auto;
}

.travel-tour-details .itinerary-block .accordion-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--surface-color);
}

.travel-tour-details .itinerary-block .accordion-item .accordion-header {
  margin: 0;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-button {
  background: var(--surface-color);
  color: var(--default-color);
  padding: 20px 28px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: none;
  display: flex;
  gap: 16px;
  align-items: center;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.travel-tour-details .itinerary-block .accordion-item .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-button .day-num {
  font-weight: 700;
  color: var(--accent-color);
  min-width: 52px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-button .day-title {
  flex-grow: 1;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-button .day-location {
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-button .day-location i {
  font-size: 0.8rem;
}

@media (max-width: 576px) {
  .travel-tour-details .itinerary-block .accordion-item .accordion-button .day-location {
    display: none;
  }
}

.travel-tour-details .itinerary-block .accordion-item .accordion-body {
  padding: 0 28px 24px 28px;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-body .day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.travel-tour-details .itinerary-block .accordion-item .accordion-body .day-tags span {
  font-size: 0.75rem;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.travel-tour-details .inclusions-grid {
  margin-bottom: 90px;
}

@media (max-width: 992px) {
  .travel-tour-details .inclusions-grid {
    margin-bottom: 70px;
  }
}

.travel-tour-details .inclusions-grid .inc-card {
  padding: 36px;
  border-radius: 16px;
  height: 100%;
}

.travel-tour-details .inclusions-grid .inc-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.travel-tour-details .inclusions-grid .inc-card h3 i {
  font-size: 1.2rem;
}

.travel-tour-details .inclusions-grid .inc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.travel-tour-details .inclusions-grid .inc-card ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-tour-details .inclusions-grid .inc-card ul li:last-child {
  border-bottom: none;
}

.travel-tour-details .inclusions-grid .inc-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.travel-tour-details .inclusions-grid .inc-card.included {
  background: color-mix(in srgb, #28a745, transparent 94%);
  border: 1px solid color-mix(in srgb, #28a745, transparent 80%);
}

.travel-tour-details .inclusions-grid .inc-card.included h3 {
  color: #1e7e34;
}

.travel-tour-details .inclusions-grid .inc-card.included h3 i {
  color: #28a745;
}

.travel-tour-details .inclusions-grid .inc-card.included ul li::before {
  background: #28a745;
}

.travel-tour-details .inclusions-grid .inc-card.excluded {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-tour-details .inclusions-grid .inc-card.excluded h3 i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-tour-details .inclusions-grid .inc-card.excluded ul li::before {
  background: color-mix(in srgb, var(--default-color), transparent 60%);
}

.travel-tour-details .booking-block {
  margin-bottom: 90px;
}

@media (max-width: 992px) {
  .travel-tour-details .booking-block {
    margin-bottom: 70px;
  }
}

.travel-tour-details .booking-block>h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.travel-tour-details .booking-block .departure-cards {
  margin-bottom: 60px;
}

.travel-tour-details .booking-block .dep-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.travel-tour-details .booking-block .dep-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.travel-tour-details .booking-block .dep-card .dep-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 6px;
}

.travel-tour-details .booking-block .dep-card .dep-dates {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.travel-tour-details .booking-block .dep-card .dep-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 12px;
}

.travel-tour-details .booking-block .dep-card .dep-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.travel-tour-details .booking-block .dep-card .dep-status.open {
  background: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
}

.travel-tour-details .booking-block .dep-card .dep-status.few {
  background: color-mix(in srgb, #ffc107, transparent 75%);
  color: #856404;
}

.travel-tour-details .booking-block .inquiry-form-wrap {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  padding: 40px;
}

@media (max-width: 768px) {
  .travel-tour-details .booking-block .inquiry-form-wrap {
    padding: 28px;
  }
}

.travel-tour-details .booking-block .inquiry-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.travel-tour-details .booking-block .inquiry-form-wrap label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.travel-tour-details .booking-block .inquiry-form-wrap .form-control {
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: border-color 0.3s ease;
}

.travel-tour-details .booking-block .inquiry-form-wrap .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.travel-tour-details .booking-block .inquiry-form-wrap .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.travel-tour-details .booking-block .inquiry-form-wrap .btn-send {
  display: block;
  width: 100%;
  margin-top: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.travel-tour-details .booking-block .inquiry-form-wrap .btn-send:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.travel-tour-details .photo-gallery {
  margin-bottom: 90px;
}

@media (max-width: 992px) {
  .travel-tour-details .photo-gallery {
    margin-bottom: 70px;
  }
}

.travel-tour-details .photo-gallery>h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
}

.travel-tour-details .photo-gallery .gallery-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.travel-tour-details .photo-gallery .gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.travel-tour-details .photo-gallery .gallery-item .gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.travel-tour-details .photo-gallery .gallery-item .gallery-hover i {
  color: var(--contrast-color);
  font-size: 1.6rem;
}

.travel-tour-details .photo-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

.travel-tour-details .photo-gallery .gallery-item:hover .gallery-hover {
  opacity: 1;
}

.travel-tour-details .bottom-cta .cta-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.travel-tour-details .bottom-cta .cta-inner .cta-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay {
  position: relative;
  z-index: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
  padding: 80px 60px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-tour-details .bottom-cta .cta-inner .cta-overlay {
    padding: 60px 30px;
  }
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .travel-tour-details .bottom-cta .cta-inner .cta-overlay h2 {
    font-size: 2rem;
  }
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay p {
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 36px;
  opacity: 0.9;
  line-height: 1.6;
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay .cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay .cta-buttons .btn-cta-primary,
.travel-tour-details .bottom-cta .cta-inner .cta-overlay .cta-buttons .btn-cta-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay .cta-buttons .btn-cta-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay .cta-buttons .btn-cta-primary:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay .cta-buttons .btn-cta-secondary {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.travel-tour-details .bottom-cta .cta-inner .cta-overlay .cta-buttons .btn-cta-secondary:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Travel Booking Section
--------------------------------------------------------------*/
.travel-booking .trip-overview {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .travel-booking .trip-overview {
    position: static;
  }
}

.travel-booking .trip-overview .overview-hero {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.travel-booking .trip-overview .overview-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-booking .trip-overview .overview-hero .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px 20px;
  background: linear-gradient(to top, color-mix(in srgb, #000000, transparent 15%), transparent);
  color: #fff;
}

.travel-booking .trip-overview .overview-hero .hero-overlay .tour-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.travel-booking .trip-overview .overview-hero .hero-overlay h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.travel-booking .trip-overview .overview-hero .hero-overlay p {
  color: color-mix(in srgb, #ffffff, transparent 20%);
  font-size: 13px;
  margin-bottom: 6px;
}

.travel-booking .trip-overview .overview-hero .hero-overlay .star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.travel-booking .trip-overview .overview-hero .hero-overlay .star-rating i {
  color: #ffc107;
  font-size: 12px;
}

.travel-booking .trip-overview .overview-hero .hero-overlay .star-rating span {
  margin-left: 6px;
  color: color-mix(in srgb, #ffffff, transparent 30%);
  font-size: 12px;
}

.travel-booking .trip-overview .overview-body {
  padding: 25px;
}

.travel-booking .trip-overview .trip-details {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-booking .trip-overview .trip-details .detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.travel-booking .trip-overview .trip-details .detail-item:last-child {
  margin-bottom: 0;
}

.travel-booking .trip-overview .trip-details .detail-item .label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.travel-booking .trip-overview .trip-details .detail-item .value {
  color: var(--heading-color);
  font-weight: 600;
}

.travel-booking .trip-overview .cost-summary {
  margin-bottom: 20px;
}

.travel-booking .trip-overview .cost-summary h6 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.travel-booking .trip-overview .cost-summary .cost-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
}

.travel-booking .trip-overview .cost-summary .cost-line span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.travel-booking .trip-overview .cost-summary .cost-line span:last-child {
  color: var(--heading-color);
  font-weight: 500;
}

.travel-booking .trip-overview .cost-summary .cost-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 2px solid var(--accent-color);
  font-weight: 700;
  font-size: 17px;
  color: var(--heading-color);
}

.travel-booking .trip-overview .trust-badges {
  display: flex;
  gap: 15px;
  padding: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 10px;
}

.travel-booking .trip-overview .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 500;
}

.travel-booking .trip-overview .trust-badges .badge-item i {
  color: var(--accent-color);
  font-size: 15px;
}

.travel-booking .assistance-box {
  display: flex;
  gap: 15px;
  padding: 20px 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-booking .assistance-box>i {
  font-size: 28px;
  color: var(--accent-color);
  margin-top: 2px;
}

.travel-booking .assistance-box .assistance-content h6 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.travel-booking .assistance-box .assistance-content p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  margin-bottom: 8px;
}

.travel-booking .assistance-box .assistance-content a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.travel-booking .assistance-box .assistance-content a:last-child {
  margin-bottom: 0;
}

.travel-booking .step-card {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: box-shadow 0.3s ease;
}

.travel-booking .step-card:hover {
  box-shadow: 0 6px 25px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-booking .step-card:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .travel-booking .step-card {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}

.travel-booking .step-card .step-indicator {
  flex-shrink: 0;
}

.travel-booking .step-card .step-indicator .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--heading-font);
}

.travel-booking .step-card .step-body {
  flex: 1;
  min-width: 0;
}

.travel-booking .step-card .step-body h4 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.travel-booking .step-card .step-body>p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  margin-bottom: 22px;
}

.travel-booking .field-group {
  margin-bottom: 5px;
}

.travel-booking .field-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.travel-booking .field-group .form-control,
.travel-booking .field-group .form-select {
  padding: 11px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.travel-booking .field-group .form-control:focus,
.travel-booking .field-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 92%);
  outline: none;
}

.travel-booking .field-group .form-control::placeholder,
.travel-booking .field-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.travel-booking .enhancement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.travel-booking .enhancement-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.travel-booking .enhancement-card .enhancement-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.travel-booking .enhancement-card .enhancement-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.travel-booking .enhancement-card .enhancement-info {
  margin-bottom: 16px;
}

.travel-booking .enhancement-card .enhancement-info strong {
  display: block;
  color: var(--heading-color);
  font-size: 15px;
  margin-bottom: 6px;
}

.travel-booking .enhancement-card .enhancement-info p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.travel-booking .enhancement-card .enhancement-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.travel-booking .enhancement-card .enhancement-action .enhancement-price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 15px;
}

.travel-booking .enhancement-card .enhancement-action input[type=checkbox] {
  display: none;
}

.travel-booking .enhancement-card .enhancement-action .toggle-label {
  position: relative;
  display: block;
  width: 44px;
  height: 24px;
  background-color: color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.travel-booking .enhancement-card .enhancement-action .toggle-label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background-color: var(--contrast-color);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.travel-booking .enhancement-card .enhancement-action input[type=checkbox]:checked+.toggle-label {
  background-color: var(--accent-color);
}

.travel-booking .enhancement-card .enhancement-action input[type=checkbox]:checked+.toggle-label::after {
  transform: translateX(20px);
}

.travel-booking .pay-method-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.travel-booking .pay-method-tabs .pay-tab {
  flex: 1;
  min-width: 100px;
}

.travel-booking .pay-method-tabs .pay-tab input[type=radio] {
  display: none;
}

.travel-booking .pay-method-tabs .pay-tab label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all 0.3s ease;
}

.travel-booking .pay-method-tabs .pay-tab label i {
  font-size: 18px;
}

.travel-booking .pay-method-tabs .pay-tab.active label,
.travel-booking .pay-method-tabs .pay-tab input[type=radio]:checked+label {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-booking .card-fields {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 50%);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 18px;
}

.travel-booking .encryption-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.travel-booking .encryption-note i {
  color: var(--accent-color);
  font-size: 18px;
}

.travel-booking .agreement-checks {
  margin-bottom: 25px;
}

.travel-booking .agreement-checks .form-check {
  margin-bottom: 14px;
}

.travel-booking .agreement-checks .form-check .form-check-input {
  accent-color: var(--accent-color);
  margin-top: 3px;
}

.travel-booking .agreement-checks .form-check .form-check-label {
  font-size: 14px;
  cursor: pointer;
}

.travel-booking .agreement-checks .form-check .form-check-label a {
  color: var(--accent-color);
  font-weight: 600;
}

.travel-booking .agreement-checks .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.travel-booking .submit-area {
  text-align: center;
  padding-top: 10px;
}

.travel-booking .submit-area .btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 50px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.travel-booking .submit-area .btn-reserve:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.travel-booking .submit-area .btn-reserve i {
  font-size: 20px;
}

.travel-booking input[type=text],
.travel-booking input[type=email],
.travel-booking input[type=tel],
.travel-booking input[type=date],
.travel-booking select,
.travel-booking textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 82%);
}

.travel-booking input[type=text]:focus,
.travel-booking input[type=email]:focus,
.travel-booking input[type=tel]:focus,
.travel-booking input[type=date]:focus,
.travel-booking select:focus,
.travel-booking textarea:focus {
  border-color: var(--accent-color);
}

.travel-booking input[type=text]::placeholder,
.travel-booking input[type=email]::placeholder,
.travel-booking input[type=tel]::placeholder,
.travel-booking input[type=date]::placeholder,
.travel-booking select::placeholder,
.travel-booking textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery .photo-card a {
  display: block;
  position: relative;
}

.gallery .photo-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery .photo-card.wide img {
  aspect-ratio: 16/9;
}

.gallery .photo-card .card-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 20%) 0%, color-mix(in srgb, var(--default-color), transparent 80%) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .photo-card .card-hover .expand-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: translateY(20px);
  transition: transform 0.4s ease, background 0.3s ease;
}

.gallery .photo-card .card-hover .expand-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}

.gallery .photo-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.gallery .photo-card:hover img {
  transform: scale(1.06);
}

.gallery .photo-card:hover .card-hover {
  opacity: 1;
}

.gallery .photo-card:hover .card-hover .expand-btn {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery .photo-card.wide img {
    aspect-ratio: 4/3;
  }

  .gallery .photo-card .card-hover .expand-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
  line-height: 1;
}

.blog-hero .highlight-article {
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding-bottom: 2.5rem;
}

.blog-hero .highlight-article .highlight-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.blog-hero .highlight-article .highlight-body {
  padding: 1.5rem 2.5rem 1.5rem 0;
}

.blog-hero .highlight-article .meta-info {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.blog-hero .highlight-article .meta-info .separator {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.75rem;
}

.blog-hero .highlight-article .meta-info .timestamp {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-hero .highlight-article .headline {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-hero .highlight-article .headline a {
  color: var(--heading-color);
}

.blog-hero .highlight-article .headline a:hover {
  color: var(--accent-color);
}

.blog-hero .highlight-article .summary {
  font-size: 1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
}

.blog-hero .highlight-article .byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-hero .highlight-article .byline .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-hero .highlight-article .byline .author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--heading-color);
  display: block;
}

.blog-hero .highlight-article .byline .author-name:hover {
  color: var(--accent-color);
}

.blog-hero .highlight-article .byline .read-time {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-hero .highlight-article .byline .read-time i {
  margin-right: 0.25rem;
}

@media (max-width: 992px) {
  .blog-hero .highlight-article .highlight-image img {
    height: 320px;
  }

  .blog-hero .highlight-article .highlight-body {
    padding: 1.5rem 0 0;
  }

  .blog-hero .highlight-article .headline {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .blog-hero .highlight-article .highlight-image img {
    height: 260px;
  }

  .blog-hero .highlight-article .headline {
    font-size: 1.5rem;
  }
}

.blog-hero .editorial-card {
  position: relative;
  background-color: var(--surface-color);
  border-top: 3px solid var(--accent-color);
  height: 100%;
  transition: box-shadow 0.3s;
}

.blog-hero .editorial-card .card-number {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 2.25rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 1;
}

.blog-hero .editorial-card .card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-hero .editorial-card .card-body {
  padding: 1.25rem;
}

.blog-hero .editorial-card .card-headline {
  font-size: 1.0625rem;
  line-height: 1.45;
  margin: 0.5rem 0 0.75rem;
}

.blog-hero .editorial-card .card-headline a {
  color: var(--heading-color);
}

.blog-hero .editorial-card .card-headline a:hover {
  color: var(--accent-color);
}

.blog-hero .editorial-card .byline {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-hero .editorial-card .byline span {
  margin-right: 0.2rem;
}

.blog-hero .editorial-card .byline a {
  color: var(--accent-color);
  font-weight: 500;
}

.blog-hero .editorial-card:hover {
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {
  .blog-hero .editorial-card .card-image img {
    height: 200px;
  }
}

.blog-hero .tabbed-news {
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding-top: 2rem;
}

.blog-hero .tabbed-news .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  gap: 0;
}

.blog-hero .tabbed-news .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.blog-hero .tabbed-news .nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: transparent;
  transition: 0.3s;
}

.blog-hero .tabbed-news .nav-tabs .nav-link:hover {
  color: var(--accent-color);
  border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.blog-hero .tabbed-news .nav-tabs .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.blog-hero .tabbed-news .tab-content {
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .blog-hero .tabbed-news .nav-tabs .nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.8125rem;
  }
}

.blog-hero .list-article {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-hero .list-article:first-child {
  padding-top: 0;
}

.blog-hero .list-article:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-hero .list-article img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}

.blog-hero .list-article h4 {
  font-size: 0.9375rem;
  line-height: 1.45;
  margin: 0.4rem 0 0.5rem;
}

.blog-hero .list-article h4 a {
  color: var(--heading-color);
}

.blog-hero .list-article h4 a:hover {
  color: var(--accent-color);
}

.blog-hero .list-article .byline {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-hero .list-article .byline a {
  color: var(--accent-color);
  font-weight: 500;
}

.blog-hero .list-article .byline .timestamp::before {
  content: "•";
  margin: 0 0.4rem;
}

@media (max-width: 768px) {
  .blog-hero .list-article img {
    height: 75px;
  }

  .blog-hero .list-article h4 {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts {
  /* Featured Post */
  /* Secondary Post */
  /* Compact Posts */
}

.blog-posts .category-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-posts .post-meta {
  margin-bottom: 10px;
}

.blog-posts .post-meta span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-right: 18px;
}

.blog-posts .post-meta span i {
  color: var(--accent-color);
  margin-right: 5px;
  font-size: 14px;
}

.blog-posts .readmore {
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.blog-posts .readmore i {
  margin-left: 6px;
  transition: 0.3s;
}

.blog-posts .featured-post {
  border-radius: 12px;
  overflow: hidden;
}

.blog-posts .featured-post .featured-img {
  height: 100%;
}

.blog-posts .featured-post .featured-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-posts .featured-post .featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, color-mix(in srgb, #000, transparent 15%) 0%, transparent 100%);
}

.blog-posts .featured-post .featured-content .post-title {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
}

.blog-posts .featured-post .featured-content .post-meta {
  margin-bottom: 8px;
}

.blog-posts .featured-post .featured-content .post-meta span {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-posts .featured-post .featured-content .post-meta span i {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.blog-posts .featured-post .featured-content .readmore {
  color: var(--contrast-color);
  margin-top: 6px;
}

.blog-posts .featured-post .featured-content .readmore:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.blog-posts .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.blog-posts .featured-post:hover .readmore i {
  margin-left: 10px;
}

.blog-posts .secondary-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 4px solid var(--accent-color);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-posts .secondary-post .secondary-img {
  overflow: hidden;
  flex-shrink: 0;
}

.blog-posts .secondary-post .secondary-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-posts .secondary-post .secondary-content {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-posts .secondary-post .secondary-content .post-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--heading-color);
  margin-bottom: 14px;
  transition: 0.3s;
}

.blog-posts .secondary-post .secondary-content .readmore {
  color: var(--accent-color);
  margin-top: auto;
}

.blog-posts .secondary-post:hover {
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.blog-posts .secondary-post:hover .secondary-img img {
  transform: scale(1.05);
}

.blog-posts .secondary-post:hover .secondary-content .post-title {
  color: var(--accent-color);
}

.blog-posts .secondary-post:hover .readmore i {
  margin-left: 10px;
}

.blog-posts .compact-post {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-posts .compact-post .compact-img {
  position: relative;
  overflow: hidden;
}

.blog-posts .compact-post .compact-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-posts .compact-post .compact-img .category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  margin-bottom: 0;
}

.blog-posts .compact-post .compact-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-posts .compact-post .compact-content .post-meta {
  margin-bottom: 8px;
}

.blog-posts .compact-post .compact-content .post-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--heading-color);
  margin-bottom: 14px;
  transition: 0.3s;
}

.blog-posts .compact-post .compact-content .readmore {
  color: var(--accent-color);
  font-size: 13px;
  margin-top: auto;
}

.blog-posts .compact-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
}

.blog-posts .compact-post:hover .compact-img img {
  transform: scale(1.08);
}

.blog-posts .compact-post:hover .compact-content .post-title {
  color: var(--accent-color);
}

.blog-posts .compact-post:hover .readmore i {
  margin-left: 10px;
}

@media (max-width: 992px) {
  .blog-posts .featured-post .featured-img img {
    min-height: 350px;
  }

  .blog-posts .featured-post .featured-content {
    padding: 28px;
  }

  .blog-posts .featured-post .featured-content .post-title {
    font-size: 20px;
  }

  .blog-posts .secondary-post .secondary-img img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .blog-posts .featured-post .featured-img img {
    min-height: 280px;
  }

  .blog-posts .featured-post .featured-content {
    padding: 20px;
  }

  .blog-posts .featured-post .featured-content .post-title {
    font-size: 18px;
  }

  .blog-posts .compact-post .compact-img img {
    height: 160px;
  }
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  padding-bottom: 30px;
}

.pagination-2 .pagination-wrapper {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  padding: 20px 28px;
}

.pagination-2 .results-info {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: center;
}

@media (min-width: 768px) {
  .pagination-2 .results-info {
    text-align: left;
  }
}

.pagination-2 .results-info strong {
  color: var(--default-color);
  font-weight: 600;
}

.pagination-2 .page-nav {
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .pagination-2 .page-nav {
    margin-top: 0;
  }
}

.pagination-2 .nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pagination-2 .nav-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pagination-2 .nav-btn i {
  font-size: 13px;
}

.pagination-2 .page-numbers {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.pagination-2 .page-numbers li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}

.pagination-2 .page-numbers li a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.pagination-2 .page-numbers li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.pagination-2 .page-numbers .ellipsis span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  letter-spacing: 2px;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details .featured-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.blog-details .featured-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-details .featured-media:hover img {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .blog-details .featured-media img {
    height: 300px;
  }
}

.blog-details .post-header .post-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.blog-details .post-header .post-badges .badge-category {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.35rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.blog-details .post-header .post-badges .badge-category:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
}

.blog-details .post-header .post-badges .badge-time {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .post-header .post-badges .badge-time i {
  margin-right: 0.25rem;
}

.blog-details .post-header .post-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .blog-details .post-header .post-title {
    font-size: 1.8rem;
  }
}

.blog-details .post-header .writer-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.blog-details .post-header .writer-bar .writer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.blog-details .post-header .writer-bar .writer-meta h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.blog-details .post-header .writer-bar .writer-meta span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .post-header .date-bar {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.blog-details .post-header .date-bar i {
  margin-right: 0.25rem;
}

.blog-details .post-header .date-bar .dot-separator {
  margin: 0 0.6rem;
}

.blog-details .post-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .post-body .intro-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.blog-details .post-body h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 2.5rem 0 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.blog-details .post-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.blog-details .post-body p {
  margin-bottom: 1.5rem;
}

.blog-details .post-body ul {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
}

.blog-details .post-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}

.blog-details .post-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.blog-details .post-body .inline-figure {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 88%);
}

.blog-details .post-body .inline-figure img {
  width: 100%;
  height: auto;
}

.blog-details .post-body .inline-figure figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  font-style: italic;
}

.blog-details .post-body .callout-panel {
  background-color: var(--surface-color);
  border-left: 5px solid var(--accent-color);
  border-radius: 0 12px 12px 0;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .post-body .callout-panel .callout-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.blog-details .post-body .callout-panel .callout-header i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.blog-details .post-body .callout-panel .callout-header h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--heading-color);
}

.blog-details .post-body .callout-panel .callout-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .post-body .callout-panel .callout-items li {
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-details .post-body .callout-panel .callout-items li::before {
  display: none;
}

.blog-details .post-body .callout-panel .callout-items li:last-child {
  border-bottom: none;
}

.blog-details .post-body .callout-panel .callout-items li i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-right: 0.85rem;
  min-width: 24px;
}

.blog-details .post-body .callout-panel .callout-items li span {
  font-weight: 500;
  color: var(--heading-color);
  font-size: 1rem;
}

.blog-details .post-body blockquote {
  margin: 2.5rem 0;
  padding: 2rem;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  background: transparent;
  text-align: center;
}

.blog-details .post-body blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.blog-details .post-body blockquote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.blog-details .post-body .stat-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.blog-details .post-body .stat-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-details .post-body .stat-card i {
  font-size: 2rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 1rem;
}

.blog-details .post-body .stat-card h4 {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.blog-details .post-body .stat-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-details .post-sidebar {
  position: sticky;
  top: 100px;
}

.blog-details .post-sidebar .sidebar-author-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.blog-details .post-sidebar .sidebar-author-card .sidebar-author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.blog-details .post-sidebar .sidebar-author-card h4 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
  color: var(--heading-color);
}

.blog-details .post-sidebar .sidebar-author-card .sidebar-author-role {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.blog-details .post-sidebar .sidebar-author-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.blog-details .post-sidebar .sidebar-section {
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.blog-details .post-sidebar .sidebar-section h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.blog-details .post-sidebar .sidebar-section .topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .post-sidebar .sidebar-section .topic-tags .topic-tag {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .post-sidebar .sidebar-section .topic-tags .topic-tag:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .post-sidebar .sidebar-section .share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-details .post-sidebar .sidebar-section .share-buttons .share-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .post-sidebar .sidebar-section .share-buttons .share-btn i {
  font-size: 1.1rem;
}

.blog-details .post-sidebar .sidebar-section .share-buttons .share-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .blog-details .post-sidebar {
    position: static;
  }
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author .profile-wrapper {
  background-color: var(--surface-color);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  overflow: hidden;
}

.blog-author .profile-side {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 30%));
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  height: 100%;
  overflow: hidden;
}

.blog-author .profile-side .banner-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--contrast-color), transparent 85%) 0%, transparent 50%), radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 40%);
}

.blog-author .profile-side .profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px color-mix(in srgb, #000, transparent 70%);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.blog-author .profile-side .profile-avatar:hover {
  transform: scale(1.05);
}

.blog-author .profile-side .profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author .profile-side .profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.25rem 0 0;
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.blog-author .profile-side .profile-tags {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.blog-author .profile-side .profile-tags .tag-item {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
}

.blog-author .profile-side .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.blog-author .profile-side .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-author .profile-side .social-icons a:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .blog-author .profile-side {
    padding: 2rem 1.5rem;
  }
}

.blog-author .profile-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (max-width: 992px) {
  .blog-author .profile-body {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .blog-author .profile-body {
    padding: 1.5rem 1.25rem;
  }
}

.blog-author .profile-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.blog-author .stats-row {
  margin-top: 1.75rem !important;
}

.blog-author .stats-row .stat-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 12px;
  padding: 1.25rem 0.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-author .stats-row .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-author .stats-row .stat-card i {
  font-size: 1.25rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-author .stats-row .stat-card .stat-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.blog-author .stats-row .stat-card .stat-text {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.2rem;
}

.blog-author .profile-actions {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-author .profile-actions .btn-reach-out {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 2rem;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.blog-author .profile-actions .btn-reach-out:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .discussion-panel {
  max-width: 100%;
}

.blog-comments .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
  padding: 20px 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.blog-comments .panel-header .header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-comments .panel-header .header-left i {
  font-size: 26px;
  color: var(--accent-color);
}

.blog-comments .panel-header .header-left h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .blog-comments .panel-header .header-left h3 {
    font-size: 28px;
  }
}

.blog-comments .panel-header .response-badge {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .blog-comments .panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }
}

.blog-comments .discussion-entry {
  display: flex;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.blog-comments .discussion-entry:not(.reply-entry) {
  margin-top: 30px;
}

.blog-comments .discussion-entry:not(.reply-entry):first-child {
  margin-top: 0;
}

.blog-comments .discussion-entry .entry-accent {
  width: 4px;
  min-height: 100%;
  background: var(--accent-color);
  border-radius: 4px 0 0 4px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.blog-comments .discussion-entry:hover .entry-accent {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 20%);
}

.blog-comments .discussion-entry .entry-body {
  flex: 1;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 22px 25px;
  transition: all 0.3s ease;
}

.blog-comments .discussion-entry:hover .entry-body {
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comments .discussion-entry.reply-entry .entry-accent {
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.blog-comments .discussion-entry.reply-entry .entry-body {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.blog-comments .discussion-entry.reply-entry:hover .entry-accent {
  background: var(--accent-color);
}

.blog-comments .entry-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.blog-comments .entry-meta .entry-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .entry-meta .entry-avatar {
    width: 52px;
    height: 52px;
  }
}

.blog-comments .entry-meta .entry-avatar:hover {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

.blog-comments .entry-meta .meta-details {
  flex: 1;
}

.blog-comments .entry-meta .meta-details .author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 2px;
  font-family: var(--heading-font);
}

.blog-comments .entry-meta .meta-details .post-time {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-comments .entry-meta .meta-details .post-time i {
  font-size: 12px;
}

.blog-comments .vote-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.blog-comments .vote-counter .vote-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 0;
  line-height: 1;
  transition: all 0.3s ease;
}

.blog-comments .vote-counter .vote-btn i {
  font-size: 22px;
}

.blog-comments .vote-counter .vote-btn.upvote:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.blog-comments .vote-counter .vote-btn.downvote:hover {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transform: translateY(2px);
}

.blog-comments .vote-counter .vote-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.blog-comments .entry-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 16px;
}

.blog-comments .entry-toolbar {
  display: flex;
  gap: 8px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-top: 14px;
}

.blog-comments .entry-toolbar .tool-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 5px 14px;
  border-radius: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .entry-toolbar .tool-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.blog-comments .entry-toolbar .tool-btn:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.blog-comments .entry-toolbar .tool-btn:hover i {
  transform: scale(1.15);
}

.blog-comments .nested-replies {
  margin-left: 40px;
  padding-left: 20px;
  border-left: 2px dashed color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 15px;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .blog-comments .nested-replies {
    margin-left: 55px;
    padding-left: 30px;
  }
}

.blog-comments .nested-replies .discussion-entry.reply-entry {
  margin-bottom: 15px;
}

.blog-comments .nested-replies .discussion-entry.reply-entry:last-child {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .blog-comments .entry-body {
    padding: 16px 18px;
  }

  .blog-comments .entry-meta {
    gap: 10px;
  }

  .blog-comments .entry-meta .meta-details .author-name {
    font-size: 14px;
  }

  .blog-comments .entry-meta .meta-details .post-time {
    font-size: 12px;
  }

  .blog-comments .entry-text p {
    font-size: 14px;
  }

  .blog-comments .entry-toolbar {
    flex-wrap: wrap;
    gap: 6px;
  }

  .blog-comments .entry-toolbar .tool-btn {
    padding: 4px 10px;
    font-size: 12px;
  }

  .blog-comments .entry-toolbar .tool-btn span {
    display: none;
  }

  .blog-comments .nested-replies {
    margin-left: 20px;
    padding-left: 14px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form .comment-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-comment-form .info-panel {
  background: var(--accent-color);
  padding: 50px 40px;
  display: flex;
  align-items: center;
}

.blog-comment-form .info-panel .info-content {
  text-align: center;
  width: 100%;
}

.blog-comment-form .info-panel .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.blog-comment-form .info-panel .icon-wrap i {
  font-size: 30px;
  color: var(--contrast-color);
}

.blog-comment-form .info-panel h3 {
  color: var(--contrast-color);
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 700;
}

.blog-comment-form .info-panel p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.blog-comment-form .info-panel .decorative-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.blog-comment-form .info-panel .decorative-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.blog-comment-form .info-panel .decorative-dots span:nth-child(2) {
  width: 32px;
  border-radius: 4px;
  background: var(--contrast-color);
}

.blog-comment-form .form-panel {
  background-color: var(--surface-color);
  padding: 50px 40px;
}

.blog-comment-form .form-panel .required-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 24px;
  font-style: italic;
}

.blog-comment-form .input-box {
  position: relative;
}

.blog-comment-form .input-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  z-index: 2;
  transition: color 0.3s;
}

.blog-comment-form .input-box.textarea-box i {
  top: 18px;
  transform: none;
}

.blog-comment-form .input-box:focus-within i {
  color: var(--accent-color);
}

.blog-comment-form .input-box .form-control {
  padding: 14px 16px 14px 46px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
}

.blog-comment-form .input-box .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  outline: none;
}

.blog-comment-form .input-box .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.blog-comment-form .input-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.blog-comment-form .input-box textarea.form-control {
  height: auto;
  min-height: 130px;
  resize: vertical;
}

.blog-comment-form .btn-post {
  padding: 13px 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.blog-comment-form .btn-post i {
  font-size: 15px;
  transition: transform 0.3s;
}

.blog-comment-form .btn-post:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.blog-comment-form .btn-post:hover i {
  transform: translateX(4px);
}

.blog-comment-form .btn-post:active {
  transform: scale(0.98);
}

@media (max-width: 992px) {
  .blog-comment-form .info-panel {
    padding: 40px 30px;
  }

  .blog-comment-form .form-panel {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .blog-comment-form .form-panel {
    padding: 28px 20px;
  }

  .blog-comment-form .info-panel {
    padding: 30px 20px;
  }

  .blog-comment-form .btn-post {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Slider Testimonials Section
--------------------------------------------------------------*/
.slider-testimonials {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  position: relative;
  overflow: hidden;
  /* Left Sidebar */
  /* Testimonials Carousel */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.slider-testimonials::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  pointer-events: none;
}

.slider-testimonials::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.slider-testimonials .testimonials-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.slider-testimonials .testimonials-sidebar .avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.slider-testimonials .testimonials-sidebar .avatar-stack .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-testimonials .testimonials-sidebar .avatar-stack .avatar:first-child {
  margin-left: 0;
}

.slider-testimonials .testimonials-sidebar .avatar-stack .avatar:hover {
  transform: scale(1.1) translateY(-4px);
  z-index: 5;
}

.slider-testimonials .testimonials-sidebar .avatar-stack .avatar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  margin-left: -12px;
  border: 3px solid var(--surface-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  margin-bottom: 24px;
}

.slider-testimonials .testimonials-sidebar .sidebar-content .satisfied-badge i {
  font-size: 12px;
}

.slider-testimonials .testimonials-sidebar .sidebar-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.slider-testimonials .testimonials-sidebar .sidebar-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.slider-testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.slider-testimonials .testimonials-sidebar .sidebar-content .btn-view-all i {
  transition: transform 0.3s ease;
}

.slider-testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.slider-testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover i {
  transform: translateX(5px);
}

.slider-testimonials .testimonials-carousel {
  padding-bottom: 60px;
}

.slider-testimonials .testimonials-carousel .swiper-wrapper {
  height: auto !important;
}

.slider-testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.slider-testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #9333ea 40%));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slider-testimonials .testimonial-card:hover::before {
  opacity: 1;
}

.slider-testimonials .testimonial-card:hover .quote-mark {
  transform: scale(1.15);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.slider-testimonials .testimonial-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.slider-testimonials .testimonial-card .card-top .stars {
  display: flex;
  gap: 4px;
}

.slider-testimonials .testimonial-card .card-top .stars i {
  color: #f59e0b;
  font-size: 16px;
}

.slider-testimonials .testimonial-card .card-top .quote-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.slider-testimonials .testimonial-card .card-top .quote-mark i {
  font-size: 22px;
}

.slider-testimonials .testimonial-card .testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 28px;
  position: relative;
}

.slider-testimonials .testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.slider-testimonials .testimonial-card .author-info .author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.slider-testimonials .testimonial-card .author-info .author-details h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px;
}

.slider-testimonials .testimonial-card .author-info .author-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.slider-testimonials .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.slider-testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.slider-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent-color);
}

@media (max-width: 1199px) {
  .slider-testimonials .testimonials-sidebar {
    padding-right: 24px;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 28px;
  }

  .slider-testimonials .testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .slider-testimonials .testimonials-sidebar {
    padding-right: 0;
    padding-bottom: 48px;
    text-align: center;
  }

  .slider-testimonials .testimonials-sidebar .avatar-stack {
    justify-content: center;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 26px;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {

  .slider-testimonials .testimonials-sidebar .avatar-stack .avatar,
  .slider-testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 42px;
    height: 42px;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 24px;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content p {
    font-size: 15px;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
    padding: 12px 28px;
    font-size: 14px;
  }

  .slider-testimonials .testimonial-card {
    padding: 24px;
  }

  .slider-testimonials .testimonial-card .card-top .stars i {
    font-size: 14px;
  }

  .slider-testimonials .testimonial-card .card-top .quote-mark {
    width: 40px;
    height: 40px;
  }

  .slider-testimonials .testimonial-card .card-top .quote-mark i {
    font-size: 18px;
  }

  .slider-testimonials .testimonial-card .testimonial-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .slider-testimonials .testimonial-card .author-info {
    gap: 12px;
    padding-top: 16px;
  }

  .slider-testimonials .testimonial-card .author-info .author-img {
    width: 46px;
    height: 46px;
  }

  .slider-testimonials .testimonial-card .author-info .author-details h5 {
    font-size: 15px;
  }

  .slider-testimonials .testimonial-card .author-info .author-details span {
    font-size: 13px;
  }

  .slider-testimonials .testimonials-carousel {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {

  .slider-testimonials::before,
  .slider-testimonials::after {
    display: none;
  }

  .slider-testimonials .testimonials-sidebar {
    padding-bottom: 40px;
  }

  .slider-testimonials .testimonials-sidebar .avatar-stack {
    margin-bottom: 24px;
  }

  .slider-testimonials .testimonials-sidebar .avatar-stack .avatar,
  .slider-testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }

  .slider-testimonials .testimonials-sidebar .avatar-stack .avatar:first-child,
  .slider-testimonials .testimonials-sidebar .avatar-stack .avatar-count:first-child {
    margin-left: 0;
  }

  .slider-testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    font-size: 11px;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 22px;
  }

  .slider-testimonials .testimonials-sidebar .sidebar-content p {
    font-size: 14px;
  }

  .slider-testimonials .testimonial-card {
    padding: 20px;
  }

  .slider-testimonials .testimonial-card .card-top {
    margin-bottom: 20px;
  }

  .slider-testimonials .testimonial-card .card-top .quote-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .slider-testimonials .testimonial-card .card-top .quote-mark i {
    font-size: 16px;
  }

  .slider-testimonials .testimonial-card .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .slider-testimonials .testimonial-card .author-info .author-img {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .slider-testimonials .testimonial-card .author-info .author-details h5 {
    font-size: 14px;
  }

  .slider-testimonials .testimonial-card .author-info .author-details span {
    font-size: 12px;
  }

  .slider-testimonials .testimonials-carousel {
    padding-bottom: 45px;
  }

  .slider-testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }

  .slider-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 26px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .review-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.testimonials .review-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.testimonials .review-card:hover .accent-bar {
  width: 8px;
}

.testimonials .review-card:hover .reviewer-photo img {
  transform: scale(1.05);
}

.testimonials .review-card.featured .accent-bar {
  background: linear-gradient(180deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--default-color) 30%));
}

.testimonials .review-card.featured .review-body {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.testimonials .review-card.featured .stars i {
  color: var(--accent-color);
}

.testimonials .review-card.featured .decorative-quote {
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-color);
  transition: width 0.3s ease;
  z-index: 2;
}

.testimonials .review-body {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 2rem 2rem 2.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: none;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testimonials .reviewer-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .reviewer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonials .review-content {
  flex: 1;
  min-width: 0;
}

.testimonials .review-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 0.75rem 0 1rem;
  position: relative;
  z-index: 1;
}

.testimonials .stars {
  display: flex;
  gap: 3px;
}

.testimonials .stars i {
  font-size: 0.875rem;
  color: #f5a623;
}

.testimonials .reviewer-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.testimonials .reviewer-info span {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-style: italic;
}

.testimonials .decorative-quote {
  position: absolute;
  bottom: 0.75rem;
  right: 1.25rem;
  font-size: 4rem;
  color: color-mix(in srgb, var(--default-color), transparent 92%);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .testimonials .review-body {
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    gap: 1.25rem;
  }

  .testimonials .reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
  }

  .testimonials .decorative-quote {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .testimonials .review-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.5rem 1.75rem;
  }

  .testimonials .reviewer-photo {
    width: 64px;
    height: 64px;
  }

  .testimonials .stars {
    justify-content: center;
  }

  .testimonials .review-content p {
    font-size: 0.875rem;
  }

  .testimonials .decorative-quote {
    font-size: 2.5rem;
    right: 0.75rem;
    bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  padding: 25px 50px 25px 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  border-left: 4px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 92%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq .faq-item .faq-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.faq .faq-item h3 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
  flex: 1;
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  padding-left: 55px;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 26px;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 30px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq .faq-item.faq-active,
.faq .faq-item.active {
  border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-num,
.faq .faq-item.active .faq-num {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active h3,
.faq .faq-item.active h3 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-content,
.faq .faq-item.active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-item.faq-active .faq-toggle,
.faq .faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq .help-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  border-radius: 12px;
  padding: 40px;
  color: var(--contrast-color);
}

.faq .help-banner i {
  font-size: 48px;
  color: var(--contrast-color);
  opacity: 0.85;
}

.faq .help-banner h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.faq .help-banner p {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 24px;
}

.faq .help-banner .btn-help {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq .help-banner .btn-help:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq .faq-item {
    padding: 20px 45px 20px 20px;
  }

  .faq .faq-item .faq-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 12px;
  }

  .faq .faq-item h3 {
    font-size: 15px;
    line-height: 22px;
  }

  .faq .faq-item .faq-content {
    padding-left: 49px;
  }

  .faq .faq-item .faq-toggle {
    right: 18px;
    top: 24px;
  }

  .faq .help-banner {
    padding: 30px 20px;
    text-align: center;
  }

  .faq .help-banner h4 {
    font-size: 20px;
    margin-top: 15px;
  }

  .faq .help-banner p {
    margin-bottom: 15px;
  }

  .faq .help-banner .btn-help {
    margin-top: 5px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-tile {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.contact .info-tile:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-4px);
}

.contact .info-tile:hover .tile-icon {
  background-color: var(--accent-color);
}

.contact .info-tile:hover .tile-icon i {
  color: var(--contrast-color);
}

.contact .info-tile .tile-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact .info-tile .tile-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .info-tile h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact .info-tile p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.contact .map-wrapper {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .map-wrapper iframe {
  display: block;
}

.contact .connect-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 18px 24px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .connect-bar .connect-label {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.contact .connect-bar .connect-icons {
  display: flex;
  gap: 10px;
}

.contact .connect-bar .connect-icons a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .connect-bar .connect-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .contact .connect-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.contact .form-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 40px 35px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
}

@media (max-width: 768px) {
  .contact .form-card {
    padding: 30px 20px;
  }
}

.contact .form-header {
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 20px;
}

.contact .form-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact .form-header p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact .php-email-form .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact .php-email-form .form-control {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 16px;
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.contact .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact .btn-dispatch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .btn-dispatch i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .btn-dispatch:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .btn-dispatch:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .terms-intro {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-intro .revision-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.terms-of-service .terms-intro .revision-tag i {
  font-size: 1rem;
}

.terms-of-service .terms-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1.05rem;
  margin: 0;
}

.terms-of-service .terms-intro .utility-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  padding: 8px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  margin-left: 10px;
  transition: all 0.3s;
}

.terms-of-service .terms-intro .utility-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.terms-of-service .terms-sidebar {
  position: sticky;
  top: 100px;
}

.terms-of-service .terms-sidebar .sidebar-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-color);
}

.terms-of-service .terms-sidebar .toc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.terms-of-service .terms-sidebar .toc-list li {
  margin-bottom: 2px;
}

.terms-of-service .terms-sidebar .toc-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s;
}

.terms-of-service .terms-sidebar .toc-list li a .toc-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  min-width: 24px;
  font-family: var(--heading-font);
}

.terms-of-service .terms-sidebar .toc-list li a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.terms-of-service .terms-sidebar .sidebar-cta {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.terms-of-service .terms-sidebar .sidebar-cta .cta-icon {
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.terms-of-service .terms-sidebar .sidebar-cta .cta-icon i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service .terms-sidebar .sidebar-cta h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.terms-of-service .terms-sidebar .sidebar-cta p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 12px;
}

.terms-of-service .terms-sidebar .sidebar-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: gap 0.3s;
}

.terms-of-service .terms-sidebar .sidebar-cta .cta-link:hover {
  gap: 10px;
}

@media (max-width: 992px) {
  .terms-of-service .terms-sidebar {
    position: static;
    margin-bottom: 10px;
  }
}

.terms-of-service .terms-main .term-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
}

.terms-of-service .terms-main .term-card:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.terms-of-service .terms-main .term-card:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-main .term-card .card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.terms-of-service .terms-main .term-card .card-heading .heading-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  font-family: var(--heading-font);
}

.terms-of-service .terms-main .term-card .card-heading h3 {
  font-size: 1.4rem;
  margin: 0;
}

.terms-of-service .terms-main .term-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.75;
  margin-bottom: 16px;
}

.terms-of-service .terms-main .term-card p:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-main .term-card .note-banner {
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 10px;
}

.terms-of-service .terms-main .term-card .note-banner p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
}

.terms-of-service .terms-main .term-card .note-info {
  background-color: color-mix(in srgb, var(--accent-color), transparent 93%);
  border-left: 3px solid var(--accent-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.terms-of-service .terms-main .term-card .note-info>i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-of-service .terms-main .term-card .note-warning {
  background-color: color-mix(in srgb, #ffc107, transparent 92%);
  border-top: 3px solid color-mix(in srgb, #ffc107, #000 15%);
}

.terms-of-service .terms-main .term-card .note-warning .banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.terms-of-service .terms-main .term-card .note-warning .banner-header i {
  color: color-mix(in srgb, #ffc107, #000 20%);
  font-size: 1.2rem;
}

.terms-of-service .terms-main .term-card .note-warning .banner-header strong {
  font-size: 1rem;
  color: var(--heading-color);
}

.terms-of-service .terms-main .term-card .note-warning p {
  font-size: 0.93rem;
  margin: 0;
}

.terms-of-service .terms-main .term-card .check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.terms-of-service .terms-main .term-card .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .terms-main .term-card .check-list li:last-child {
  border-bottom: none;
}

.terms-of-service .terms-main .term-card .check-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.terms-of-service .terms-main .term-card .restricted-grid {
  margin-top: 16px;
}

.terms-of-service .terms-main .term-card .restricted-grid .restricted-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background-color: color-mix(in srgb, #dc3545, transparent 96%);
  border-radius: 8px;
  margin-bottom: 10px;
}

.terms-of-service .terms-main .term-card .restricted-grid .restricted-item:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-main .term-card .restricted-grid .restricted-item i {
  color: #dc3545;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.terms-of-service .terms-main .term-card .restricted-grid .restricted-item span {
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.terms-of-service .terms-main .term-card .warranty-box {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 10px;
}

.terms-of-service .terms-main .term-card .warranty-box h6 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.terms-of-service .terms-main .term-card .warranty-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .terms-main .term-card .warranty-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.terms-of-service .terms-main .term-card .warranty-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-main .term-card .warranty-box ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

@media (max-width: 576px) {
  .terms-of-service .terms-main .term-card {
    padding: 22px 18px;
  }

  .terms-of-service .terms-main .term-card .card-heading {
    gap: 12px;
  }

  .terms-of-service .terms-main .term-card .card-heading .heading-num {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .terms-of-service .terms-main .term-card .card-heading h3 {
    font-size: 1.2rem;
  }
}

.terms-of-service .terms-footer {
  margin-top: 60px;
}

.terms-of-service .terms-footer .footer-card {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  border-radius: 16px;
  padding: 50px 40px;
  color: var(--contrast-color);
}

.terms-of-service .terms-footer .footer-card .footer-icon {
  width: 64px;
  height: 64px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.terms-of-service .terms-footer .footer-card .footer-icon i {
  font-size: 1.6rem;
  color: var(--contrast-color);
}

.terms-of-service .terms-footer .footer-card h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-footer .footer-card p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 24px;
  font-size: 1rem;
}

.terms-of-service .terms-footer .footer-card .footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.terms-of-service .terms-footer .footer-card .footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, #000, transparent 70%);
}

@media (max-width: 576px) {
  .terms-of-service .terms-footer .footer-card {
    padding: 35px 25px;
  }

  .terms-of-service .terms-footer .footer-card h4 {
    font-size: 1.3rem;
  }
}

@media print {

  .terms-of-service .terms-footer,
  .terms-of-service .terms-sidebar .sidebar-cta,
  .terms-of-service .terms-intro .utility-link {
    display: none;
  }

  .terms-of-service .term-card {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.75;
}

.privacy .policy-sidebar {
  position: sticky;
  top: 100px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-sidebar .effective-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.privacy .policy-sidebar .effective-badge i {
  font-size: 1rem;
}

.privacy .policy-sidebar h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .sidebar-intro {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.privacy .policy-sidebar .policy-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 25px;
}

.privacy .policy-sidebar .policy-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link:hover,
.privacy .policy-sidebar .policy-nav .nav-link.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.privacy .policy-sidebar .policy-nav .nav-link:hover .nav-number,
.privacy .policy-sidebar .policy-nav .nav-link.active .nav-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.privacy .policy-sidebar .contact-card {
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 12px;
}

.privacy .policy-sidebar .contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .policy-sidebar .contact-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .contact-card .contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.privacy .policy-sidebar .contact-card .contact-email i {
  font-size: 1.1rem;
}

.privacy .policy-sidebar .contact-card .contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .policy-sidebar .contact-card .contact-address i {
  font-size: 1rem;
  margin-top: 2px;
}

.privacy .policy-content {
  padding-left: 20px;
}

.privacy .policy-content .policy-section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-content .policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy .policy-content .policy-section .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.privacy .policy-content .policy-section .section-header .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.privacy .policy-content .policy-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.privacy .policy-content .policy-section .section-body p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body p:last-child {
  margin-bottom: 0;
}

.privacy .policy-content .policy-section .section-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 25px 0 15px;
}

.privacy .policy-content .policy-section .section-body h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

.privacy .policy-content .policy-section .section-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.privacy .policy-content .policy-section .section-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.privacy .policy-content .policy-section .section-body ul li:last-child {
  margin-bottom: 0;
}

.privacy .info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.privacy .info-card:last-child {
  margin-bottom: 0;
}

.privacy .info-card h3 {
  margin-top: 0 !important;
}

.privacy .usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.privacy .usage-grid .usage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-grid .usage-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.privacy .usage-grid .usage-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy .usage-grid .usage-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.privacy .sharing-item {
  margin-bottom: 25px;
}

.privacy .sharing-item:last-child {
  margin-bottom: 0;
}

.privacy .sharing-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.privacy .security-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.privacy .security-features .feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.privacy .security-features .feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  flex-shrink: 0;
}

.privacy .security-features .feature .feature-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.privacy .security-features .feature .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .security-features .feature .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.privacy .rights-list .right-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.privacy .rights-list .right-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .rights-list .right-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.privacy .rights-list .right-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .rights-list .right-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .update-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  margin-top: 25px;
}

.privacy .update-notice i {
  font-size: 1.3rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy .update-notice span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .privacy .policy-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .privacy .policy-sidebar .policy-nav {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .privacy .usage-grid {
    grid-template-columns: 1fr;
  }

  .privacy .rights-list {
    grid-template-columns: 1fr;
  }

  .privacy .policy-content .policy-section .section-header h2 {
    font-size: 1.4rem;
  }

  .privacy .policy-content .policy-section .section-header .section-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .privacy .security-features .feature {
    flex-direction: column;
    text-align: center;
  }

  .privacy .security-features .feature .feature-icon {
    margin: 0 auto;
  }
}

@media print {
  .privacy .policy-sidebar {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }

  .privacy .policy-content .policy-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.error-404 .error-content {
  margin-bottom: 80px;
}

.error-404 .error-content .error-number {
  font-size: 8rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-number {
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-number {
    font-size: 4.5rem;
  }
}

.error-404 .error-content .error-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-title {
    font-size: 2rem;
  }
}

.error-404 .error-content .error-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

.error-404 .error-content .error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.error-404 .error-content .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-content .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .error-404 .error-content .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-content .error-actions .btn-primary,
  .error-404 .error-content .error-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.error-404 .error-content .search-section .search-label {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.error-404 .error-content .search-section .search-form {
  max-width: 400px;
  margin: 0 auto;
}

.error-404 .error-content .search-section .search-form .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn {
  position: absolute;
  right: 8px;
  background: var(--accent-color);
  border: none;
  border-radius: 6px;
  padding: 12px;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn i {
  font-size: 1rem;
}

.error-404 .helpful-links .links-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .helpful-links .links-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}

.error-404 .helpful-links .link-item {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-10px);
}

.error-404 .helpful-links .link-item .link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.error-404 .helpful-links .link-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.error-404 .helpful-links .link-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.error-404 .helpful-links .link-item .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 12px;
}

.error-404 .helpful-links .link-item .link-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover i {
  transform: translateX(3px);
}

.error-404 .helpful-links .link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .helpful-links .link-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
    min-height: auto;
  }

  .error-404 .error-content {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-title {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}