@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #000000; /* Background color for the entire website, including individual sections */
  --default-color: #e0e0e0; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #a3e635; /* 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: #1a1a1a; /* 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: #262626; /* 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: #e0e0e0;  /* The default color of the main navmenu links */
  --nav-hover-color: #a3e635; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1a1a1a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1a1a1a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #e0e0e0; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #a3e635; /* 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: #000000;
  --surface-color: #343434;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 4px;
  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);
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

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

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title .subtitle {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.section-title .title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.section-title .title-decoration span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.section-title .title-decoration span:nth-child(2) {
  width: 15px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
  padding-top: 120px;
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/travel/showcase-1.webp") center center no-repeat;
  background-size: cover;
  min-height: 80vh;
  display: grid;
  place-content: center;
  padding-bottom: 120px;
}

.travel-hero .content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.travel-hero .content .lead {
  font-size: 1.25rem;
  max-width: 600px;
}

.travel-hero .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-hero .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.travel-hero .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.travel-hero .btn.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.travel-hero .booking-form {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.travel-hero .booking-form label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.travel-hero .booking-form .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  height: auto;
  background-color: transparent;
  color: var(--default-color);
}

.travel-hero .booking-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

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

.travel-hero .booking-form .btn-accent {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.travel-hero .booking-form .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

@media (max-width: 768px) {
  .travel-hero .content {
    text-align: center;
  }

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

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

  .travel-hero .d-flex {
    justify-content: center !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero .hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

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

.hero .hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content h2 .typed {
  color: var(--accent-color);
  font-weight: 600;
}

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

.hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero .hero-actions .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

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

.hero .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .hero-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline:hover {
  transform: translateY(-2px);
}

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

  .hero .hero-actions .btn {
    text-align: center;
  }
}

.hero .social-links {
  display: flex;
  gap: 1rem;
}

.hero .social-links a {
  width: 45px;
  height: 45px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-image {
  position: relative;
}

.hero .hero-image .image-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.hero .hero-image .image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease;
}

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

.hero .hero-image .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .hero-image .floating-elements .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-image .floating-elements .floating-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-image .floating-elements .floating-card.design {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero .hero-image .floating-elements .floating-card.code {
  bottom: 30%;
  left: -15%;
  animation-delay: 1s;
}

.hero .hero-image .floating-elements .floating-card.creativity {
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

@media (max-width: 992px) {
  .hero .hero-image .floating-elements .floating-card {
    display: none;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

/*--------------------------------------------------------------
# Cards 4 Section
--------------------------------------------------------------*/
.cards-4 .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.cards-4 .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

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

.cards-4 .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.cards-4 .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.cards-4 .card .card-body h3 a {
  color: var(--contrast-color);
}

.cards-4 .card .card-body .card-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.cards-4 .card .card-body .card-content p {
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--contrast-color);
}

.cards-4 .card:hover .card-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .subtitle {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-2 .title {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-2 .description {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-2 .trusted-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-2 .trusted-description {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-2 .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.about-2 .feature-list li {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.about-2 .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.about-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-2 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about-2 .image-grid {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
}

.about-2 .image-grid img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-2 .image-grid .main-image {
  width: 75%;
  height: 75%;
  top: 0;
  left: 5%;
  object-fit: cover;
  border: 5px solid var(--surface-color);
}

.about-2 .image-grid .overlay-image-1 {
  width: 50%;
  height: 50%;
  bottom: 0;
  left: 2%;
  object-fit: cover;
  z-index: 1;
  border: 5px solid var(--surface-color);
}

.about-2 .image-grid .overlay-image-2 {
  width: 50%;
  height: 50%;
  bottom: 10%;
  right: 10%;
  object-fit: cover;
  z-index: 2;
  border: 5px solid var(--surface-color);
}

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

  .about-2 .image-grid .main-image {
    width: 100%;
    height: 100%;
    left: 0;
  }

  .about-2 .image-grid .overlay-image-1 {
    width: 45%;
    height: 45%;
    bottom: 0;
    left: 4%;
  }

  .about-2 .image-grid .overlay-image-2 {
    width: 45%;
    height: 45%;
    bottom: 0;
    right: 4%;
  }
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 .container-fluid {
  padding: 0;
}

.cards-2 .cards-slider {
  overflow: hidden;
}

.cards-2 .swiper-wrapper {
  height: auto !important;
  transition-timing-function: linear !important;
}

.cards-2 .card-item {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.cards-2 .card-item:hover .card-bg {
  transform: scale(1.1);
}

.cards-2 .card-item:hover .card-content {
  background: rgba(0, 0, 0, 0.7);
}

.cards-2 .card-item .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

.cards-2 .card-item .card-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease-in-out;
}

.cards-2 .card-item:hover .card-bg::before {
  background: rgba(0, 0, 0, 0.2);
}

.cards-2 .card-item .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cards-2 .card-item .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 24px;
}

.cards-2 .card-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1199px) {
  .cards-2 .card-item {
    height: 350px;
  }

  .cards-2 .card-item .card-content {
    padding: 25px;
  }

  .cards-2 .card-item .icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .cards-2 .card-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .cards-2 .card-item {
    height: 300px;
  }

  .cards-2 .card-item .card-content {
    padding: 20px;
  }

  .cards-2 .card-item .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .cards-2 .card-item h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

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

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations {
  padding-top: 60px;
  padding-bottom: 60px;
}

.featured-destinations .destination-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.featured-destinations .destination-card:hover .image-wrapper img {
  transform: scale(1.05);
}

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

.featured-destinations .image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.featured-destinations .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent 50%);
}

.featured-destinations .image-wrapper .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-destinations .image-wrapper .badge.featured {
  background: #ff6b35;
}

.featured-destinations .image-wrapper .badge.new {
  background: #28a745;
}

.featured-destinations .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.featured-destinations .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.featured-destinations .content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.featured-destinations .features {
  margin-bottom: 20px;
}

.featured-destinations .features .feature-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-right: 6px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-destinations .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.featured-destinations .card-footer .tours-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-destinations .card-footer .explore-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-destinations .card-footer .explore-btn i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.featured-destinations .destinations-cta {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  border-radius: 16px;
  text-align: center;
}

.featured-destinations .destinations-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.featured-destinations .destinations-cta p {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-destinations .destinations-cta .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.featured-destinations .destinations-cta .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.featured-destinations .destinations-cta .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.featured-destinations .destinations-cta .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.featured-destinations .destinations-cta .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.featured-destinations .destinations-cta .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-destinations .destination-card .image-wrapper {
    height: 200px;
  }

  .featured-destinations .destination-card .content {
    height: calc(100% - 200px);
    padding: 16px;
  }

  .featured-destinations .destination-card .content h4 {
    font-size: 16px;
  }

  .featured-destinations .destination-card .content p {
    font-size: 13px;
  }

  .featured-destinations .destination-card .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .featured-destinations .destination-card .card-footer .explore-btn {
    text-align: center;
    justify-content: center;
  }

  .featured-destinations .destinations-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }

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

  .featured-destinations .destinations-cta p {
    font-size: 14px;
  }

  .featured-destinations .destinations-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .featured-destinations .destinations-cta .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .featured-destinations .features .feature-tag {
    font-size: 10px;
    padding: 2px 6px;
    margin-right: 4px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team .team-intro {
    margin-bottom: 40px;
  }
}

.team .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.team .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

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

.team .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-10px);
}

.team .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team .member-card .member-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team .member-card .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team .member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .member-card .member-info span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.team .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

.team .member-card .member-bio p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.team .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team .team-carousel {
  overflow: visible;
}

.team .team-carousel .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-3 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-3 .about-title {
    font-size: 1.6rem;
  }
}

.about-3 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-3 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-3 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-3 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about-3 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-3 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-3 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-3 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-3 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-3 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-3 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-3 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-3 .content-card:hover .card-image img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-5 .media-wrap {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.about-5 .hero-figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-5 .hero-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-5 .hero-figure img {
    height: 300px;
  }
}

.about-5 .hero-figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 20%), transparent 80%);
  color: var(--contrast-color);
  font-size: 0.95rem;
}

.about-5 .hero-figure .floating-stats {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.about-5 .hero-figure .floating-stats .stat {
  display: grid;
  place-items: center;
  width: 86px;
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  backdrop-filter: blur(6px);
  text-align: center;
}

.about-5 .hero-figure .floating-stats .stat i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.about-5 .hero-figure .floating-stats .stat .value {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1.05rem;
  line-height: 1;
}

.about-5 .hero-figure .floating-stats .stat .label {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.1rem;
}

@media (max-width: 992px) {
  .about-5 .hero-figure .floating-stats .stat {
    width: 74px;
    padding: 0.5rem 0.4rem;
  }
}

@media (max-width: 576px) {
  .about-5 .hero-figure .floating-stats {
    display: none;
  }
}

.about-5 .thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.about-5 .thumb-grid .thumb-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: var(--surface-color);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about-5 .thumb-grid .thumb-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-5 .thumb-grid .thumb-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-5 .thumb-grid .thumb-item img {
    height: 110px;
  }
}

.about-5 .about-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 18px 50px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-5 .about-card .badge-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  margin-bottom: 1rem;
}

.about-5 .about-card .badge-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about-5 .about-card .badge-line .text {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.about-5 .about-card .title {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .about-5 .about-card .title {
    font-size: 1.7rem;
  }
}

.about-5 .about-card .lead {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
}

.about-5 .about-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.25rem;
}

.about-5 .about-card .milestones {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

.about-5 .about-card .milestones .milestone {
  display: grid;
  grid-template-columns: 44px auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-5 .about-card .milestones .milestone i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about-5 .about-card .milestones .milestone h4 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-weight: 700;
}

.about-5 .about-card .milestones .milestone p {
  margin: 0;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.about-5 .about-card .cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-5 .about-card .cta-row .btn-primary-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  transition: 0.3s ease;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.about-5 .about-card .cta-row .btn-primary-ghost:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about-5 .about-card .cta-row .mini-profile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.6rem 0.4rem 0.4rem;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-5 .about-card .cta-row .mini-profile img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.about-5 .about-card .cta-row .mini-profile .info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.about-5 .about-card .cta-row .mini-profile .info strong {
  font-size: 0.95rem;
  color: var(--heading-color);
}

.about-5 .about-card .cta-row .mini-profile .info small {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.about-5 .about-card .quote {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-5 .about-card .quote i {
  color: var(--accent-color);
  font-size: 1.2rem;
  line-height: 1;
}

.about-5 .about-card .quote p {
  margin: 0;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.about-5 .trust-logos {
  margin-top: 2rem;
}

.about-5 .trust-logos .logo-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 18px;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s ease;
}

.about-5 .trust-logos .logo-item img {
  opacity: 0.8;
  transition: 0.3s ease;
  max-height: 42px;
  object-fit: contain;
}

.about-5 .trust-logos .logo-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-5 .trust-logos .logo-item:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.about-5 .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.travel-tours {
  color: var(--default-color);
}

.travel-tours .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.travel-tours .search-container {
  background: var(--surface-color);
  border-radius: 60px;
  padding: 1rem;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-tours .search-container .search-bar {
  position: relative;
  margin-bottom: 1.5rem;
}

.travel-tours .search-container .search-bar .form-control {
  border: none;
  background: transparent;
  font-size: 1.125rem;
  padding: 1.25rem 4rem 1.25rem 1.5rem;
  color: var(--default-color);
}

.travel-tours .search-container .search-bar .form-control:focus {
  box-shadow: none;
  background: transparent;
}

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

.travel-tours .search-container .search-bar .search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.travel-tours .search-container .search-bar .search-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: color-mix(in srgb, var(--accent-color), #000 10%);
}

.travel-tours .search-container .search-bar .search-btn i {
  font-size: 1.25rem;
}

.travel-tours .search-container .filter-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.travel-tours .search-container .filter-pills .filter-pill {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .search-container .filter-pills .filter-pill:hover,
.travel-tours .search-container .filter-pills .filter-pill.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.travel-tours .featured-hero-tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  padding: 3rem;
}

@media (max-width: 992px) {
  .travel-tours .featured-hero-tour {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.travel-tours .featured-hero-tour .featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .travel-tours .featured-hero-tour .featured-image img {
    height: 300px;
  }
}

.travel-tours .featured-hero-tour .featured-content .featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.travel-tours .featured-hero-tour .featured-content h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .travel-tours .featured-hero-tour .featured-content h3 {
    font-size: 2rem;
  }
}

.travel-tours .featured-hero-tour .featured-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span.rating {
  color: var(--accent-color);
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span.rating i {
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-price {
  margin-bottom: 2rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-price .from {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-tours .featured-hero-tour .featured-content .featured-price .amount {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-left: 0.5rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 576px) {
  .travel-tours .featured-hero-tour .featured-content .featured-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.travel-tours .section-subtitle {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 3rem;
  text-align: center;
}

.travel-tours .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.travel-tours .categories-grid .category-item {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .categories-grid .category-item:hover {
  transform: translateY(-5px);
}

.travel-tours .categories-grid .category-item:hover .category-visual img {
  transform: scale(1.05);
}

.travel-tours .categories-grid .category-item .category-visual {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.travel-tours .categories-grid .category-item .category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-tours .categories-grid .category-item h5 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.travel-tours .categories-grid .category-item .tour-count {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-tours .tours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.travel-tours .tours-header .view-toggle {
  display: flex;
  gap: 0.5rem;
}

.travel-tours .tours-header .view-toggle .toggle-btn {
  padding: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  border-radius: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.travel-tours .tours-header .view-toggle .toggle-btn.active,
.travel-tours .tours-header .view-toggle .toggle-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-tours .tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.travel-tours .tours-grid .tour-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.travel-tours .tours-grid .tour-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-tours .tours-grid .tour-item:hover .tour-image img {
  transform: scale(1.03);
}

.travel-tours .tours-grid .tour-item .tour-image {
  position: relative;
  overflow: hidden;
}

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

.travel-tours .tours-grid .tour-item .tour-image .tour-availability {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  backdrop-filter: blur(10px);
  color: var(--default-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.travel-tours .tours-grid .tour-item .tour-details {
  padding: 2rem;
}

.travel-tours .tours-grid .tour-item .tour-details h4 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.travel-tours .tours-grid .tour-item .tour-details p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights span i {
  color: var(--accent-color);
  font-size: 0.875rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing .price {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--accent-color);
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing .per {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-tours .offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.travel-tours .offers-container .offer-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.travel-tours .offers-container .offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tours .offers-container .offer-card .offer-image {
  height: 200px;
  overflow: hidden;
}

.travel-tours .offers-container .offer-card .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-tours .offers-container .offer-card .offer-content {
  padding: 2rem;
}

.travel-tours .offers-container .offer-card .offer-content .offer-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.travel-tours .offers-container .offer-card .offer-content h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.travel-tours .offers-container .offer-card .offer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.travel-tours .offers-container .offer-card .offer-content .offer-validity {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.travel-tours .consultation-cta {
  text-align: center;
  background: var(--surface-color);
  padding: 4rem 3rem;
  border-radius: 20px;
}

.travel-tours .consultation-cta h3 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.travel-tours .consultation-cta p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.travel-tours .consultation-cta .cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .travel-tours .consultation-cta .cta-actions {
    flex-direction: column;
  }
}

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

.travel-tours .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.travel-tours .btn-accent {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  border: none;
  color: var(--contrast-color);
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.travel-tours .btn-text {
  background: transparent;
  border: none;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.travel-tours .btn-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.travel-tours .btn-text:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.travel-tours .btn-text:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Travel Booking Section
--------------------------------------------------------------*/
.travel-booking .booking-form {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .travel-booking .booking-form {
    padding: 30px 20px;
  }
}

.travel-booking .booking-step {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.travel-booking .booking-step .step-header {
  margin-bottom: 30px;
}

.travel-booking .booking-step .step-header h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.travel-booking .booking-step .step-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  font-size: 16px;
}

.travel-booking .form-group {
  margin-bottom: 25px;
}

.travel-booking .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
}

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

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

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

.travel-booking .add-ons-grid {
  display: grid;
  gap: 20px;
}

.travel-booking .add-ons-grid .add-on-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.travel-booking .add-ons-grid .add-on-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 3px 15px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.travel-booking .add-ons-grid .add-on-item .add-on-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header input[type=checkbox] {
  margin-top: 2px;
  accent-color: var(--accent-color);
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label {
  flex: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 600;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label i {
  color: var(--accent-color);
  font-size: 20px;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label .price {
  margin-left: auto;
  color: var(--accent-color);
  font-weight: 700;
}

.travel-booking .add-ons-grid .add-on-item p {
  margin: 0;
  padding-left: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.travel-booking .payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.travel-booking .payment-methods .payment-method {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.travel-booking .payment-methods .payment-method.active,
.travel-booking .payment-methods .payment-method:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.travel-booking .payment-methods .payment-method input[type=radio] {
  display: none;
}

.travel-booking .payment-methods .payment-method label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 600;
}

.travel-booking .payment-methods .payment-method label i {
  font-size: 24px;
  color: var(--accent-color);
}

.travel-booking .credit-card-form {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.travel-booking .secure-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 14px;
}

.travel-booking .secure-badge i {
  color: var(--accent-color);
  font-size: 20px;
}

.travel-booking .terms-conditions {
  margin-bottom: 30px;
}

.travel-booking .terms-conditions .form-check {
  margin-bottom: 15px;
}

.travel-booking .terms-conditions .form-check .form-check-input {
  accent-color: var(--accent-color);
  margin-top: 2px;
}

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

.travel-booking .terms-conditions .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: underline;
}

.travel-booking .terms-conditions .form-check .form-check-label a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.travel-booking .form-actions {
  text-align: center;
}

.travel-booking .form-actions .btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.travel-booking .form-actions .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.travel-booking .booking-summary {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .travel-booking .booking-summary {
    position: static;
    margin-top: 40px;
  }
}

.travel-booking .booking-summary .summary-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.travel-booking .booking-summary .summary-header h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 0;
}

.travel-booking .booking-summary .selected-tour {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.travel-booking .booking-summary .selected-tour img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.travel-booking .booking-summary .selected-tour .tour-info {
  flex: 1;
}

.travel-booking .booking-summary .selected-tour .tour-info h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.travel-booking .booking-summary .selected-tour .tour-info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  margin-bottom: 8px;
}

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
}

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating i {
  color: #ffc107;
  font-size: 12px;
}

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating span {
  margin-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-booking .booking-summary .booking-details {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.travel-booking .booking-summary .booking-details .detail-row:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .booking-details .detail-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-booking .booking-summary .booking-details .detail-row span:last-child {
  color: var(--heading-color);
  font-weight: 600;
}

.travel-booking .booking-summary .price-breakdown {
  margin-bottom: 25px;
}

.travel-booking .booking-summary .price-breakdown h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.travel-booking .booking-summary .price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.travel-booking .booking-summary .price-breakdown .price-row:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .price-breakdown .price-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-booking .booking-summary .price-breakdown .price-row span:last-child {
  color: var(--heading-color);
  font-weight: 500;
}

.travel-booking .booking-summary .price-breakdown .price-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
}

.travel-booking .booking-summary .payment-security {
  margin-bottom: 25px;
  padding: 15px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 8px;
}

.travel-booking .booking-summary .payment-security .security-badges,
.travel-booking .booking-summary .payment-security .accepted-cards {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
}

.travel-booking .booking-summary .payment-security .security-badges:last-child,
.travel-booking .booking-summary .payment-security .accepted-cards:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .payment-security .security-badges i,
.travel-booking .booking-summary .payment-security .accepted-cards i {
  color: var(--accent-color);
  font-size: 16px;
}

.travel-booking .booking-summary .payment-security .security-badges span,
.travel-booking .booking-summary .payment-security .accepted-cards span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.travel-booking .booking-summary .help-section h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.travel-booking .booking-summary .help-section p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 15px;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item i {
  color: var(--accent-color);
  font-size: 16px;
  width: 16px;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item span {
  color: var(--heading-color);
  font-weight: 500;
}

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

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing 4 Section
--------------------------------------------------------------*/
.pricing-4 {
  padding-top: 60px;
  padding-bottom: 59px;
}

.pricing-4 .pricing-item {
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing-4 .pricing-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.pricing-4 .pricing-item h4 {
  margin: 0;
  font-size: 18px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-2 .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact-2 .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact-2 .contact-info .info-item {
  font-size: 1.1rem;
}

.contact-2 .contact-info .info-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.contact-2 .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-2 .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact-2 .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact-2 .contact-info .map-link:hover i {
  transform: translateX(5px);
}

.contact-2 .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.contact-2 .contact-form .form-control,
.contact-2 .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

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

.contact-2 .contact-form .form-control::placeholder,
.contact-2 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-2 .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-2 .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact-2 .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

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

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Speaker Details Section
--------------------------------------------------------------*/
.speaker-details .speaker-profile-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.speaker-details .speaker-profile-card .profile-image-wrapper {
  position: relative;
}

.speaker-details .speaker-profile-card .profile-image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .speaker-details .speaker-profile-card .profile-image-wrapper img {
    height: 280px;
  }
}

.speaker-details .speaker-profile-card .profile-image-wrapper .speaker-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.speaker-details .speaker-profile-card .profile-image-wrapper .speaker-status .status-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.speaker-details .speaker-profile-card .profile-image-wrapper .speaker-status .status-badge.keynote {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
}

.speaker-details .speaker-profile-card .profile-content {
  padding: 2rem;
}

.speaker-details .speaker-profile-card .profile-content .speaker-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.speaker-details .speaker-profile-card .profile-content .speaker-title {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.speaker-details .speaker-profile-card .profile-content .speaker-company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.speaker-details .speaker-profile-card .profile-content .speaker-company i {
  color: var(--accent-color);
}

.speaker-details .speaker-profile-card .profile-content .connection-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.speaker-details .speaker-profile-card .profile-content .connection-stats .stat-item {
  text-align: center;
}

.speaker-details .speaker-profile-card .profile-content .connection-stats .stat-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.2;
}

.speaker-details .speaker-profile-card .profile-content .connection-stats .stat-item .stat-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speaker-details .speaker-profile-card .profile-content .social-connections {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.speaker-details .speaker-profile-card .profile-content .social-connections .social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.speaker-details .speaker-profile-card .profile-content .social-connections .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
}

.speaker-details .speaker-profile-card .profile-content .social-connections .social-btn.linkedin:hover {
  border-color: #0077b5;
  color: #0077b5;
  background: color-mix(in srgb, #0077b5, transparent 95%);
}

.speaker-details .speaker-profile-card .profile-content .social-connections .social-btn.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
  background: color-mix(in srgb, #1da1f2, transparent 95%);
}

.speaker-details .speaker-profile-card .profile-content .social-connections .social-btn.website:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.speaker-details .speaker-highlight {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.speaker-details .speaker-highlight .quote-container {
  position: relative;
}

.speaker-details .speaker-highlight .quote-container .quote-icon {
  position: absolute;
  top: -15px;
  left: -10px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-details .speaker-highlight .quote-container .quote-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.speaker-details .speaker-highlight .quote-container blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--heading-color);
  margin: 0;
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .speaker-details .speaker-highlight .quote-container blockquote {
    font-size: 1.1rem;
    padding-left: 2rem;
  }
}

.speaker-details .speaker-biography,
.speaker-details .session-schedule {
  margin-bottom: 2.5rem;
}

.speaker-details .speaker-biography .section-header,
.speaker-details .session-schedule .section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.speaker-details .speaker-biography .section-header h3,
.speaker-details .session-schedule .section-header h3 {
  font-size: 1.6rem;
  color: var(--heading-color);
  margin: 0;
  white-space: nowrap;
}

.speaker-details .speaker-biography .section-header .header-line,
.speaker-details .session-schedule .section-header .header-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.speaker-details .speaker-biography .bio-content p,
.speaker-details .session-schedule .bio-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.speaker-details .speaker-biography .bio-content .expertise-areas,
.speaker-details .session-schedule .bio-content .expertise-areas {
  margin-top: 2rem;
}

.speaker-details .speaker-biography .bio-content .expertise-areas h4,
.speaker-details .session-schedule .bio-content .expertise-areas h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.speaker-details .speaker-biography .bio-content .expertise-areas .tags-list,
.speaker-details .session-schedule .bio-content .expertise-areas .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.speaker-details .speaker-biography .bio-content .expertise-areas .tags-list .expertise-tag,
.speaker-details .session-schedule .bio-content .expertise-areas .tags-list .expertise-tag {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.speaker-details .schedule-timeline {
  position: relative;
  padding-left: 2rem;
}

.speaker-details .schedule-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.speaker-details .schedule-timeline .timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.speaker-details .schedule-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.speaker-details .schedule-timeline .timeline-item.featured .timeline-content {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
}

.speaker-details .schedule-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
}

.speaker-details .schedule-timeline .timeline-item .timeline-marker .marker-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: 8px;
  border: 3px solid var(--surface-color);
}

.speaker-details .schedule-timeline .timeline-item .timeline-marker .marker-dot.keynote {
  background: var(--accent-color);
}

.speaker-details .schedule-timeline .timeline-item .timeline-marker .marker-dot.workshop {
  background: #10b981;
}

.speaker-details .schedule-timeline .timeline-item .timeline-marker .marker-dot.panel {
  background: #8b5cf6;
}

.speaker-details .schedule-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-tag.keynote {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-tag.workshop {
  background: #10b981;
  color: white;
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-tag.panel {
  background: #8b5cf6;
  color: white;
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-name {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .speaker-details .schedule-timeline .timeline-item .timeline-content .session-meta-grid {
    grid-template-columns: 1fr;
  }
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-meta-grid .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-meta-grid .meta-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.speaker-details .schedule-timeline .timeline-item .timeline-content .session-summary {
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.speaker-details .speaker-cta {
  padding: 2rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.speaker-details .speaker-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .speaker-details .speaker-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.speaker-details .speaker-cta .cta-buttons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  justify-content: center;
}

.speaker-details .speaker-cta .cta-buttons a.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.speaker-details .speaker-cta .cta-buttons a.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.speaker-details .speaker-cta .cta-buttons a.btn-secondary {
  background: var(--heading-color);
  color: var(--background-color);
  border: 2px solid var(--heading-color);
}

.speaker-details .speaker-cta .cta-buttons a.btn-secondary:hover {
  background: transparent;
  color: var(--heading-color);
  transform: translateY(-2px);
}

.speaker-details .speaker-cta .cta-buttons a.btn-outline {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.speaker-details .speaker-cta .cta-buttons a.btn-outline:hover {
  background: var(--default-color);
  color: var(--background-color);
  border-color: var(--default-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 80px;
  padding-bottom: 80px;
}

.call-to-action .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .call-to-action .content-wrapper {
    padding-right: 0;
    margin-bottom: 48px;
  }
}

.call-to-action .section-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.call-to-action h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.call-to-action .content-wrapper>p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.call-to-action .trust-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .call-to-action .trust-metrics {
    flex-direction: column;
    gap: 20px;
  }
}

.call-to-action .trust-metrics .metric-item .metric-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.call-to-action .trust-metrics .metric-item .metric-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.call-to-action .certifications {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.call-to-action .certifications img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.call-to-action .certifications img:hover {
  opacity: 1;
}

.call-to-action .cta-box {
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .call-to-action .cta-box {
    padding: 32px 24px;
  }
}

.call-to-action .cta-header {
  margin-bottom: 32px;
}

.call-to-action .cta-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .call-to-action .cta-header h3 {
    font-size: 24px;
  }
}

.call-to-action .cta-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.call-to-action .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .call-to-action .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.call-to-action .benefit-item {
  display: flex;
  gap: 16px;
}

.call-to-action .benefit-item .benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 6px;
}

.call-to-action .benefit-item .benefit-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.call-to-action .benefit-item .benefit-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.call-to-action .benefit-item .benefit-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.5;
}

.call-to-action .action-area {
  padding-top: 32px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.call-to-action .action-area .btn-primary,
.call-to-action .action-area .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-to-action .action-area .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .action-area .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  color: var(--contrast-color);
}

.call-to-action .action-area .btn-secondary {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action .action-area .btn-secondary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (min-width: 576px) {
  .call-to-action .action-area {
    flex-direction: row;
    align-items: center;
  }

  .call-to-action .action-area .btn-primary,
  .call-to-action .action-area .btn-secondary {
    flex: 1;
  }
}

.call-to-action .action-area .contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 8px;
}

@media (min-width: 576px) {
  .call-to-action .action-area .contact-info {
    margin-top: 0;
    margin-left: auto;
    flex-shrink: 0;
  }
}

.call-to-action .action-area .contact-info i {
  font-size: 16px;
  color: var(--accent-color);
}

.call-to-action .action-area .contact-info strong {
  color: var(--default-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
.login {
  position: relative;
}

.login .login-form-wrapper {
  padding: 50px 40px;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login .login-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
}

.login .login-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767.98px) {
  .login .login-form-wrapper {
    padding: 40px 25px;
  }
}

.login .login-header {
  margin-bottom: 35px;
}

.login .login-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login .login-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

.login .form-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--heading-color);
  letter-spacing: 0.3px;
}

.login .form-control {
  padding: 14px 18px;
  border-radius: 4px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  font-size: 15px;
  transition: all 0.3s ease;
  color: var(--default-color);
}

.login .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

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

.login .forgot-link {
  font-size: 13px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.login .forgot-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

.login .form-check .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.2em;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 6px;
}

.login .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.login .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
}

.login .form-check .form-check-label {
  font-size: 14px;
  padding-left: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.login .btn {
  padding: 14px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.login .btn.btn-primary {
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  border: none;
  color: var(--contrast-color);
}

.login .btn.btn-primary:hover {
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), #000 10%), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.login .btn.btn-primary:active {
  transform: translateY(0);
}

.login .btn.btn-outline {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  transform: translateY(-2px);
}

.login .btn.btn-outline i {
  font-size: 18px;
}

.login .signup-link {
  margin-top: 25px;
}

.login .signup-link span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.login .signup-link a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s;
}

.login .signup-link a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .register-card {
  background-color: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.register .register-card .shape-1,
.register .register-card .shape-2 {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.register .register-card .shape-1 {
  width: 300px;
  height: 300px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  top: -150px;
  right: -150px;
}

.register .register-card .shape-2 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--heading-color), transparent 92%);
  bottom: -100px;
  left: -100px;
}

.register .card-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.register .card-header .brand-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.register .card-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.register .card-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .form-group {
  position: relative;
  z-index: 1;
}

.register .form-group .input-wrapper {
  position: relative;
}

.register .form-group .input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.register .form-group .input-wrapper .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease;
}

.register .form-group .input-wrapper .toggle-password:hover {
  color: var(--heading-color);
}

.register .form-group .input-wrapper .form-control {
  height: 3.25rem;
  padding: 1.25rem 1rem 0.25rem 2.75rem;
  border: 2px solid transparent;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
  color: var(--default-color);
}

.register .form-group .input-wrapper .form-control::placeholder {
  color: transparent;
}

.register .form-group .input-wrapper .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.register .form-group .input-wrapper .form-control:focus~label {
  transform: translateY(-0.5rem) scale(0.85);
  color: var(--accent-color);
}

.register .form-group .input-wrapper .form-control:focus~.input-icon {
  color: var(--accent-color);
}

.register .form-group .input-wrapper .form-control:not(:placeholder-shown)~label {
  transform: translateY(-0.5rem) scale(0.85);
  color: var(--heading-color);
}

.register .form-group .input-wrapper .form-control:not(:placeholder-shown) {
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register .form-group .input-wrapper label {
  position: absolute;
  left: 2.75rem;
  top: 0.75rem;
  margin: 0;
  transition: all 0.3s ease;
  transform-origin: 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  pointer-events: none;
  font-size: 0.9rem;
}

.register .password-strength {
  margin-top: 0.75rem;
}

.register .password-strength .strength-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
  display: block;
}

.register .password-strength .strength-meter {
  display: flex;
  gap: 4px;
}

.register .password-strength .strength-meter .meter-segment {
  height: 4px;
  flex: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.register .password-strength .strength-meter .meter-segment.weak {
  background-color: #dc3545;
}

.register .password-strength .strength-meter .meter-segment.fair {
  background-color: #ffc107;
}

.register .password-strength .strength-meter .meter-segment.good {
  background-color: #0dcaf0;
}

.register .password-strength .strength-meter .meter-segment.strong {
  background-color: #198754;
}

.register .signup-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register .signup-options .option {
  position: relative;
}

.register .signup-options .option .custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.register .signup-options .option .custom-checkbox:checked+label .check-icon {
  opacity: 1;
  transform: scale(1);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register .signup-options .option .custom-checkbox:focus+label .check-icon {
  border-color: var(--accent-color);
}

.register .signup-options .option label {
  padding-left: 2rem;
  position: relative;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.register .signup-options .option label .check-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
  color: var(--contrast-color);
  opacity: 0;
  transform: scale(0.8);
}

.register .signup-options .option label .check-icon:not(.checked) {
  opacity: 1;
  transform: scale(1);
}

.register .signup-options .option label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.register .signup-options .option label a:hover {
  text-decoration: underline;
}

.register .btn-primary {
  padding: 0.875rem;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.register .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.register .btn-primary:active {
  transform: translateY(0);
}

.register .card-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.register .card-footer p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .card-footer .sign-in-link {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
}

.register .card-footer .sign-in-link:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .register .register-card {
    padding: 2rem 1.5rem;
  }

  .register .register-card .card-header {
    margin-bottom: 2rem;
  }

  .register .register-card .card-header h2 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Register 2 Section
--------------------------------------------------------------*/
.register-2 .registration-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.register-2 .image-column {
  position: relative;
  min-height: 600px;
  padding: 0;
}

.register-2 .image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.register-2 .image-column .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.register-2 .image-column .overlay .content {
  color: var(--contrast-color);
}

.register-2 .image-column .overlay .content h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.register-2 .image-column .overlay .content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.register-2 .register-form {
  padding: 3rem;
}

.register-2 .register-form h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.register-2 .register-form .social-register .btn-outline {
  padding: 0.8rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--heading-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.register-2 .register-form .social-register .btn-outline:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.register-2 .register-form .social-register .btn-outline i {
  font-size: 1.1rem;
}

.register-2 .register-form .social-register .divider {
  text-align: center;
  position: relative;
  margin: 2rem 0;
}

.register-2 .register-form .social-register .divider::before,
.register-2 .register-form .social-register .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 4rem);
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register-2 .register-form .social-register .divider::before {
  left: 0;
}

.register-2 .register-form .social-register .divider::after {
  right: 0;
}

.register-2 .register-form .social-register .divider span {
  background-color: var(--surface-color);
  padding: 0 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.register-2 .register-form .form-floating>.form-control {
  padding: 1.25rem 1rem 0.25rem 0.75rem;
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: transparent;
  color: var(--default-color);
}

.register-2 .register-form .form-floating>.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.register-2 .register-form .form-floating>.form-control:focus~label {
  color: var(--accent-color);
}

.register-2 .register-form .form-floating>.form-control:focus~label:after {
  background: transparent;
}

.register-2 .register-form .form-floating>.form-control:not(:placeholder-shown) {
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register-2 .register-form .form-floating>.form-control:not(:placeholder-shown)~label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register-2 .register-form .form-floating>.form-control:not(:placeholder-shown)~label:after {
  background: transparent;
}

.register-2 .register-form .form-floating>label {
  padding: 1rem 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.register-2 .register-form .form-floating>label:after {
  background: transparent;
}

.register-2 .register-form .toggle-password {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease;
  z-index: 5;
}

.register-2 .register-form .toggle-password:hover {
  color: var(--heading-color);
}

.register-2 .register-form .form-check .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 0.5rem;
  cursor: pointer;
}

.register-2 .register-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register-2 .register-form .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.register-2 .register-form .form-check .form-check-label {
  font-size: 0.9rem;
}

.register-2 .register-form .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.register-2 .register-form .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.register-2 .register-form .btn-primary {
  padding: 0.8rem;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.register-2 .register-form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.register-2 .register-form .btn-primary:active {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .register-2 .register-form {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .register-2 .register-form {
    padding: 1.5rem;
  }

  .register-2 .register-form h2 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Register 3 Section
--------------------------------------------------------------*/
.register-3 .registration-form-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 60px 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.register-3 .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.register-3 .decorative-elements .circle {
  position: absolute;
  border-radius: 50%;
}

.register-3 .decorative-elements .circle.circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register-3 .decorative-elements .circle.circle-2 {
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 97%));
}

.register-3 .decorative-elements .circle.circle-3 {
  top: 40%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--accent-color), transparent 90%));
}

.register-3 .decorative-elements .square {
  position: absolute;
  transform: rotate(45deg);
}

.register-3 .decorative-elements .square.square-1 {
  top: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register-3 .decorative-elements .square.square-2 {
  bottom: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 85%), color-mix(in srgb, var(--heading-color), transparent 95%));
}

.register-3 .form-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.register-3 .form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-3 .form-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register-3 form {
  position: relative;
  z-index: 1;
}

.register-3 form .form-floating {
  margin-bottom: 1rem;
}

.register-3 form .form-floating .form-control,
.register-3 form .form-floating .form-select {
  height: 60px;
  padding: 1rem 1rem 0.5rem;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  color: var(--default-color);
}

.register-3 form .form-floating .form-control:focus,
.register-3 form .form-floating .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.register-3 form .form-floating .form-control:focus~label,
.register-3 form .form-floating .form-select:focus~label {
  color: var(--accent-color);
}

.register-3 form .form-floating .form-control:focus~label:after,
.register-3 form .form-floating .form-select:focus~label:after {
  background: transparent;
}

.register-3 form .form-floating .form-control::placeholder,
.register-3 form .form-floating .form-select::placeholder {
  color: transparent;
}

.register-3 form .form-floating .form-control:not(:placeholder-shown)~label,
.register-3 form .form-floating .form-select:not(:placeholder-shown)~label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register-3 form .form-floating .form-control:not(:placeholder-shown)~label:after,
.register-3 form .form-floating .form-select:not(:placeholder-shown)~label:after {
  background: transparent;
}

.register-3 form .form-floating label {
  padding: 1rem 1rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.register-3 form .form-floating label:after {
  background: transparent;
}

.register-3 form .form-check {
  padding-left: 1.8rem;
  margin-top: 1rem;
}

.register-3 form .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: -1.8rem;
  margin-top: 0.15rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.register-3 form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register-3 form .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register-3 form .form-check .form-check-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.register-3 form .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.register-3 form .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.register-3 .btn-register {
  position: relative;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  color: var(--contrast-color);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.register-3 .btn-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.register-3 .btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register-3 .btn-register:hover::before {
  left: 100%;
}

.register-3 .btn-register:active {
  transform: translateY(0);
}

.register-3 .login-link {
  margin-top: 1.5rem;
}

.register-3 .login-link p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register-3 .login-link p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.register-3 .login-link p a:hover {
  text-decoration: underline;
}

.register-3 .social-login {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.register-3 .social-login .divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register-3 .social-login .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register-3 .social-login .divider span {
  position: relative;
  background-color: var(--surface-color);
  padding: 0 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register-3 .social-login .social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.register-3 .social-login .social-buttons .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  border-radius: 12px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.register-3 .social-login .social-buttons .btn-social i {
  font-size: 1.2rem;
}

.register-3 .social-login .social-buttons .btn-social i.bi-google {
  color: #DB4437;
}

.register-3 .social-login .social-buttons .btn-social i.bi-facebook {
  color: #4267B2;
}

.register-3 .social-login .social-buttons .btn-social i.bi-apple {
  color: #000000;
}

.register-3 .social-login .social-buttons .btn-social:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.register-3 .social-login .social-buttons .btn-social:active {
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .register-3 {
    padding: 2rem 1.5rem;
    margin: 40px 0;
  }

  .register-3 .form-header h2 {
    font-size: 1.8rem;
  }

  .register-3 .form-header p {
    font-size: 1rem;
  }

  .register-3 .social-buttons {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%), var(--surface-color));
}

.steps .steps-header {
  margin-bottom: 4rem;
}

.steps .steps-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .steps .steps-header h2 {
    font-size: 2.2rem;
  }
}

.steps .steps-header .lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--default-color);
  line-height: 1.6;
}

.steps .steps-container {
  margin-bottom: 4rem;
}

.steps .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
}

@media (min-width: 992px) {
  .steps .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .steps .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.steps .step-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.steps .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.steps .step-card:hover .step-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1) rotate(5deg);
}

.steps .step-card:hover .step-arrow {
  opacity: 1;
  transform: translateX(10px);
}

.steps .step-card .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .steps .step-card .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

.steps .step-card .step-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.steps .step-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .steps .step-card h3 {
    font-size: 1.2rem;
  }
}

.steps .step-card p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.steps .step-card .step-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
}

@media (max-width: 991px) {
  .steps .step-card .step-arrow {
    display: none;
  }
}

.steps .step-card:nth-child(4) .step-arrow {
  display: none;
}

.steps .steps-cta-bottom .cta-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.steps .steps-cta-bottom .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 576px) {
  .steps .steps-cta-bottom .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.steps .steps-cta-bottom .cta-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-width: 180px;
}

@media (max-width: 576px) {
  .steps .steps-cta-bottom .cta-buttons .btn {
    min-width: 200px;
  }
}

.steps .steps-cta-bottom .cta-buttons .btn-primary {
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border: none;
  color: var(--contrast-color);
}

.steps .steps-cta-bottom .cta-buttons .btn-primary:hover {
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), #000 10%), color-mix(in srgb, var(--accent-color), #000 30%));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.steps .steps-cta-bottom .cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.steps .steps-cta-bottom .cta-buttons .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --basic-plan-color: #45B7D1;
  --standard-plan-color: #ee8d1e;
  --pro-plan-color: #b4194a;
  --enterprise-plan-color: #7367F0;
}

.pricing .pricing-cards {
  perspective: 1000px;
}

.pricing .pricing-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-card:hover {
  transform: translateZ(20px) rotateX(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.basic {
  border-top: 5px solid var(--basic-plan-color);
}

.pricing .pricing-card.basic .icon-wrapper {
  background-color: var(--basic-plan-color);
}

.pricing .pricing-card.standard {
  border-top: 5px solid var(--standard-plan-color);
}

.pricing .pricing-card.standard .icon-wrapper {
  background-color: var(--standard-plan-color);
}

.pricing .pricing-card.pro {
  border-top: 5px solid var(--pro-plan-color);
}

.pricing .pricing-card.pro .icon-wrapper {
  background-color: var(--pro-plan-color);
}

.pricing .pricing-card.enterprise {
  border-top: 5px solid var(--enterprise-plan-color);
}

.pricing .pricing-card.enterprise .icon-wrapper {
  background-color: var(--enterprise-plan-color);
}

.pricing .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.pricing .pricing-card .pricing-header .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
}

.pricing .pricing-card .pricing-header .icon-wrapper i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.pricing .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.pricing .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--heading-color);
}

.pricing .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  font-weight: 400;
  margin-left: -4px;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.pricing .pricing-card .features-list li i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .features-list li i.bi-check-lg {
  color: #4CAF50;
}

.pricing .pricing-card .features-list li i.bi-x-lg {
  color: #F44336;
}

.pricing .pricing-card .btn-custom {
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing .pricing-card .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing .pricing-card .btn-custom:hover::before {
  width: 100%;
}

.pricing .pricing-card.basic .btn-custom {
  background-color: var(--basic-plan-color);
}

.pricing .pricing-card.standard .btn-custom {
  background-color: var(--standard-plan-color);
}

.pricing .pricing-card.pro .btn-custom {
  background-color: var(--pro-plan-color);
}

.pricing .pricing-card.enterprise .btn-custom {
  background-color: var(--enterprise-plan-color);
}

@media (max-width: 991.98px) {
  .pricing .pricing-card {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
.pricing-2 {
  --basic-plan-color: #45B7D1;
  --standard-plan-color: #ee8d1e;
  --pro-plan-color: #b4194a;
  --enterprise-plan-color: #7367F0;
}

.pricing-2 .pricing-cards {
  perspective: 1000px;
}

.pricing-2 .pricing-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-2 .pricing-card:hover {
  transform: translateZ(20px) rotateX(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-2 .pricing-card.basic {
  border-top: 5px solid var(--basic-plan-color);
}

.pricing-2 .pricing-card.basic .icon-wrapper {
  background-color: var(--basic-plan-color);
}

.pricing-2 .pricing-card.standard {
  border-top: 5px solid var(--standard-plan-color);
}

.pricing-2 .pricing-card.standard .icon-wrapper {
  background-color: var(--standard-plan-color);
}

.pricing-2 .pricing-card.pro {
  border-top: 5px solid var(--pro-plan-color);
}

.pricing-2 .pricing-card.pro .icon-wrapper {
  background-color: var(--pro-plan-color);
}

.pricing-2 .pricing-card.enterprise {
  border-top: 5px solid var(--enterprise-plan-color);
}

.pricing-2 .pricing-card.enterprise .icon-wrapper {
  background-color: var(--enterprise-plan-color);
}

.pricing-2 .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.pricing-2 .pricing-card .pricing-header .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
}

.pricing-2 .pricing-card .pricing-header .icon-wrapper i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.pricing-2 .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.pricing-2 .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--heading-color);
}

.pricing-2 .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-2 .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  font-weight: 400;
  margin-left: -4px;
}

.pricing-2 .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-2 .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.pricing-2 .pricing-card .features-list li i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing-2 .pricing-card .features-list li i.bi-check-lg {
  color: #4CAF50;
}

.pricing-2 .pricing-card .features-list li i.bi-x-lg {
  color: #F44336;
}

.pricing-2 .pricing-card .btn-custom {
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-2 .pricing-card .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing-2 .pricing-card .btn-custom:hover::before {
  width: 100%;
}

.pricing-2 .pricing-card.basic .btn-custom {
  background-color: var(--basic-plan-color);
}

.pricing-2 .pricing-card.standard .btn-custom {
  background-color: var(--standard-plan-color);
}

.pricing-2 .pricing-card.pro .btn-custom {
  background-color: var(--pro-plan-color);
}

.pricing-2 .pricing-card.enterprise .btn-custom {
  background-color: var(--enterprise-plan-color);
}

@media (max-width: 991.98px) {
  .pricing-2 .pricing-card {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Faq 3 Section
--------------------------------------------------------------*/
.faq-3 .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-3 .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq-3 .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq-3 .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq-3 .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq-3 .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-3 .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq-3 .faq-sidebar .contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq-3 .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-3 .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq-3 .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq-3 .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq-3 .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq-3 .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq-3 .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq-3 .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-3 .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq-3 .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq-3 .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-3 .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq-3 .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-3 .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq-3 .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq-3 .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq-3 .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq-3 .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq-3 .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq-3 .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq-3 .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq-3 .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq-3 .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq-3 .faq-item {
    padding: 20px;
  }

  .faq-3 .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq-3 .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.hero-4 .container,
.hero-4 .container-fluid {
  position: relative;
  z-index: 2;
}

.hero-4 .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero-4 .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero-4 .agency-name {
  margin-bottom: 1.5rem;
}

.hero-4 .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero-4 .main-heading {
  margin-bottom: 2rem;
}

.hero-4 .main-heading h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero-4 .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero-4 .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-4 .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero-4 .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero-4 .divider {
    width: 100%;
  }
}

.hero-4 .description {
  margin-bottom: 2.5rem;
}

.hero-4 .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.hero-4 .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-4 .cta-button .btn span {
  margin-right: 0.5rem;
}

.hero-4 .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero-4 .cta-button .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-4 .cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero-4 .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-4 .visual-content {
    flex-direction: column;
  }
}

.hero-4 .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero-4 .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-4 .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero-4 .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero-4 .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero-4 .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero-4 .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero-4 .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero-4 .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-4 .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.hero-9 .blog-hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-9 .blog-hero-item {
  position: relative;
  height: 80vh;
  min-height: 600px;
}

.hero-9 .blog-hero-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-9 .blog-hero-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-9 .blog-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 60px;
  color: var(--contrast-color);
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.hero-9 .blog-hero-content .category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-9 .blog-hero-content h1 {
  color: var(--contrast-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

@media (max-width: 767px) {
  .hero-9 .blog-hero-content h1 {
    font-size: 28px;
  }
}

.hero-9 .blog-hero-content .meta {
  margin-bottom: 30px;
  font-size: 14px;
}

.hero-9 .blog-hero-content .meta span {
  display: inline-block;
  margin-right: 20px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.hero-9 .blog-hero-content .meta span:last-child {
  margin-right: 0;
}

.hero-9 .blog-hero-content .meta span a {
  color: var(--contrast-color);
  font-weight: 600;
}

.hero-9 .blog-hero-content .meta span a:hover {
  color: var(--accent-color);
}

@media (max-width: 767px) {
  .hero-9 .blog-hero-content .meta span {
    display: block;
    margin: 0 0 10px 0;
  }
}

.hero-9 .blog-hero-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
}

.hero-9 .blog-hero-content .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero-9 .blog-hero-content .read-more:hover {
  color: var(--accent-color);
}

.hero-9 .blog-hero-content .read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .hero-9 .blog-hero-content {
    padding: 30px;
  }
}

.hero-9 .swiper-button-prev,
.hero-9 .swiper-button-next {
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
}

.hero-9 .swiper-button-prev::after,
.hero-9 .swiper-button-next::after {
  font-size: 32px;
}

.hero-9 .swiper-button-prev:hover,
.hero-9 .swiper-button-next:hover {
  color: var(--accent-color);
}

.hero-9 .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Checkout 2 Section
--------------------------------------------------------------*/
.checkout-2 {
  --step-border-radius: 20px;
  --section-spacing: 30px;
}

.checkout-2 .checkout-steps .checkout-step {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--section-spacing);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.checkout-2 .checkout-steps .checkout-step:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout-2 .checkout-steps .checkout-step .step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .checkout-steps .checkout-step .step-header .step-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.checkout-2 .checkout-steps .checkout-step .step-header .step-title {
  flex: 1;
}

.checkout-2 .checkout-steps .checkout-step .step-header .step-title h3 {
  margin: 0 0 5px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.checkout-2 .checkout-steps .checkout-step .step-header .step-title p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-2 .checkout-steps .checkout-step .step-content {
  padding: 30px;
}

.checkout-2 .checkout-steps .checkout-step .step-content label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-control,
.checkout-2 .checkout-steps .checkout-step .step-content .form-select {
  padding: 12px 15px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 0.95rem;
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-control:focus,
.checkout-2 .checkout-steps .checkout-step .step-content .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-control::placeholder,
.checkout-2 .checkout-steps .checkout-step .step-content .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check {
  margin-top: 15px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-label {
  font-size: 0.9rem;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper {
  position: relative;
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper .card-icons,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper .card-icons {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper .card-icons i,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper .card-icons i {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper .help-icon,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper .help-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper .help-icon:hover,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper .help-icon:hover {
  color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option:last-child {
  margin-bottom: 0;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option input[type=radio] {
  display: none;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-icon {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info {
  flex: 1;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active {
  border-color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active label:after {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active label .method-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active .payment-details {
  display: block !important;
  animation: slideDown 0.3s ease forwards;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option .payment-details {
  display: none;
  padding: 5px 20px 20px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option .payment-details .alert-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: none;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option .payment-details .alert-info i {
  font-size: 18px;
  color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn i {
  font-size: 18px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-secondary {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border: none;
  color: var(--default-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border: none;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary:active {
  transform: translateY(0);
}

.checkout-2 .checkout-steps .checkout-step .step-content .terms-agreement {
  margin-bottom: 20px;
}

.checkout-2 .checkout-summary-mobile {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--section-spacing);
  overflow: hidden;
}

.checkout-2 .checkout-summary-mobile .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .checkout-summary-mobile .summary-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-2 .checkout-summary-mobile .summary-header .toggle-summary-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 0;
}

.checkout-2 .checkout-summary-mobile .summary-header .toggle-summary-btn i {
  transition: transform 0.3s ease;
}

.checkout-2 .checkout-summary-mobile .summary-header .toggle-summary-btn[aria-expanded=true] i {
  transform: rotate(180deg);
}

.checkout-2 .checkout-summary-mobile .summary-content {
  padding: 20px;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list {
  margin-bottom: 20px;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-image {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info {
  flex: 1;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info h5 {
  font-size: 0.95rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-meta {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-price {
  font-size: 0.9rem;
  font-weight: 500;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-price .qty {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 3px;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code {
  margin-bottom: 20px;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code .input-group .form-control {
  border-radius: 10px 0 0 10px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code .input-group .btn-apply {
  border-radius: 0 10px 10px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 15px;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code .input-group .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.checkout-2 .checkout-summary-mobile .summary-content .price-breakdown {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 15px;
  padding: 15px;
}

.checkout-2 .checkout-summary-mobile .summary-content .price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.checkout-2 .checkout-summary-mobile .summary-content .price-breakdown .price-row:last-child {
  margin-bottom: 0;
}

.checkout-2 .checkout-summary-mobile .summary-content .price-breakdown .price-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 700;
  font-size: 1rem;
}

.checkout-2 .order-summary {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: sticky;
  top: 90px;
}

.checkout-2 .order-summary .summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .order-summary .items-container {
  margin-bottom: 25px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 5px;
}

.checkout-2 .order-summary .items-container::-webkit-scrollbar {
  width: 6px;
}

.checkout-2 .order-summary .items-container::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 3px;
}

.checkout-2 .order-summary .items-container::-webkit-scrollbar-thumb {
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 3px;
}

.checkout-2 .order-summary .items-container .order-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .order-summary .items-container .order-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout-2 .order-summary .items-container .order-item .item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  flex-shrink: 0;
}

.checkout-2 .order-summary .items-container .order-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-2 .order-summary .items-container .order-item .item-details {
  flex: 1;
}

.checkout-2 .order-summary .items-container .order-item .item-details .item-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.checkout-2 .order-summary .items-container .order-item .item-details .item-variant {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.checkout-2 .order-summary .items-container .order-item .item-details .item-price-qty {
  font-size: 0.95rem;
  font-weight: 500;
}

.checkout-2 .order-summary .items-container .order-item .item-details .item-price-qty .item-qty {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 5px;
}

.checkout-2 .order-summary .discount-code-container {
  margin-bottom: 25px;
}

.checkout-2 .order-summary .discount-code-container .input-group .form-control {
  border-radius: 12px 0 0 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  padding: 12px 15px;
  background-color: var(--surface-color);
}

.checkout-2 .order-summary .discount-code-container .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.checkout-2 .order-summary .discount-code-container .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
}

.checkout-2 .order-summary .discount-code-container .input-group .btn-apply {
  border-radius: 0 12px 12px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 20px;
}

.checkout-2 .order-summary .discount-code-container .input-group .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.checkout-2 .order-summary .summary-details {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 40%);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
}

.checkout-2 .order-summary .summary-details .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.checkout-2 .order-summary .summary-details .summary-row .summary-label {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.checkout-2 .order-summary .summary-details .summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 1.2rem;
  font-weight: 700;
}

.checkout-2 .order-summary .checkout-security {
  margin-bottom: 20px;
  text-align: center;
}

.checkout-2 .order-summary .checkout-security .security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.checkout-2 .order-summary .checkout-security .security-badge i {
  color: #198754;
  font-size: 18px;
}

.checkout-2 .order-summary .checkout-security .security-badge span {
  font-weight: 500;
  font-size: 0.95rem;
}

.checkout-2 .order-summary .checkout-security .payment-options {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.checkout-2 .order-summary .checkout-security .payment-options i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-2 .order-summary .shipping-guarantee {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 15px;
  padding: 15px;
}

.checkout-2 .order-summary .shipping-guarantee .guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.checkout-2 .order-summary .shipping-guarantee .guarantee-item:last-child {
  margin-bottom: 0;
}

.checkout-2 .order-summary .shipping-guarantee .guarantee-item i {
  color: var(--accent-color);
}

.checkout-2 .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.checkout-2 .modal-content .modal-header {
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 30px;
}

.checkout-2 .modal-content .modal-header .modal-title {
  font-weight: 600;
}

.checkout-2 .modal-content .modal-body {
  padding: 30px;
  font-size: 0.95rem;
}

.checkout-2 .modal-content .modal-body p {
  margin-bottom: 15px;
}

.checkout-2 .modal-content .modal-body p:last-child {
  margin-bottom: 0;
}

.checkout-2 .modal-content .modal-footer {
  padding: 15px 30px;
  border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .modal-content .modal-footer .btn-primary {
  background-color: var(--accent-color);
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 500;
}

.checkout-2 .modal-content .modal-footer .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@media (max-width: 991.98px) {
  .checkout-2 .order-summary {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .checkout-2 .checkout-step .step-header {
    padding: 20px;
  }

  .checkout-2 .checkout-step .step-header .step-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .checkout-2 .checkout-step .step-header .step-title h3 {
    font-size: 1.1rem;
  }

  .checkout-2 .checkout-step .step-content {
    padding: 20px;
  }
}

.checkout-2 .swiper-wrapper {
  height: auto !important;
}