/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  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: "Roboto Slab",  sans-serif;
  --nav-font: "Roboto Slab",  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: #ffffcc; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #008000; /* 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: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #008000; /* 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: #000000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #008000; /* 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: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  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 .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }

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

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.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 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

.footer .copyright {
  padding: 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: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.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 70%);
}

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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;
}


/*--------------------------------------------------------------
# SECTION PADDING CUSTOM **********
--------------------------------------------------------------*/
.section-padding {
	padding-top:2em;
    padding-bottom: 2em;
    padding-left: 1em;
    padding-right:1em;
}

.section-padding-sides {
	padding-top:1.35em;
    padding-bottom: 1.35em;
    padding-left: 2em;
    padding-right:2em;
}
/*--------------------------------------------------------------
# INDENT BULLET POINTS CUSTOM **********
--------------------------------------------------------------*/
.indent-bulleted-point {
	margin-left: 1em;
}
.indent-bulleted-point-2 {
	margin-left: 2em;
}
/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding: 0;
}

.hero-2 .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero-2 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-2 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-2 .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-2 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero-2 .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero-2 h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero-2 h2 {
    font-size: 30px;
  }
}

.hero-2 p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero-2 h2,
  .hero-2 p {
    max-width: 60%;
  }
}

.hero-2 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero-2 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-2 .carousel-control-prev,
.hero-2 .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero-2 .carousel-control-prev:focus,
.hero-2 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-2 .carousel-control-prev:hover,
.hero-2 .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero-2 .carousel-control-prev,
  .hero-2 .carousel-control-next {
    width: 5%;
  }
}

.hero-2 .carousel-control-next-icon,
.hero-2 .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero-2 .carousel-indicators {
  list-style: none;
}

.hero-2 .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  padding-top: 100px;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.hero-3 .container {
  position: relative;
  z-index: 1;
}

.hero-3 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-3 h1 .typed {
  color: var(--accent-color);
}

.hero-3 p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-3 .hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-3 .hero-btns .btn-explore,
.hero-3 .hero-btns .btn-contact {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-3 .hero-btns .btn-explore {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero-3 .hero-btns .btn-explore:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-3 .hero-btns .btn-contact {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hero-3 .hero-btns .btn-contact:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-3 .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hero-3 .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero-3 .hero-img {
  position: relative;
}

.hero-3 .hero-img img {
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.hero-3 .hero-img img:hover {
  transform: translateY(-10px);
}

@media (max-width: 991.98px) {
  .hero-3 {
    text-align: center;
    padding: 80px 0;
  }

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

  .hero-3 .hero-btns {
    justify-content: center;
  }

  .hero-3 .social-links {
    justify-content: center;
  }

  .hero-3 .hero-img {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-3 h1 {
    font-size: 2rem;
  }

  .hero-3 .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-3 .hero-btns .btn-explore,
  .hero-3 .hero-btns .btn-contact {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Category Cards Section
--------------------------------------------------------------*/
.category-cards {
  padding-top: 60px;
  --default-color: #555;
  --heading-color: #0a2e64;
  padding-bottom: 60px;
}

.category-cards .promo-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.category-cards .promo-card .promo-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.category-cards .promo-card .promo-content .promo-subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  opacity: 0.8;
}

.category-cards .promo-card .promo-content .promo-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.category-cards .promo-card .promo-content .btn-shop {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
  position: relative;
  transition: all 0.3s ease;
}

.category-cards .promo-card .promo-content .btn-shop::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--heading-color);
  transition: all 0.3s ease;
}

.category-cards .promo-card .promo-content .btn-shop:hover {
  color: var(--accent-color);
}

.category-cards .promo-card .promo-content .btn-shop:hover::after {
  background-color: var(--accent-color);
}

.category-cards .promo-card .promo-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 30%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.category-cards .promo-card .promo-image img {
  height: 90%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  transition: all 0.3s ease;
}

.category-cards .promo-card:hover .promo-image img {
  transform: scale(1.1);
}

.category-cards .promo-card.promo-card-1 {
  background-color: #f8f7e9;
}

.category-cards .promo-card.promo-card-2 {
  background-color: #f8f7e9;
}

.category-cards .promo-card.promo-card-3 {
  background-color: #f8f7e9;
}

@media (max-width: 991.98px) {
  .category-cards .promo-card {
    height: 280px;
  }

  .category-cards .promo-card .promo-content {
    max-width: 70%;
  }

  .category-cards .promo-card .promo-content .promo-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .category-cards .promo-card {
    height: 250px;
    padding: 1.5rem;
  }

  .category-cards .promo-card .promo-content {
    max-width: 60%;
  }

  .category-cards .promo-card .promo-content .promo-subtitle {
    font-size: 0.8rem;
  }

  .category-cards .promo-card .promo-content .promo-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .category-cards .promo-card .promo-content .btn-shop {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .category-cards .promo-card {
    height: 220px;
  }

  .category-cards .promo-card .promo-content {
    max-width: 70%;
  }

  .category-cards .promo-card .promo-content .promo-title {
    font-size: 1.2rem;
  }

  .category-cards .promo-card .promo-image {
    width: 40%;
  }
}

/*--------------------------------------------------------------
# Info Cards Section
--------------------------------------------------------------*/
.info-cards {
  padding-top: 60px;
  --default-color: #555;
  --heading-color: #333;
  padding-bottom: 60px;
}

.info-cards .info-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-cards .info-card:hover {
  transform: translateY(-3px);
}

.info-cards .info-card .icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-cards .info-card .icon-box i {
  font-size: 1.5rem;
}

.info-cards .info-card .content {
  display: flex;
  flex-direction: column;
}

.info-cards .info-card .info-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.info-cards .info-card .info-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.5;
}

.info-cards .info-card.card-1 {
  background-color: #fff9f2;
}

.info-cards .info-card.card-1 .icon-box {
  background-color: #fff;
  color: #f5a623;
}

.info-cards .info-card.card-2 {
  background-color: #f0f5ff;
}

.info-cards .info-card.card-2 .icon-box {
  background-color: #fff;
  color: #ff7a00;
}

.info-cards .info-card.card-3 {
  background-color: #f0fff7;
}

.info-cards .info-card.card-3 .icon-box {
  background-color: #fff;
  color: #38b2ac;
}

.info-cards .info-card.card-4 {
  background-color: #fff0f5;
}

.info-cards .info-card.card-4 .icon-box {
  background-color: #fff;
  color: #3b82f6;
}

@media (max-width: 991.98px) {
  .info-cards .info-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .info-cards .info-card .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .info-cards .info-card .icon-box i {
    font-size: 1.25rem;
  }

  .info-cards .info-card .info-title {
    font-size: 1rem;
  }

  .info-cards .info-card .info-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .info-cards .info-card {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Events 2 Section
--------------------------------------------------------------*/
.events-2 .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
  background-color: var(--background-color);
}

.events-2 .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events-2 .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events-2 .card-body {
  z-index: 10;
  background: #ffffff;
  border-top: 4px solid var(--background-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events-2 .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events-2 .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events-2 .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events-2 .card:hover img {
  transform: scale(1.1);
}

.events-2 .card:hover .card-body {
  border-color: var(--accent-color);
}

.events-2 .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  --background-color: #008000;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  padding-top: 60px;
  overflow: hidden;
  padding-bottom: 60px;
}

.contact-2 .info-box {
  color: var(--default-color);
  background: var(--surface-color);
  padding: 30px;
  height: 100%;
  border-radius: 0px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-2 .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.contact-2 .info-box i {
  font-size: 32px;
  color: var(--accent-color);
  border-radius: 50%;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.contact-2 .info-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-2 .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
}

.contact-2 .map-container {
  overflow: hidden;
  padding-bottom: 500px;
  position: relative;
  height: 0;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-2 .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

@media (max-width: 992px) {
  .contact-2 .map-container {
    padding-bottom: 350px;
  }
}

@media (max-width: 768px) {
  .contact-2 .map-container {
    padding-bottom: 300px;
  }
}

.contact-2 .php-email-form {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  background: var(--surface-color);
  border-radius: 15px;
}

.contact-2 .php-email-form .form-control {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ced4da;
  font-size: 14px;
  transition: all 0.3s;
}

.contact-2 .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact-2 .php-email-form .form-control::placeholder {
  color: #adb5bd;
}

.contact-2 .php-email-form textarea.form-control {
  min-height: 120px;
}

.contact-2 .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 12px 34px;
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}

.contact-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.05);
}

.contact-2 .php-email-form .loading,
.contact-2 .php-email-form .error-message,
.contact-2 .php-email-form .sent-message {
  display: none;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 500;
  border-radius: 10px;
}

.contact-2 .php-email-form .loading {
  background: #fff;
  color: var(--accent-color);
}

.contact-2 .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: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact-2 .php-email-form .error-message {
  color: #fff;
  background: #ed3c0d;
}

.contact-2 .php-email-form .sent-message {
  color: #fff;
  background: #18d26e;
}

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

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

.contact-2 .social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-2 .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-2 .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .contact-2 .info-box {
    margin-bottom: 20px;
    padding: 20px;
  }

  .contact-2 .php-email-form {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .contact-2 .info-box {
    padding: 15px;
  }

  .contact-2 .info-box i {
    font-size: 28px;
    padding: 12px;
  }

  .contact-2 .info-box h3 {
    font-size: 18px;
  }

  .contact-2 .social-links {
    gap: 12px;
  }

  .contact-2 .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 40%);
}
.about-2 .content .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

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

.about-2 .content .lead-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--default-color);
}

.about-2 .content .description-text {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-2 .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .about-2 .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

.about-2 .stats-grid .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-2 .stats-grid .stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-2 .cta-section .cta-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 400;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-2 .cta-section .cta-link:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.about-2 .cta-section .cta-link i {
  transition: transform 0.3s ease;
}

.about-2 .cta-section .cta-link:hover i {
  transform: translateX(5px);
}

.about-2 .image-section {
  position: relative;
}

.about-2 .image-section .main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-2 .image-section .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-2 .image-section .main-image:hover img {
  transform: scale(1.02);
}

.about-2 .image-section .floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 768px) {
  .about-2 .image-section .floating-badge {
    bottom: -15px;
    right: -15px;
    padding: 1rem;
  }
}

.about-2 .image-section .floating-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-2 .image-section .floating-badge .badge-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about-2 .image-section .floating-badge .badge-content .badge-text .badge-title {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 1rem;
  line-height: 1.2;
}

.about-2 .image-section .floating-badge .badge-content .badge-text .badge-subtitle {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 300;
}

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

  .about-2 .image-section .floating-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-2 .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-2 .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 120px 0;
  background-color: var(--background-color);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/construction/showcase-5.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  margin-bottom: 30px;
}

.hero .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

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

.hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .hero .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.hero .hero-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.hero .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

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

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

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

  .hero .hero-content {
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  padding: 0;
}

.hero-4 .hero-container {
  padding: 0;
}

.hero-4 .hero-container .content-col {
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-4 .hero-container .content-col {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-4 .hero-container .content-col {
    padding: 2.5rem 1.5rem;
  }
}

.hero-4 .hero-container .content-col .content-wrapper {
  max-width: 570px;
}

.hero-4 .hero-container .content-col .status-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-4 .hero-container .content-col h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .hero-4 .hero-container .content-col h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-4 .hero-container .content-col h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-4 .hero-container .content-col h2 {
    font-size: 2.2rem;
  }
}

.hero-4 .hero-container .content-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-4 .hero-container .content-col p {
    font-size: 1rem;
  }
}

.hero-4 .hero-container .content-col .opening-hours {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}

.hero-4 .hero-container .content-col .opening-hours i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.hero-4 .hero-container .content-col .opening-hours span {
  font-size: 0.95rem;
}

.hero-4 .hero-container .content-col .btn-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero-4 .hero-container .content-col .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-4 .hero-container .content-col .btn-group .btn {
    width: 100%;
    text-align: center;
  }
}

.hero-4 .hero-container .content-col .btn-group .btn {
  padding: 1rem 2rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-4 .hero-container .content-col .btn-group .btn.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: transparent;
}

.hero-4 .hero-container .content-col .btn-group .btn.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-4 .hero-container .content-col .btn-group .btn.btn-menu {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.hero-4 .hero-container .content-col .btn-group .btn.btn-menu:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-4 .hero-container .content-col .social-links {
  display: flex;
  gap: 1rem;
}

.hero-4 .hero-container .content-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.hero-4 .hero-container .content-col .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero-4 .hero-container .content-col .social-links a i {
  font-size: 1.2rem;
}

.hero-4 .hero-container .hero-swiper {
  position: relative;
}

.hero-4 .hero-container .hero-swiper .swiper-slide {
  position: relative;
}

.hero-4 .hero-container .hero-swiper .swiper-slide .img-container {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 90px);
}

.hero-4 .hero-container .hero-swiper .swiper-slide .img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.hero-4 .hero-container .hero-swiper .swiper-button-next,
.hero-4 .hero-container .hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, #000, transparent 70%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.hero-4 .hero-container .hero-swiper .swiper-button-next:after,
.hero-4 .hero-container .hero-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-4 .hero-container .hero-swiper .swiper-button-next:hover,
.hero-4 .hero-container .hero-swiper .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-4 .hero-container .hero-swiper .swiper-button-next {
  right: 20px;
}

.hero-4 .hero-container .hero-swiper .swiper-button-prev {
  left: 20px;
}

@media (max-width: 992px) {
  .hero-4 .hero-container .content-col {
    order: 2;
  }

  .hero-4 .hero-container .swiper-col {
    order: 1;
  }

  .hero-4 .hero-container .hero-swiper .swiper-slide .img-container {
    height: calc(70vh - 80px);
  }

  .hero-4 .hero-container .hero-swiper .swiper-button-next,
  .hero-4 .hero-container .hero-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .hero-4 .hero-container .hero-swiper .swiper-button-next:after,
  .hero-4 .hero-container .hero-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .event-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 300px;
}

.events .event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.events .event-card .event-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.events .event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.events .event-card .event-image .event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(54, 144, 231, 0.9), rgba(45, 70, 94, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}

.events .event-card .event-image .event-overlay h4 {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.events .event-card .event-image .event-overlay p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.2s;
}

.events .event-card .event-image .event-overlay .event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  transform: translateY(20px) scale(0.8);
}

.events .event-card .event-image .event-overlay .event-btn:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  transform: translateY(20px) scale(1.1);
}

.events .event-card .event-image .event-overlay .event-btn i {
  transition: transform 0.3s ease;
}

.events .event-card .event-image .event-overlay .event-btn:hover i {
  transform: translateX(3px);
}

.events .event-card:hover .event-image img {
  transform: scale(1.1);
}

.events .event-card:hover .event-image .event-overlay {
  opacity: 1;
}

.events .event-card:hover .event-image .event-overlay h4,
.events .event-card:hover .event-image .event-overlay p,
.events .event-card:hover .event-image .event-overlay .event-btn {
  transform: translateY(0);
}

.events .event-card:hover .event-image .event-overlay .event-btn {
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .events .event-card {
    height: 250px;
  }

  .events .event-card .event-image .event-overlay {
    padding: 20px;
  }

  .events .event-card .event-image .event-overlay h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .events .event-card .event-image .event-overlay p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .events .event-card .event-image .event-overlay .event-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

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

.tour-details .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 70vh;
  min-height: 500px;
}

@media (max-width: 768px) {
  .tour-details .tour-hero .hero-image-wrapper {
    height: 60vh;
    min-height: 400px;
    border-radius: 16px;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

@media (max-width: 768px) {
  .tour-details .tour-hero .hero-image-wrapper .hero-overlay {
    padding: 40px 30px;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content {
  color: var(--contrast-color);
  max-width: 600px;
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .tour-type {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
    font-size: 2.4rem;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
    gap: 20px;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item i {
  font-size: 1rem;
  opacity: 0.8;
}

.tour-details .tour-essence {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details .tour-essence {
    margin-bottom: 80px;
  }
}

.tour-details .tour-essence .essence-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tour-details .tour-essence .essence-content h2 {
    font-size: 2rem;
  }
}

.tour-details .tour-essence .essence-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.tour-details .tour-essence .essence-content .highlights-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .tour-details .tour-essence .essence-content .highlights-compact {
    grid-template-columns: 1fr;
  }
}

.tour-details .tour-essence .essence-content .highlights-compact .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--default-color);
}

.tour-details .tour-essence .essence-content .highlights-compact .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tour-details .tour-essence .pricing-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 992px) {
  .tour-details .tour-essence .pricing-card {
    margin-top: 40px;
  }
}

.tour-details .tour-essence .pricing-card .price-header {
  margin-bottom: 12px;
}

.tour-details .tour-essence .pricing-card .price-header .price-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.tour-details .tour-essence .pricing-card .price-header .price-amount {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-color);
}

.tour-details .tour-essence .pricing-card .price-description {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 32px;
}

.tour-details .tour-essence .pricing-card .btn-reserve {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-details .tour-essence .pricing-card .btn-reserve:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.tour-details .tour-essence .pricing-card .booking-notes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details .tour-essence .pricing-card .booking-notes span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details .tour-essence .pricing-card .booking-notes span i {
  color: var(--accent-color);
}

.tour-details .journey-timeline {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details .journey-timeline {
    margin-bottom: 80px;
  }
}

.tour-details .journey-timeline h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details .journey-timeline .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.tour-details .journey-timeline .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .tour-details .journey-timeline .timeline-wrapper::before {
    left: 22px;
  }
}

.tour-details .journey-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .tour-details .journey-timeline .timeline-item {
    gap: 30px;
    margin-bottom: 40px;
  }
}

.tour-details .journey-timeline .timeline-item .timeline-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tour-details .journey-timeline .timeline-item .timeline-marker .day-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tour-details .journey-timeline .timeline-item .timeline-marker .day-number {
    width: 44px;
    height: 44px;
  }
}

.tour-details .journey-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .tour-details .journey-timeline .timeline-item .timeline-content {
    padding: 24px;
  }
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .tour-details .journey-timeline .timeline-item .timeline-content .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0;
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-header .location {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 12px;
}

.tour-details .journey-timeline .timeline-item .timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 16px;
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-features .feature-tag {
  font-size: 0.75rem;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 4px 10px;
  border-radius: 8px;
}

.tour-details .inclusions-overview {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details .inclusions-overview {
    margin-bottom: 80px;
  }
}

.tour-details .inclusions-overview .included-section h3,
.tour-details .inclusions-overview .not-included-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.tour-details .inclusions-overview .inclusion-list .inclusion-item,
.tour-details .inclusions-overview .inclusion-list .exclusion-item,
.tour-details .inclusions-overview .exclusion-list .inclusion-item,
.tour-details .inclusions-overview .exclusion-list .exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tour-details .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details .inclusions-overview .exclusion-list .inclusion-item i,
.tour-details .inclusions-overview .exclusion-list .exclusion-item i {
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-details .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details .inclusions-overview .exclusion-list .inclusion-item i {
  color: #28a745;
}

.tour-details .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details .inclusions-overview .exclusion-list .exclusion-item i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tour-details .booking-section {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details .booking-section {
    margin-bottom: 80px;
  }
}

.tour-details .booking-section .departure-dates h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.tour-details .booking-section .departure-dates .dates-grid {
  display: grid;
  gap: 16px;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-color);
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option:hover {
  border-color: var(--accent-color);
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-info .month {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 4px;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-info .dates {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details {
  text-align: right;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .price {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 4px;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 8px;
  font-weight: 500;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability.available {
  background: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability.limited {
  background: color-mix(in srgb, #ffc107, transparent 75%);
  color: #856404;
}

.tour-details .booking-section .booking-form-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .tour-details .booking-section .booking-form-card {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 768px) {
  .tour-details .booking-section .booking-form-card {
    padding: 30px;
  }
}

.tour-details .booking-section .booking-form-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
  text-align: center;
}

.tour-details .booking-section .booking-form-card .form-group {
  margin-bottom: 24px;
}

.tour-details .booking-section .booking-form-card .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.tour-details .booking-section .booking-form-card .form-group .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.tour-details .booking-section .booking-form-card .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

.tour-details .booking-section .booking-form-card .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.tour-details .booking-section .booking-form-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tour-details .booking-section .booking-form-card .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.tour-details .booking-section .booking-form-card .booking-assurance {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details .booking-section .booking-form-card .booking-assurance .assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details .booking-section .booking-form-card .booking-assurance .assurance-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.tour-details .booking-section .booking-form-card .booking-assurance .assurance-item:last-child {
  margin-bottom: 0;
}

.tour-details .visual-gallery {
  margin-bottom: 100px;
}

.tour-details .visual-gallery h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details .visual-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}

@media (max-width: 992px) {
  .tour-details .visual-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
}

@media (max-width: 768px) {
  .tour-details .visual-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 160px);
  }
}

.tour-details .visual-gallery .gallery-grid .gallery-piece {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tour-details .visual-gallery .gallery-grid .gallery-piece:hover {
  transform: scale(1.02);
}

.tour-details .visual-gallery .gallery-grid .gallery-piece.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .tour-details .visual-gallery .gallery-grid .gallery-piece.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

.tour-details .visual-gallery .gallery-grid .gallery-piece a {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-details .visual-gallery .gallery-grid .gallery-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-details .final-call .call-content {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 80px 60px;
  border-radius: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .tour-details .final-call .call-content {
    padding: 60px 40px;
  }
}

.tour-details .final-call .call-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .tour-details .final-call .call-content h2 {
    font-size: 2rem;
  }
}

.tour-details .final-call .call-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .tour-details .final-call .call-content p {
    font-size: 1rem;
  }
}

.tour-details .final-call .call-content .call-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tour-details .final-call .call-content .call-actions .btn-primary-cta,
.tour-details .final-call .call-content .call-actions .btn-contact {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-details .final-call .call-content .call-actions .btn-primary-cta {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.tour-details .final-call .call-content .call-actions .btn-primary-cta:hover {
  background: color-mix(in srgb, var(--contrast-color), black 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.tour-details .final-call .call-content .call-actions .btn-contact {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-details .final-call .call-content .call-actions .btn-contact:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-5 .content ul {
  list-style: none;
  padding: 0;
}

.about-5 .content ul li {
  padding-bottom: 10px;
}

.about-5 .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-5 .content p:last-child {
  margin-bottom: 0;
}

.about-5 .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-5 .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about-5 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  padding-right: 19px;
}

.about-5 .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Category Cards 2 Section
--------------------------------------------------------------*/
.category-cards-2 .category-slider {
  position: relative;
  padding: 1rem 0;
}

.category-cards-2 .category-slider .container {
  position: relative;
}

.category-cards-2 .category-slider .swiper-wrapper {
  height: auto !important;
}

.category-cards-2 .category-slider .swiper-button-next,
.category-cards-2 .category-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-cards-2 .category-slider .swiper-button-next::after,
.category-cards-2 .category-slider .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

.category-cards-2 .category-slider .swiper-button-next:hover,
.category-cards-2 .category-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.category-cards-2 .category-slider .swiper-button-prev {
  left: 0;
}

.category-cards-2 .category-slider .swiper-button-next {
  right: 0;
}

.category-cards-2 .category-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-cards-2 .category-card:hover {
  transform: translateY(-5px);
}

.category-cards-2 .category-card:hover .category-title {
  color: var(--accent-color);
}

.category-cards-2 .category-card:hover .category-image img {
  filter: brightness(1.08);
  transform: rotate(4deg) scale(1.06);
}

.category-cards-2 .category-card .category-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-cards-2 .category-card .category-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.category-cards-2 .category-card .category-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  transition: 0.3s;
}

.category-cards-2 .category-card .category-count {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .category-cards-2 .category-slider .swiper-button-prev {
    left: -15px;
  }

  .category-cards-2 .category-slider .swiper-button-next {
    right: -15px;
  }

  .category-cards-2 .category-card {
    padding: 0.75rem;
  }

  .category-cards-2 .category-card .category-image {
    height: 100px;
    margin-bottom: 0.75rem;
  }

  .category-cards-2 .category-card .category-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .category-cards-2 .category-card .category-count {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {

  .category-cards-2 .category-slider .swiper-button-prev,
  .category-cards-2 .category-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .category-cards-2 .category-slider .swiper-button-prev::after,
  .category-cards-2 .category-slider .swiper-button-next::after {
    font-size: 0.85rem;
  }

  .category-cards-2 .category-card .category-image {
    height: 90px;
  }
}

@media (max-width: 575.98px) {
  .category-cards-2 .category-slider .swiper-button-prev {
    left: -10px;
  }

  .category-cards-2 .category-slider .swiper-button-next {
    right: -10px;
  }

  .category-cards-2 .category-card {
    padding: 0.5rem;
  }

  .category-cards-2 .category-card .category-image {
    height: 80px;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-wrapper .resume-block {
  margin-bottom: 3rem;
}

.resume .resume-wrapper .resume-block:last-child {
  margin-bottom: 0;
}

.resume .resume-wrapper .resume-block h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.resume .resume-wrapper .resume-block h2 span {
  color: var(--accent-color);
}

.resume .resume-wrapper .resume-block .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.resume .resume-wrapper .timeline {
  position: relative;
}

.resume .resume-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.resume .resume-wrapper .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.resume .resume-wrapper .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left {
  width: 20%;
  padding-right: 3rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left .company {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left .period {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: calc(20% + 1px);
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right {
  width: 70%;
  padding-left: 3rem;
  margin-top: -4px;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right .position {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul {
  padding-left: 15px;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul li {
  padding-bottom: 12px;
}

@media (max-width: 992px) {
  .resume .resume-wrapper .resume-block h2 {
    font-size: 2rem;
  }

  .resume .resume-wrapper .timeline::before {
    left: 1rem;
  }

  .resume .resume-wrapper .timeline .timeline-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 1.6rem;
    margin-top: -4px;
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-dot {
    left: calc(1rem + 1px);
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 100%;
    padding-left: 2.5rem;
  }
}

/*--------------------------------------------------------------
# About 6 Section
--------------------------------------------------------------*/
.about-6 .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about-6 .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about-6 .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about-6 .our-story {
    padding-right: 35%;
  }
}

.about-6 .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about-6 .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-6 .our-story p:last-child {
  margin-bottom: 0;
}

.about-6 ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about-6 ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about-6 ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about-6 .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about-6 .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about-6 .watch-video:hover a {
  color: var(--accent-color);
}

.about-6 .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about-6 .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about-6 .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Event Details Section
--------------------------------------------------------------*/
.event-details .event-meta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 8px;
}

.event-details .event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-details .event-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.event-details .event-meta .meta-item span {
  font-weight: 500;
}

.event-details .event-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .event-details .event-content h2 {
    font-size: 1.8rem;
  }
}

.event-details .event-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.event-details .event-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 50px;
  background-color: var(--accent-color);
}

.event-details .event-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.event-details .event-content .event-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.event-details .event-content .event-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.event-details .event-content .event-highlights li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.event-details .event-content .event-highlights li span {
  flex: 1;
}

.event-details .event-content .schedule-table {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.event-details .event-content .schedule-table .schedule-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-details .event-content .schedule-table .schedule-row:last-child {
  border-bottom: none;
}

.event-details .event-content .schedule-table .schedule-row:nth-child(odd) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 576px) {
  .event-details .event-content .schedule-table .schedule-row {
    flex-direction: column;
  }
}

.event-details .event-content .schedule-table .schedule-time {
  width: 180px;
  padding: 15px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .event-details .event-content .schedule-table .schedule-time {
    width: 100%;
  }
}

.event-details .event-content .schedule-table .schedule-activity {
  flex: 1;
  padding: 15px 20px;
}

.event-details .event-content .schedule-table .schedule-activity h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.event-details .event-content .schedule-table .schedule-activity p {
  margin: 0;
  font-size: 0.95rem;
}

.event-details .event-content .event-gallery img {
  transition: all 0.3s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.event-details .event-content .event-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-details .event-sidebar .sidebar-widget {
  margin-bottom: 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.event-details .event-sidebar .sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.event-details .event-sidebar .sidebar-widget h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

.event-details .event-sidebar .registration-form .btn-register {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.event-details .event-sidebar .registration-form .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.event-details .event-sidebar .registration-form .btn-register:active {
  transform: translateY(0);
}

.event-details .event-sidebar .organizer-info .organizer-details {
  display: flex;
  flex-direction: column;
}

.event-details .event-sidebar .organizer-info .organizer-details .organizer-image {
  margin-bottom: 15px;
}

.event-details .event-sidebar .organizer-info .organizer-details .organizer-image img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-details .event-sidebar .organizer-info .organizer-details .organizer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.event-details .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.event-details .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.event-details .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-details .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p:last-child {
  margin-bottom: 0;
}

.event-details .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p i {
  color: var(--accent-color);
}

.event-details .event-sidebar .related-events .related-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-details .event-sidebar .related-events .related-event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-details .event-sidebar .related-events .related-event-item .related-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
}

.event-details .event-sidebar .related-events .related-event-item .related-event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-details .event-sidebar .related-events .related-event-item .related-event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-details .event-sidebar .related-events .related-event-item .related-event-info {
  flex: 1;
}

.event-details .event-sidebar .related-events .related-event-item .related-event-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.event-details .event-sidebar .related-events .related-event-item .related-event-info p {
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}


/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .location-content {
  padding-right: 2rem;
}

@media (max-width: 991px) {
  .location .location-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

.location .location-content h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
}

.location .location-content .location-description {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.location .nearby-attractions .attraction-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.location .nearby-attractions .attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.location .nearby-attractions .attraction-item .attraction-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  border-radius: 10px;
  margin-right: 1.25rem;
}

.location .nearby-attractions .attraction-item .attraction-icon i {
  font-size: 1.5rem;
}

.location .nearby-attractions .attraction-item .attraction-details {
  flex: 1;
}

.location .nearby-attractions .attraction-item .attraction-details h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.location .nearby-attractions .attraction-item .attraction-details .distance {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.location .nearby-attractions .attraction-item .attraction-details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.location .location-map {
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 991px) {
  .location .location-map {
    height: 400px;
  }
}

.location .location-map iframe {
  border-radius: 12px;
}

.location .transportation-info {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.location .transportation-info h4 {
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.location .transportation-info .transport-option {
  text-align: center;
  padding: 1.5rem;
}

.location .transportation-info .transport-option .transport-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.location .transportation-info .transport-option .transport-icon i {
  font-size: 2rem;
}

.location .transportation-info .transport-option h6 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.location .transportation-info .transport-option p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .location .transportation-info {
    padding: 2rem 1.5rem;
  }

  .location .transportation-info .transport-option {
    margin-bottom: 2rem;
  }

  .location .location-content h3 {
    font-size: 1.7rem;
  }

  .location .location-content .location-description {
    font-size: 1rem;
  }

  .location .nearby-attractions .attraction-item {
    flex-direction: column;
    text-align: center;
  }

  .location .nearby-attractions .attraction-item .attraction-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 100px 0;
}

.error-404 .error-404-content h1 {
  font-size: 10rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  margin-bottom: 1rem;
  line-height: 1;
}

.error-404 .error-404-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.error-404 .error-404-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.error-404 .error-404-content .btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.error-404 .error-404-content .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.error-404 .error-404-content .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.error-404 .error-404-content .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.error-404 .error-404-content .btn.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .error-404 .error-404-content h1 {
    font-size: 8rem;
  }

  .error-404 .error-404-content h2 {
    font-size: 2rem;
  }

  .error-404 .error-404-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .error-404 .error-404-content h1 {
    font-size: 6rem;
  }

  .error-404 .error-404-content h2 {
    font-size: 1.75rem;
  }

  .error-404 .error-404-content .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0.5rem auto !important;
  }
}

@media (max-width: 576px) {
  .error-404 .error-404-content h1 {
    font-size: 5rem;
  }

  .error-404 .error-404-content h2 {
    font-size: 1.5rem;
  }

  .error-404 .error-404-content p {
    font-size: 1rem;
  }
}