/*--------------------------------------------------------------
# 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: "Marcellus",  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: #202020; /* Background color for the entire website, including individual sections */
  --default-color: #d0d0d0; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ededed; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff9f1c; /* 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: #31302d; /* 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: #f3f6f4; /* 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: #d0d0d0;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff9f1c; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #393939; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #393939; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #d0d0d0; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff9f1c; /* 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: #202020;
  --surface-color: #454444;
}

.dark-background {
  --background-color: #191818;
  --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);
}

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);
  --heading-color: #ffffff;
  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: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

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

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

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

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

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

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

.hero .hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero .hero-slide {
  min-height: calc(100vh - 92px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 0 160px;
  position: relative;
}

.hero .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, color-mix(in srgb, var(--background-color), transparent 5%) 0%, color-mix(in srgb, var(--background-color), transparent 30%) 40%, color-mix(in srgb, var(--background-color), transparent 75%) 95%, transparent 100%);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content .hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero .hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero .hero-content h1 em {
  font-style: italic;
  color: var(--accent-color);
}

.hero .hero-content p {
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero .hero-content .hero-actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .hero-content .hero-actions .btn-book {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .hero-content .hero-actions .btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .hero-content .hero-actions .btn-menu {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.9rem;
  padding-bottom: 4px;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 55%);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero .hero-content .hero-actions .btn-menu i {
  transition: transform 0.3s ease;
}

.hero .hero-content .hero-actions .btn-menu:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-menu:hover i {
  transform: translateX(5px);
}

.hero .hero-prev,
.hero .hero-next {
  width: 52px;
  height: 52px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero .hero-prev i,
.hero .hero-next i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.hero .hero-prev::after,
.hero .hero-next::after {
  display: none;
}

.hero .hero-prev:hover,
.hero .hero-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  opacity: 1;
}

@media (max-width: 768px) {

  .hero .hero-prev,
  .hero .hero-next {
    display: none;
  }
}

.hero .hero-prev {
  left: 28px;
}

.hero .hero-next {
  right: 28px;
}

.hero .hero-indicators {
  position: absolute;
  bottom: 75px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero .hero-indicators li {
  width: 28px;
  height: 3px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 60%);
  border: none;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  transition: width 0.4s ease, background-color 0.3s ease;
  opacity: 1;
  text-indent: 0;
  margin: 0;
}

.hero .hero-indicators li.active {
  width: 60px;
  background-color: var(--accent-color);
}

.hero .hero-info-bar .info-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 36px;
  transition: 0.3s;
}

.hero .hero-info-bar .info-bar-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero .hero-info-bar .info-bar-item i {
  font-size: 1.7rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.hero .hero-info-bar .info-bar-item .info-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero .hero-info-bar .info-bar-item .info-bar-text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero .hero-info-bar .info-bar-item .info-bar-text strong {
  font-size: 0.92rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero .hero-info-bar .info-bar-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 88%);
    padding: 18px 24px;
  }

  .hero .hero-info-bar .info-bar-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero .hero-slide {
    padding: 100px 0 130px;
  }

  .hero .hero-indicators {
    bottom: 50px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.about .info-block .badge-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, var(--background-color));
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.about .info-block h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about .info-block .lead-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 12px;
  line-height: 1.7;
}

.about .info-block p {
  line-height: 1.7;
}

.about .highlight-card {
  padding: 28px 24px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 6%, transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.about .highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color) 12%, transparent);
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about .highlight-card .icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  margin-bottom: 16px;
}

.about .highlight-card .icon-wrap i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.about .highlight-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.about .highlight-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .author-block .author-name {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.about .author-block img {
  max-width: 160px;
  height: auto;
  opacity: 0.85;
}

.about .visual-block {
  position: relative;
}

.about .visual-block .main-image-wrapper {
  position: relative;
}

.about .visual-block .main-image-wrapper img {
  border-radius: 16px;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: transform 0.3s ease;
}

.about .visual-block .main-image-wrapper img:hover {
  transform: scale(1.02);
}

.about .visual-block .floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 3;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
  padding: 20px 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about .visual-block .floating-card .metric-number {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

.about .visual-block .floating-card .metric-label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.about .visual-block .row .col-6 {
  height: 180px;
}

.about .visual-block .row .col-6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about .visual-block .row img {
  border-radius: 12px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: transform 0.3s ease;
}

.about .visual-block .row img:hover {
  transform: scale(1.03);
}

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

  .about .visual-block .floating-card {
    bottom: -15px;
    left: -10px;
    padding: 14px 20px;
  }

  .about .visual-block .floating-card .metric-number {
    font-size: 2.2rem;
  }

  .about .visual-block .floating-card .metric-label {
    font-size: 0.8rem;
  }

  .about .info-block h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about .visual-block .floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    text-align: center;
    border-radius: 12px;
  }

  .about .author-block img {
    max-width: 130px;
  }
}

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

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

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

.about-2 .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-2 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-2 .content-card .card-image {
  height: 560px;
  overflow: hidden;
  border-radius: 12px;
}

.about-2 .content-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .category-card {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  overflow: hidden;
  height: 350px;
  background-color: var(--surface-color);
  transition: all 0.4s ease;
}

.cards .category-title {
  color: #ffb22c;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.cards .category-subtitle {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.cards .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.cards .category-card:hover .shop-btn {
  transform: translateY(0);
  opacity: 1;
}

.cards .category-card:hover .shop-btn i {
  transform: translateX(5px);
}

.cards .category-card.small-card {
  height: 280px;
}

.cards .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 60%);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.cards .category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 3;
  color: var(--contrast-color);
}

.cards .category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.cards .category-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  line-height: 1.4;
}

.cards .category-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cards .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cards .shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cards .shop-btn i {
  transition: transform 0.3s ease;
}

.cards .shop-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .cards .category-card {
    height: 300px;
  }

  .cards .category-card.small-card {
    height: 250px;
  }

  .cards .category-content {
    padding: 1.5rem;
  }

  .cards .category-title {
    font-size: 1.3rem;
  }

  .cards .category-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cards .category-card {
    height: 250px;
  }

  .cards .category-card.small-card {
    height: 220px;
  }

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

  .cards .shop-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

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

.call-to-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent-color) 28%, transparent), transparent 60%);
}

.call-to-action .container {
  position: relative;
  z-index: 1;
}

.call-to-action .cta-center .kicker {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--accent-color) 22%, transparent);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.call-to-action .cta-center h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.call-to-action .cta-center p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.call-to-action .cta-center .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #f06cae));
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 16px;
  border: none;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color) 30%, transparent);
  transition: all 0.3s ease;
}

.call-to-action .cta-center .btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color) 40%, transparent);
  color: var(--contrast-color);
}

.call-to-action .cta-center .note {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
}

.call-to-action .cta-center .note i {
  color: var(--accent-color);
  margin-right: 6px;
}

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

  .call-to-action .cta-center .btn-main {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: var(--surface-color);
}

.gallery .gallery-item img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
  display: block;
}

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

.gallery .gallery-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 100%;
}

.gallery .gallery-links a {
  color: var(--contrast-color);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.3s ease;
  width: 100%;
  height: 100%;
}

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

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.testimonials .trust-summary .overall-rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials .trust-summary .overall-rating .rating-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1;
}

.testimonials .trust-summary .overall-rating .rating-details .stars-row {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.testimonials .trust-summary .overall-rating .rating-details .stars-row i {
  color: #f59e0b;
  font-size: 18px;
}

.testimonials .trust-summary .overall-rating .rating-details .review-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonials .trust-badges .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

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

.testimonials .review-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}


.testimonials .review-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .review-card .review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonials .review-card .review-header .reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .review-card .review-header .reviewer-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 2px 0;
}

.testimonials .review-card .review-header .reviewer-info .verified {
  font-size: 12px;
  color: #22c55e;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonials .review-card .review-header .reviewer-info .verified i {
  font-size: 13px;
}

.testimonials .review-card .review-stars {
  margin-bottom: 12px;
}

.testimonials .review-card .review-stars i {
  color: #f59e0b;
  font-size: 15px;
  margin-right: 1px;
}

.testimonials .review-card .review-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.testimonials .review-card p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 16px;
  flex-grow: 1;
}

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

.testimonials .review-card .review-footer .review-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.testimonials .review-card .review-footer .helpful {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.testimonials .review-card .review-footer .helpful:hover {
  color: var(--accent-color);
}

.testimonials .review-card .review-footer .helpful i {
  font-size: 14px;
}

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 24px;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 5%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.contact .form-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 6%, transparent), 0 2px 4px color-mix(in srgb, var(--default-color) 4%, transparent);
  height: 100%;
}

.contact .form-card .form-header {
  margin-bottom: 32px;
}

.contact .form-card .form-header .badge-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 24px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.contact .form-card .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact .form-card .form-header p {
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.contact .form-card .form-control {
  height: 48px;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
  border-radius: 8px;
  background: var(--surface-color);
  font-size: 15px;
  color: var(--default-color);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact .form-card .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

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

.contact .form-card textarea.form-control {
  height: 150px;
  resize: none;
}

.contact .form-card .btn-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
  border: none;
  padding: 14px 32px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color) 30%, transparent);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact .form-card .btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.contact .form-card .btn-send:active {
  transform: translateY(0);
}

.contact .form-card .btn-send i {
  font-size: 16px;
  transition: transform 0.3s;
}

.contact .form-card .btn-send:hover i {
  transform: translateX(4px);
}

.contact .sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.contact .info-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
}

.contact .info-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color) 8%, transparent);
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.contact .info-tile .tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .info-tile .tile-icon i {
  font-size: 22px;
  color: var(--contrast-color);
}

.contact .info-tile .tile-text h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.contact .info-tile .tile-text p {
  margin-bottom: 2px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  line-height: 1.6;
}

.contact .info-tile .tile-text p:last-child {
  margin-bottom: 0;
}

.contact .map-embed {
  flex: 1;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

@media (max-width: 992px) {
  .contact .form-card {
    padding: 32px;
    margin-bottom: 16px;
  }

  .contact .sidebar-info {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .contact .form-card {
    padding: 24px;
  }

  .contact .form-card .form-header {
    margin-bottom: 24px;
  }

  .contact .form-card .form-header h3 {
    font-size: 24px;
  }

  .contact .form-card .btn-send {
    width: 100%;
    justify-content: center;
  }

  .contact .map-embed {
    min-height: 200px;
  }

  .contact .map-embed iframe {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .contact .form-card {
    padding: 20px;
  }

  .contact .info-tile {
    padding: 20px;
  }
}

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

.terms-of-service .header-block .update-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  border-radius: 24px;
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.terms-of-service .header-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.terms-of-service .header-block p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.terms-of-service .sidebar-nav {
  position: sticky;
  top: 100px;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 6%, transparent);
}

.terms-of-service .sidebar-nav h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
  font-weight: 700;
}

.terms-of-service .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .sidebar-nav ul li {
  margin-bottom: 4px;
}

.terms-of-service .sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all 0.3s ease;
  text-decoration: none;
}

.terms-of-service .sidebar-nav ul li a i {
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.terms-of-service .sidebar-nav ul li a:hover {
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  color: var(--accent-color);
}

.terms-of-service .sidebar-nav ul li a:hover i {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .terms-of-service .sidebar-nav {
    display: none;
  }
}

.terms-of-service .terms-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-of-service .term-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color) 4%, transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-of-service .term-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color) 10%, transparent);
  border-color: color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.terms-of-service .term-card .term-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.terms-of-service .term-card .term-card-header .term-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.terms-of-service .term-card .term-card-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.terms-of-service .term-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.terms-of-service .highlight-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.terms-of-service .highlight-callout .callout-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .highlight-callout .callout-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.terms-of-service .highlight-callout p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.terms-of-service .check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--accent-color) 5%, transparent);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.terms-of-service .check-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .check-item span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.terms-of-service .check-item:hover {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.terms-of-service .warning-banner {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface-color);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  border-left: 4px solid var(--accent-color);
}

.terms-of-service .warning-banner .warning-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .warning-banner .warning-icon-wrap i {
  font-size: 1.3rem;
  color: var(--contrast-color);
}

.terms-of-service .warning-banner .warning-text h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.terms-of-service .warning-banner .warning-text p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .terms-of-service .warning-banner {
    flex-direction: column;
  }
}

.terms-of-service .restrict-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: color-mix(in srgb, #dc3545, transparent 94%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.terms-of-service .restrict-item i {
  font-size: 1.1rem;
  color: #dc3545;
  flex-shrink: 0;
}

.terms-of-service .restrict-item span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.terms-of-service .restrict-item:hover {
  background: color-mix(in srgb, #dc3545, transparent 88%);
}

.terms-of-service .disclaimer-panel {
  background: color-mix(in srgb, var(--default-color) 4%, transparent);
  padding: 24px;
  border-radius: 12px;
  margin-top: 20px;
}

.terms-of-service .disclaimer-panel .panel-lead {
  font-weight: 600;
  margin-bottom: 12px !important;
  font-size: 0.95rem;
  color: var(--heading-color);
}

.terms-of-service .disclaimer-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .disclaimer-panel ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.terms-of-service .disclaimer-panel ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .disclaimer-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
}

.terms-of-service .support-banner {
  margin-top: 32px;
  padding: 32px 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
}

.terms-of-service .support-banner .banner-icon {
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .support-banner .banner-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.terms-of-service .support-banner h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--contrast-color);
}

.terms-of-service .support-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.terms-of-service .support-banner .support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--default-color) 15%, transparent);
}

.terms-of-service .support-banner .support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color) 25%, transparent);
}

@media (max-width: 768px) {
  .terms-of-service .support-banner {
    padding: 28px 24px;
  }
}

@media print {
  .terms-of-service .support-banner {
    display: none;
  }

  .terms-of-service .sidebar-nav {
    display: none;
  }

  .terms-of-service .term-card {
    page-break-inside: avoid;
  }
}

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

.privacy .policy-header {
  padding: 20px 0 50px;
}

.privacy .policy-header .effective-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--accent-color) 10%, var(--background-color));
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.privacy .policy-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.privacy .policy-header .lead-text {
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.privacy .quick-nav {
  margin-bottom: 48px;
  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%);
}

.privacy .quick-nav .nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
  text-decoration: none;
}

.privacy .quick-nav .nav-pill i {
  font-size: 0.95rem;
}

.privacy .quick-nav .nav-pill:hover {
  background: color-mix(in srgb, var(--accent-color) 12%, var(--background-color));
  color: var(--accent-color);
  transform: translateY(-2px);
}

.privacy .policy-card {
  position: relative;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  border-radius: 16px;
  padding: 40px 40px 40px 100px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy .policy-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
  border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.privacy .policy-card .card-number {
  position: absolute;
  left: 32px;
  top: 40px;
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color) 20%, transparent);
  font-family: var(--heading-font);
  line-height: 1;
  letter-spacing: -0.02em;
}

.privacy .policy-card .card-body-content .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.privacy .policy-card .card-body-content .card-icon i {
  font-size: 1.25rem;
  color: var(--contrast-color);
}

.privacy .policy-card .card-body-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.privacy .policy-card .card-body-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy .policy-card .card-body-content h3 i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.privacy .policy-card .card-body-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.privacy .policy-card .card-body-content p:last-child {
  margin-bottom: 0;
}

.privacy .policy-card .card-body-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.privacy .policy-card .card-body-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.privacy .policy-card .card-body-content ul li:last-child {
  margin-bottom: 0;
}

.privacy .policy-card .card-body-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 40%, transparent);
}

@media (max-width: 768px) {
  .privacy .policy-card {
    padding: 60px 24px 32px 24px;
  }

  .privacy .policy-card .card-number {
    left: 24px;
    top: 20px;
    font-size: 1.5rem;
  }
}

.privacy .sub-card {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.privacy .sub-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.privacy .usage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.privacy .usage-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.privacy .usage-item:hover {
  background: color-mix(in srgb, var(--accent-color) 8%, var(--background-color));
}

.privacy .contact-banner {
  margin-top: 40px;
  padding: 40px 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
}

.privacy .contact-banner h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.privacy .contact-banner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 0;
  font-size: 1rem;
}

.privacy .contact-banner .contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy .contact-banner .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--contrast-color);
  font-size: 0.95rem;
}

.privacy .contact-banner .info-item i {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 10px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .privacy .contact-banner {
    padding: 32px;
    text-align: center;
  }

  .privacy .contact-banner .contact-info-items {
    margin-top: 24px;
    align-items: center;
  }
}

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

  .privacy .quick-nav {
    display: none;
  }

  .privacy .policy-card {
    box-shadow: none;
    border: 1pt solid #ccc;
    page-break-inside: avoid;
    margin-bottom: 16pt;
  }

  .privacy .contact-banner {
    background: none;
    color: #000;
    border: 1pt solid #000;
  }

  .privacy .contact-banner h2,
  .privacy .contact-banner p,
  .privacy .contact-banner .info-item {
    color: #000;
  }
}

@media (max-width: 576px) {
  .privacy .policy-header h1 {
    font-size: 2rem;
  }

  .privacy .policy-header .lead-text {
    font-size: 1.05rem;
  }

  .privacy .contact-banner {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--background-color);
}

.error-404::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.error-404::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.error-404 .error-visual {
  text-align: center;
  position: relative;
}

.error-404 .error-visual .error-badge {
  display: inline-block;
  padding: 8px 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.error-404 .error-visual .error-code {
  font-size: clamp(140px, 22vw, 260px);
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 60%, #a855f7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.error-404 .error-visual .error-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.error-404 .error-visual .error-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.error-404 .error-visual .error-dots span:nth-child(2) {
  background: color-mix(in srgb, var(--accent-color), transparent 40%);
}

.error-404 .error-visual .error-dots span:nth-child(3) {
  background: var(--accent-color);
}

.error-404 .error-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.error-404 .error-content p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
  max-width: 480px;
}

.error-404 .action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.error-404 .action-buttons .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, #6366f1));
  color: var(--contrast-color);
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 65%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-404 .action-buttons .btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.error-404 .action-buttons .btn-home i {
  font-size: 18px;
}

.error-404 .action-buttons .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.error-404 .action-buttons .btn-explore i {
  font-size: 18px;
}

.error-404 .quick-nav-title {
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.error-404 .nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 95%);
}

.error-404 .nav-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--accent-color);
}

.error-404 .nav-card i {
  font-size: 28px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .nav-card:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.error-404 .nav-card span {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .error-404 .error-visual {
    margin-bottom: 16px;
  }

  .error-404 .error-visual .error-code {
    font-size: clamp(100px, 18vw, 180px);
  }

  .error-404 .error-content {
    text-align: center;
  }

  .error-404 .error-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .error-404 .action-buttons {
    justify-content: center;
  }
}

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

  .error-404 .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .action-buttons .btn-home,
  .error-404 .action-buttons .btn-explore {
    width: 100%;
    justify-content: center;
  }
}

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