/*--------------------------------------------------------------
# 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: "Poppins", sans-serif;
  --nav-font: "Raleway", 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: #f8f8f8;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffb302;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #1a1b1f;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --background-color-dark: #1a1b1f;
  --footer-background-color:#f1f1f1;
  --icons-color: #ffb302;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffb302;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #1a1b1f;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffa600;
  /* 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: #f4f4f9;
  --surface-color: #ffffff;
}

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

.bg-accent {
  background-color: var(--accent-color);
}

/* 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(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color-dark);
  padding: 20px 0;
  transition: all 1.5s;
  z-index: 997;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}
.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}
.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: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 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: 15px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 550;
    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;
  }
}
.footer {
  color: var(--default-color);
  background-color: var(--footer-background-color);
  font-size: 14px;
  padding: 60px 0 30px;
  position: relative;
}
.footer .footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .footer-info .logo {
  line-height: 1;
}
.footer .footer-info .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}
.footer .footer-info p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}
.footer .social-links {
  display: flex;
  gap: 12px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s ease;
}
.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  transform: translateY(-3px);
}
.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.footer h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}
.footer h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1.2;
  transition: all 0.3s ease;
  position: relative;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}
.footer .footer-newsletter p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer .footer-newsletter form {
  margin-top: 25px;
}
.footer .footer-newsletter form .position-relative {
  display: flex;
  margin-bottom: 15px;
}
.footer .footer-newsletter form input[type=tel] {
  height: 44px;
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
}
.footer .footer-newsletter form input[type=tel]:focus {
  outline: none;
  border-color: var(--accent-color);
}
.footer .footer-newsletter form input[type=tel]::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.footer .footer-newsletter form input[type=tel]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.footer .footer-newsletter form .btn-subscribe {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
}
.footer .footer-newsletter form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .footer-newsletter form .btn-subscribe i {
  font-size: 18px;
}
.footer .footer-middle {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .footer-middle .payment-icons,
.footer .footer-middle .badge-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.footer .footer-middle .payment-icons i,
.footer .footer-middle .badge-icons i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}
.footer .footer-middle .payment-icons i:hover,
.footer .footer-middle .badge-icons i:hover {
  color: var(--accent-color);
}
.footer .footer-bottom {
  padding-top: 25px;
}
.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  font-size: 13px;
}
.footer .footer-bottom .credits {
  padding-top: 5px;
}
.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .footer .footer-bottom .legal-links {
    justify-content: center;
    margin-bottom: 15px;
  }
}
.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  transition: color 0.3s ease;
}
.footer .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}
@media (max-width: 991.98px) {
  .footer .footer-links,
  .footer .footer-info {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .footer .trust-badges {
    text-align: left !important;
    margin-top: 20px;
  }
  .footer .copyright,
  .footer .credits {
    text-align: center;
  }
}

.call-now-footer {
  display: none;
  text-align: center;
  padding: 5px 0;
}
@media (max-width: 767.98px) {
  .call-now-footer {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    border-top: 1px solid var(--background-color);
  }
  .call-now-footer.active {
    visibility: visible;
    opacity: 1;
  }
}
.call-now-footer a {
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.call-now-footer a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
@media (max-width: 767.98px) {
  .scroll-top {
    background-color: var(--background-color);
  }
}
.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);
}
@media (max-width: 767.98px) {
  .scroll-top:hover {
    background-color: var(--background-color);
  }
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
  padding-top: 80px;
}
.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.page-title nav ol li + li {
  padding-left: 10px;
}
.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 64px;
  }
}
/*--------------------------------------------------------------
# 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 {
  background-color: var(--accent-color);
  padding: 0;
}
.hero .hero-container {
  padding: 0;
}
.hero .hero-container .content-col {
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .hero .hero-container .content-col {
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-container .content-col {
    padding: 2.5rem 1.5rem;
  }
}
.hero .hero-container .content-col .content-wrapper {
  max-width: 570px;
}
.hero .hero-container .content-col .status-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero .hero-container .content-col h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .hero .hero-container .content-col h1 {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .hero .hero-container .content-col h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-container .content-col h1 {
    font-size: 2.2rem;
  }
}
.hero .hero-container .content-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero .hero-container .content-col p {
    font-size: 1rem;
  }
}
.hero .hero-container .content-col .opening-hours {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}
.hero .hero-container .content-col .opening-hours i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--heading-color);
}
.hero .hero-container .content-col .opening-hours span {
  font-size: 1.25rem;
}
.hero .hero-container .content-col .btn-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .hero .hero-container .content-col .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .hero .hero-container .content-col .btn-group .btn {
    width: 100%;
    text-align: center;
  }
}
.hero .hero-container .content-col .btn-group .btn {
  padding: 1rem 2rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-container .content-col .btn-group .btn.btn-book {
  background-color: var(--background-color);
  color: var(--contrast-color);
  border: transparent;
}
.hero .hero-container .content-col .btn-group .btn.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.hero .hero-container .content-col .btn-group .btn.btn-menu {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}
.hero .hero-container .content-col .btn-group .btn.btn-menu:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.hero .hero-container .content-col .social-links {
  display: flex;
  gap: 1rem;
}
.hero .hero-container .content-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}
.hero .hero-container .content-col .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}
.hero .hero-container .content-col .social-links a i {
  font-size: 1.2rem;
}
.hero .hero-container .hero-swiper {
  position: relative;
}
.hero .hero-container .hero-swiper .swiper-slide {
  position: relative;
}
.hero .hero-container .hero-swiper .swiper-slide .img-container {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 90px);
}
.hero .hero-container .hero-swiper .swiper-slide .img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0;
}
.hero .hero-container .hero-swiper .swiper-button-next,
.hero .hero-container .hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, #000, transparent 70%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}
.hero .hero-container .hero-swiper .swiper-button-next:after,
.hero .hero-container .hero-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}
.hero .hero-container .hero-swiper .swiper-button-next:hover,
.hero .hero-container .hero-swiper .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.hero .hero-container .hero-swiper .swiper-button-next {
  right: 20px;
}
.hero .hero-container .hero-swiper .swiper-button-prev {
  left: 20px;
}
@media (max-width: 992px) {
  .hero .hero-container .content-col {
    order: 2;
  }
  .hero .hero-container .swiper-col {
    order: 1;
  }
  .hero .hero-container .hero-swiper .swiper-slide .img-container {
    height: calc(70vh - 80px);
  }
  .hero .hero-container .hero-swiper .swiper-button-next,
  .hero .hero-container .hero-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .hero .hero-container .hero-swiper .swiper-button-next:after,
  .hero .hero-container .hero-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }
}

.cards .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}
.cards .why-box h2 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.cards .why-box p {
  margin-bottom: 30px;
}
.cards .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}
.cards .why-box .more-btn i {
  font-size: 14px;
}
.cards .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}
.cards .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.cards .icon-box i {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}
.cards .icon-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.cards .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.cards .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.call-to-action {
  padding: 30px 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}
.call-to-action .content h2 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .call-to-action .content h2 {
    font-size: 28px;
  }
}
.call-to-action .content p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.call-to-action .content .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.call-to-action .content .benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--default-color);
  font-size: 15px;
  font-weight: 500;
}
.call-to-action .content .benefits-list li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 991px) {
  .call-to-action .cta-actions {
    margin-top: 32px;
  }
}
.call-to-action .cta-actions .btn-primary,
.call-to-action .cta-actions .btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.call-to-action .cta-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  margin-bottom: 12px;
}
.call-to-action .cta-actions .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%);
}
.call-to-action .cta-actions .btn-secondary {
  background-color: var(--background-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  margin-bottom: 24px;
}
.call-to-action .cta-actions .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.call-to-action .cta-actions .trust-indicators {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.call-to-action .cta-actions .trust-indicators .clients-served {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}
.call-to-action .cta-actions .trust-indicators .clients-served strong {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}
.call-to-action .cta-actions .trust-indicators .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
}
.call-to-action .cta-actions .trust-indicators .rating i {
  color: #ffc107;
  font-size: 16px;
}
.call-to-action .cta-actions .trust-indicators .rating span {
  color: var(--default-color);
  font-weight: 500;
  margin-left: 8px;
}

.why-us {
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 3%);
}
.why-us .content {
  margin-bottom: 32px;
}
.why-us .content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--heading-color);
}
.why-us .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--default-color);
}
.why-us .features-list .feature-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.why-us .features-list .feature-item:last-child {
  border-bottom: none;
}
.why-us .features-list .feature-item .icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-us .features-list .feature-item .icon-wrapper i {
  font-size: 1.3rem;
  color: var(--contrast-color);
}
.why-us .features-list .feature-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}
.why-us .features-list .feature-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.why-us .stats-wrapper {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.why-us .stats-wrapper .stat-item {
  flex: 1;
  min-width: 140px;
}
.why-us .stats-wrapper .stat-item .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}
.why-us .stats-wrapper .stat-item .stat-number::after {
  content: "+";
  margin-left: 2px;
}
.why-us .stats-wrapper .stat-item .stat-label {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .why-us .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.why-us .feature-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}
.why-us .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.why-us .feature-item .feature-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 90%);
  border-radius: 6px;
}
.why-us .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}
.why-us .feature-item .feature-content {
  flex: 1;
}
.why-us .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}
.why-us .feature-item .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
@media (max-width: 992px) {
  .why-us .col-lg-5 {
    margin-bottom: 40px;
  }
  .why-us .stats-wrapper {
    justify-content: space-between;
  }
}

.about .image-wrapper {
  position: relative;
}
.about .image-wrapper .image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.about .image-wrapper .image-box img {
  transition: 0.5s transform;
}
.about .image-wrapper .image-box:hover img {
  transform: scale(1.05);
}
.about .image-wrapper .experience-box {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.about .image-wrapper .experience-box .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}
.about .image-wrapper .experience-box .text {
  font-size: 0.9rem;
  margin-top: 5px;
  line-height: 1.2;
}
.about .content {
  padding-left: 2rem;
}
@media (max-width: 991.98px) {
  .about .content {
    padding-left: 0;
    margin-top: 10px;
  }
}
.about .content .section-header {
  margin-bottom: 2rem;
}
.about .content .section-header .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.about .content .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .about .content .section-header h2 {
    font-size: 2rem;
  }
}
.about .content .highlight-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 500;
}
.about .content .features-list {
  margin-bottom: 2.5rem;
}
.about .content .features-list .feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.about .content .features-list .feature-item:last-child {
  margin-bottom: 0;
}
.about .content .features-list .feature-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.3s;
}
.about .content .features-list .feature-item .icon-box:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}
.about .content .features-list .feature-item .text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.about .content .features-list .feature-item .text p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.about .content .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.about .content .cta-buttons .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
  display: grid;
  place-items: center;
}
.about .content .cta-buttons .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}
.about .content .cta-buttons .btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.3s;
}
.about .content .cta-buttons .btn-learn-more:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-3px);
}

.services {
  background-color: var(--surface-color);
}
.services .service-item {
  background: var(--background-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.services .service-item:hover::before {
  transform: scaleX(1);
}
.services .service-item:hover .service-icon i {
  transform: scale(1.1);
  color: var(--accent-color);
}
.services .service-item:hover .service-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.services .service-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.services .service-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.services .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}
.services .service-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}
.services .service-features {
  margin-bottom: 30px;
}
.services .service-features .feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.services .service-features .feature i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  flex-shrink: 0;
}
.services .service-features .feature span {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}
.services .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.services .service-btn i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}
.services .service-btn:hover i {
  transform: translateX(3px);
}
.services .service-note {
  color: var(--default-color);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.services .service-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.services .service-cta .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}
.services .service-cta .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%);
}
.services .service-cta .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}
.services .service-cta .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
@media (max-width: 768px) {
  .services .service-item {
    padding: 30px 20px;
  }
  .services .service-icon {
    width: 70px;
    height: 70px;
  }
  .services .service-icon i {
    font-size: 30px;
  }
  .services .service-content h3 {
    font-size: 20px;
  }
  .services .service-cta {
    flex-direction: column;
    align-items: center;
  }
  .services .service-cta .btn-primary,
  .services .service-cta .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}
.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}
.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}
.faq .faq-item:last-child {
  margin-bottom: 0;
}
.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}
.faq .faq-item.faq-active {
  border-left-color: var(--accent-color);
}
.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}
.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}
.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}
.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}
.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}
.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}
.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}
.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}
.faq .faq-item .faq-header h3 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}
.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}
.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}
.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}
.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }
  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }
  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }
  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

.contact .container {
  max-width: 1280px;
}
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}
.contact .contact-info-panel {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}
.contact .contact-info-panel .contact-info-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}
.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}
.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}
@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}
.contact .info-card .card-content h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}
.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}
.contact .info-card .card-content p a {
  color: var(--surface-color);
}
.contact .info-card .card-content p a:hover {
  color: var(--surface-color);
}
.contact .social-links-panel {
  margin-top: 35px;
}
.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}
.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}
.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}
.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}
.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact .map-container {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}
.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: var(--accent-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}
.contact .form-container .form-floating {
  margin-bottom: 20px;
}
.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}
.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}
.contact .form-container .form-floating .form-control::-moz-placeholder {
  color: transparent;
}
.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}
.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}
.contact .form-container .form-floating label::after {
  background-color: transparent;
}
.contact .form-container .btn-submit {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}
.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}
.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }
  .contact .form-container {
    padding: 30px 25px;
  }
}
@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

.contact-form .cta-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.contact-form .cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 30%));
}
@media (max-width: 992px) {
  .contact-form .cta-wrapper {
    padding: 40px;
  }
}
@media (max-width: 576px) {
  .contact-form .cta-wrapper {
    padding: 30px 20px;
  }
}
.contact-form .cta-content {
  padding-right: 30px;
}
@media (max-width: 992px) {
  .contact-form .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.contact-form .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .contact-form .cta-content h2 {
    font-size: 2rem;
  }
}
.contact-form .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}
.contact-form .cta-content .cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-form .cta-content .cta-stats .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .contact-form .cta-content .cta-stats .stat-item .number {
    font-size: 2rem;
  }
}
.contact-form .cta-content .cta-stats .stat-item .text {
  font-size: 0.9rem;
  color: var(--default-color);
}
.contact-form .cta-form {
  background-color: color-mix(in srgb, var(--surface-color), #000 3%);
  border-radius: 10px;
  padding: 30px;
}
.contact-form .cta-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .contact-form .cta-form h3 {
    font-size: 1.5rem;
  }
}
.contact-form .cta-form p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--default-color);
}
.contact-form .cta-form .form-control {
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}
.contact-form .cta-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}
.contact-form .cta-form .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact-form .cta-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact-form .cta-form select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}
.contact-form .cta-form button[type=submit] {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.contact-form .cta-form button[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-details {
  padding: 40px 0;
}
.service-details .service-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(220, 220, 220, 0.3);
}
.service-details .service-image img {
  transition: transform 0.5s ease;
}
.service-details .service-image img:hover {
  transform: scale(1.03);
}
.service-details .service-content {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .service-details .service-content {
    padding-left: 15px;
    margin-top: 40px;
  }
}
.service-details .service-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-details h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-details .service-tagline {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 18px;
  margin-bottom: 25px;
  font-style: italic;
}
.service-details .service-description p {
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-details .service-features {
  margin: 30px 0;
}
.service-details .service-features h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}
.service-details .service-features ul {
  padding-left: 0;
  list-style: none;
}
.service-details .service-features ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.service-details .service-features ul li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}
.service-details .service-features ul li span {
  line-height: 1.5;
}
.service-details .service-cta {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.service-details .service-cta .btn {
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-details .service-cta .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}
.service-details .service-cta .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.service-details .service-cta .btn.btn-outline {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}
.service-details .service-cta .btn.btn-outline:hover {
  border-color: var(--default-color);
  background-color: var(--default-color);
  color: var(--contrast-color);
}
.service-details .additional-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.service-details .additional-info .info-item {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 220px;
}
.service-details .additional-info .info-item i {
  font-size: 28px;
  color: var(--accent-color);
  margin-right: 15px;
}
.service-details .additional-info .info-item h3 {
  margin-bottom: 5px;
  font-size: 18px;
}
.service-details .additional-info .info-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.service-details .related-services {
  margin-top: 60px;
}
.service-details .related-services .related-title {
  position: relative;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
}
.service-details .related-services .related-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}
.service-details .related-service-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.service-details .related-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.service-details .related-service-card:hover .service-link i {
  transform: translateX(5px);
}
.service-details .related-service-card img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-details .related-service-card h4 {
  padding: 20px 20px 10px;
  font-size: 20px;
  font-weight: 600;
}
.service-details .related-service-card p {
  padding: 0 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.service-details .related-service-card .service-link {
  display: inline-block;
  padding: 0 20px 20px;
  color: var(--accent-color);
  font-weight: 500;
}
.service-details .related-service-card .service-link i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .service-details .additional-info {
    flex-direction: column;
    gap: 20px;
  }
  .service-details .additional-info .info-item {
    width: 100%;
  }
  .service-details .related-service-card {
    margin-bottom: 30px;
  }
}

.tabs .tabs-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}
.tabs .nav-tabs {
  border: 0;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .tabs .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
}
.tabs .nav-item {
  flex: 1;
  min-width: 0;
}
@media (max-width: 992px) {
  .tabs .nav-item {
    flex: none;
  }
}
.tabs .nav-link {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 5px 30px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
}
.tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
@media (max-width: 768px) {
  .tabs .nav-link {
    padding: 20px 15px;
    min-height: 70px;
  }
}
.tabs .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tabs .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}
@media (max-width: 768px) {
  .tabs .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }
  .tabs .nav-link .tab-icon i {
    font-size: 20px;
  }
}
.tabs .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
}
.tabs .nav-link .tab-content h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.4s ease;
}
@media (max-width: 768px) {
  .tabs .nav-link .tab-content h4 {
    font-size: 14px;
  }
}
.tabs .nav-link .tab-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.4s ease;
}
@media (max-width: 768px) {
  .tabs .nav-link .tab-content span {
    font-size: 12px;
  }
}
.tabs .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.tabs .nav-link:hover::before {
  opacity: 1;
}
.tabs .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}
.tabs .nav-link:hover .tab-icon i {
  color: var(--accent-color);
}
.tabs .nav-link:hover .tab-content h5, .tabs .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}
.tabs .nav-link.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.tabs .nav-link.active::before {
  opacity: 1;
}
.tabs .nav-link.active .tab-icon {
  background: var(--contrast-color);
}
.tabs .nav-link.active .tab-icon i {
  color: var(--accent-color);
}
.tabs .nav-link.active .tab-content h5, .tabs .nav-link.active .tab-content span {
  color: var(--contrast-color);
}
.tabs .tab-content .tab-pane {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .tabs .tab-content .tab-pane {
    padding: 20px 0;
  }
}
.tabs .content-wrapper {
  padding-right: 40px;
}
@media (max-width: 992px) {
  .tabs .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.tabs .content-wrapper .icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.tabs .content-wrapper .icon-badge i {
  font-size: 30px;
  color: var(--contrast-color);
}
.tabs .content-wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .tabs .content-wrapper h3 {
    font-size: 24px;
  }
}
.tabs .content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}
.tabs .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .tabs .content-wrapper .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.tabs .content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tabs .content-wrapper .feature-grid .feature-item i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}
.tabs .content-wrapper .feature-grid .feature-item span {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.4;
}
.tabs .content-wrapper .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .tabs .content-wrapper .stats-row {
    gap: 20px;
  }
}
.tabs .content-wrapper .stats-row .stat-item {
  text-align: center;
}
.tabs .content-wrapper .stats-row .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .tabs .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 20px;
  }
}
.tabs .content-wrapper .stats-row .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tabs .content-wrapper .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.tabs .content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}
.tabs .content-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}
.tabs .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}
.tabs .visual-content {
  position: relative;
}
.tabs .visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}
.tabs .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.tabs .visual-content .main-image:hover img {
  transform: scale(1.05);
}
.tabs .visual-content .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}
@media (max-width: 576px) {
  .tabs .visual-content .floating-card {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
    gap: 10px;
  }
}
.tabs .visual-content .floating-card i {
  font-size: 28px;
  color: var(--accent-color);
}
@media (max-width: 576px) {
  .tabs .visual-content .floating-card i {
    font-size: 24px;
  }
}
.tabs .visual-content .floating-card .card-content span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.tabs .visual-content .floating-card .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}
@media (max-width: 576px) {
  .tabs .visual-content .floating-card .card-content strong {
    font-size: 14px;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.garagen-section .text-accent {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}
.garagen-section .about-title {
  font-weight: 700;
}
.garagen-section .feature-list {
  list-style-type: none;
  padding-left: 0;
}
.garagen-section .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.garagen-section .feature-list li i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.garagen-section .btn-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.garagen-section .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}
.garagen-section .image-wrapper {
  position: relative;
}
.garagen-section .image-wrapper img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.garagen-section .image-wrapper img:last-child {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.stadt-hero {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.stadt-hero .carousel,
.stadt-hero .carousel-inner,
.stadt-hero .carousel-item,
.stadt-hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.stadt-hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
}
.stadt-hero .stadtcarousel-content {
  background: var(--accent-color);
  padding: 20px;
  color: #000;
  animation-duration: 0.5s;
  border-radius: 0.5rem;
  border-style: none;
  outline: 4px solid #000;
  outline-offset: -10px;
}
.stadt-hero .stadtcarousel-content h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}
.stadt-hero .carousel-content {
  background: var(--accent-color);
  padding: 20px;
  color: #fff;
  animation-duration: 0.5s;
  border-top: 5px solid var(--accent-color);
}
.stadt-hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}
.stadt-hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid var(--accent-color);
}
.stadt-hero .btn-get-started:hover {
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
}
.stadt-hero .carousel-inner .carousel-item {
  transition-property: opacity;
}
.stadt-hero .carousel-inner .carousel-item,
.stadt-hero .carousel-inner .active.carousel-item-start,
.stadt-hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
.stadt-hero .carousel-inner .active,
.stadt-hero .carousel-inner .carousel-item-next.carousel-item-start,
.stadt-hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
.stadt-hero .carousel-inner .carousel-item-next,
.stadt-hero .carousel-inner .carousel-item-prev,
.stadt-hero .carousel-inner .active.carousel-item-start,
.stadt-hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
.stadt-hero .carousel-control-prev,
.stadt-hero .carousel-control-next {
  width: 10%;
}
.stadt-hero .carousel-control-next-icon,
.stadt-hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: var(--accent-color);
}
.stadt-hero .carousel-indicators li {
  cursor: pointer;
}
@media (min-width: 1024px) {
  .stadt-hero .carousel-content {
    width: 60%;
  }
  .stadt-hero .carousel-control-prev,
  .stadt-hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 992px) {
  .stadt-hero {
    height: calc(100vh - 70px);
  }
  .stadt-hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .stadt-hero .carousel-content p {
    font-size: 15px;
  }
}
@media (max-height: 500px) {
  .stadt-hero {
    height: 120vh;
  }
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 100px 0;
}
.error-404 .error-visual {
  text-align: center;
}
.error-404 .error-visual .glitch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.error-404 .error-visual .glitch-wrapper .digit {
  font-size: 9rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
  color: var(--accent-color);
}
.error-404 .error-visual .glitch-wrapper .digit.digit-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  animation: floatBounce 3s ease-in-out infinite;
}
.error-404 .error-visual .glitch-wrapper .digit.digit-circle i {
  color: var(--accent-color);
}
.error-404 .error-visual .decorative-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}
.error-404 .error-visual .decorative-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  animation: dotPulse 1.5s ease-in-out infinite;
}
.error-404 .error-visual .decorative-dots span:nth-child(2) {
  animation-delay: 0.3s;
  background-color: var(--accent-color);
}
.error-404 .error-visual .decorative-dots span:nth-child(3) {
  animation-delay: 0.6s;
}
.error-404 .error-info .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.error-404 .error-info h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.error-404 .error-info p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.error-404 .error-info .suggestions {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.error-404 .error-info .suggestions li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.error-404 .error-info .suggestions li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}
.error-404 .error-info .action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.error-404 .error-info .action-buttons .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.error-404 .error-info .action-buttons .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.error-404 .error-info .action-buttons .btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.error-404 .error-info .action-buttons .btn-support:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}
@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes dotPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@media (max-width: 992px) {
  .error-404 .error-visual {
    margin-bottom: 2rem;
  }
  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 7rem;
  }
  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 110px;
    height: 110px;
    font-size: 3.5rem;
  }
  .error-404 .error-info {
    text-align: center;
  }
  .error-404 .error-info h2 {
    font-size: 1.85rem;
  }
  .error-404 .error-info .suggestions {
    display: inline-block;
    text-align: left;
  }
  .error-404 .error-info .action-buttons {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 5.5rem;
  }
  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 90px;
    height: 90px;
    font-size: 2.8rem;
  }
  .error-404 .error-info h2 {
    font-size: 1.6rem;
  }
  .error-404 .error-info p {
    font-size: 0.95rem;
  }
  .error-404 .error-info .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  .error-404 .error-info .action-buttons .btn-home,
  .error-404 .error-info .action-buttons .btn-support {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .error-404 {
    padding: 60px 0;
  }
  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 4.5rem;
  }
  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 72px;
    height: 72px;
    font-size: 2.2rem;
  }
  .error-404 .error-visual .decorative-dots {
    margin-top: 1.25rem;
  }
  .error-404 .error-visual .decorative-dots span {
    width: 8px;
    height: 8px;
  }
  .error-404 .error-info h2 {
    font-size: 1.35rem;
  }
  .error-404 .error-info .suggestions li {
    font-size: 0.88rem;
  }
}

.about-6 .about-image-wrapper {
  position: relative;
  margin-bottom: 3rem;
}
.about-6 .about-image-wrapper img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.about-6 .about-image-wrapper .mission-card {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  background-color: var(--accent-color);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.about-6 .about-image-wrapper .mission-card .mission-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-6 .about-image-wrapper .mission-card .mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}
.about-6 .about-image-wrapper .mission-card .mission-content h4 {
  font-size: 1.25rem;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.about-6 .about-image-wrapper .mission-card .mission-content p {
  font-size: 0.95rem;
  color: var(--contrast-color);
  margin-bottom: 0;
}
.about-6 .about-content .tag-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.about-6 .about-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .about-6 .about-content h1 {
    font-size: 1.75rem;
  }
}
.about-6 .about-content .about-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
.about-6 .about-content .about-info p:last-child {
  margin-bottom: 0;
}
.about-6 .about-content .values-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}
.about-6 .about-content .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.about-6 .about-content .values-list .value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 5%);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.about-6 .about-content .values-list .value-item:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.about-6 .about-content .values-list .value-item .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
}
.about-6 .about-content .values-list .value-item .value-icon i {
  color: var(--contrast-color);
  font-size: 14px;
}
.about-6 .about-content .values-list .value-item .value-text {
  font-weight: 500;
  font-size: 0.95rem;
}
@media (max-width: 991px) {
  .about-6 .about-content {
    margin-top: 3rem;
  }
}

.features-2 {
  padding: 80px 0;
  background-color: var(--background-color);
}
.features-2 .features-content {
  padding-right: 30px;
}
@media (max-width: 992px) {
  .features-2 .features-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.features-2 .features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .features-2 .features-content h2 {
    font-size: 2rem;
  }
}
.features-2 .features-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}
.features-2 .features-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}
.features-2 .features-content .features-list .feature-item {
  display: flex;
  margin-bottom: 2rem;
}
.features-2 .features-content .features-list .feature-item:last-child {
  margin-bottom: 0;
}
.features-2 .features-content .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 20px;
  transition: all 0.3s ease;
}
.features-2 .features-content .features-list .feature-item .feature-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}
.features-2 .features-content .features-list .feature-item .feature-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-2 .features-content .features-list .feature-item .feature-text p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--heading-color);
}
.features-2 .features-image {
  position: relative;
}
.features-2 .features-image .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.features-2 .features-image .stats-card {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  z-index: 2;
  width: 220px;
}
@media (max-width: 768px) {
  .features-2 .features-image .stats-card {
    width: 180px;
    padding: 15px;
    top: -20px;
    left: -10px;
  }
}
.features-2 .features-image .stats-card .stat-item {
  text-align: center;
}
.features-2 .features-image .stats-card .stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .features-2 .features-image .stats-card .stat-item h3 {
    font-size: 1.2rem;
  }
}
.features-2 .features-image .stats-card .stat-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--default-color);
}
@media (max-width: 768px) {
  .features-2 .features-image .stats-card .stat-item p {
    font-size: 0.7rem;
  }
}
.features-2 .features-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media (max-width: 768px) {
  .features-2 .features-image .experience-badge {
    padding: 15px;
    right: 0;
  }
}
.features-2 .features-image .experience-badge .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.features-2 .features-image .experience-badge .badge-content .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .features-2 .features-image .experience-badge .badge-content .number {
    font-size: 2rem;
  }
}
.features-2 .features-image .experience-badge .badge-content .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}

.call-to-action-4 {
  padding: 80px 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}
.call-to-action-4 .content h2 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .call-to-action-4 .content h2 {
    font-size: 28px;
  }
}
.call-to-action-4 .content p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.call-to-action-4 .content .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.call-to-action-4 .content .benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--default-color);
  font-size: 15px;
  font-weight: 500;
}
.call-to-action-4 .content .benefits-list li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 991px) {
  .call-to-action-4 .cta-actions {
    margin-top: 32px;
  }
}
.call-to-action-4 .cta-actions .btn-primary,
.call-to-action-4 .cta-actions .btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.call-to-action-4 .cta-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  margin-bottom: 12px;
}
.call-to-action-4 .cta-actions .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%);
}
.call-to-action-4 .cta-actions .btn-secondary {
  background-color: var(--background-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  margin-bottom: 24px;
}
.call-to-action-4 .cta-actions .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.call-to-action-4 .cta-actions .trust-indicators {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.call-to-action-4 .cta-actions .trust-indicators .clients-served {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}
.call-to-action-4 .cta-actions .trust-indicators .clients-served strong {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}
.call-to-action-4 .cta-actions .trust-indicators .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
}
.call-to-action-4 .cta-actions .trust-indicators .rating i {
  color: #ffc107;
  font-size: 16px;
}
.call-to-action-4 .cta-actions .trust-indicators .rating span {
  color: var(--default-color);
  font-weight: 500;
  margin-left: 8px;
}

.why-us-city {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.why-us-city .container {
  position: relative;
  z-index: 1;
}
.why-us-city .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .why-us-city .content h2 {
    font-size: 2rem;
  }
}
.why-us-city .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.why-us-city .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}
.why-us-city .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}
.why-us-city .features-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
.why-us-city .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .why-us-city .cta-buttons {
    flex-direction: column;
  }
}
.why-us-city .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.why-us-city .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}
.why-us-city .btn-secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.why-us-city .btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
.why-us-city .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}
.why-us-city .image-wrapper img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.why-us-city .image-wrapper:hover img {
  transform: scale(1.05);
}
.why-us-city .image-wrapper .overlay-content {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}
.why-us-city .image-wrapper .special-offer {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.why-us-city .image-wrapper .special-offer .label {
  display: block;
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  opacity: 0.9;
}
.why-us-city .image-wrapper .special-offer .discount {
  display: block;
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .why-us-city .image-wrapper {
    margin-top: 2rem;
  }
  .why-us-city .image-wrapper .overlay-content {
    top: 20px;
    right: 20px;
  }
  .why-us-city .image-wrapper .special-offer {
    padding: 12px 16px;
  }
  .why-us-city .image-wrapper .special-offer .label {
    font-size: 0.8rem;
  }
  .why-us-city .image-wrapper .special-offer .discount {
    font-size: 1.3rem;
  }
}
@media (max-width: 992px) {
  .why-us-city .content {
    margin-bottom: 2rem;
  }
}

.steps {
  padding-top: 60px;
  padding-bottom: 60px;
}
.steps .steps-content {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .steps .steps-content {
    padding-right: 0;
  }
}
.steps .steps-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .steps .steps-content h2 {
    font-size: 2rem;
  }
}
.steps .steps-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}
.steps .steps-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}
.steps .steps-content .steps-cta {
  display: flex;
  gap: 15px;
}
@media (max-width: 576px) {
  .steps .steps-content .steps-cta {
    flex-direction: column;
  }
}
.steps .steps-content .steps-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.steps .steps-content .steps-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.steps .steps-content .steps-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.steps .steps-content .steps-cta .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}
.steps .steps-content .steps-cta .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.steps .steps-list {
  position: relative;
}
.steps .steps-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
@media (max-width: 576px) {
  .steps .steps-list::before {
    left: 20px;
  }
}
.steps .steps-list .step-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}
.steps .steps-list .step-item:last-child {
  margin-bottom: 0;
}
.steps .steps-list .step-item:hover .step-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}
.steps .steps-list .step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 20px;
  z-index: 1;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .steps .steps-list .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
.steps .steps-list .step-item .step-content {
  padding-top: 5px;
}
.steps .steps-list .step-item .step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}
@media (max-width: 576px) {
  .steps .steps-list .step-item .step-content h3 {
    font-size: 1.1rem;
  }
}
.steps .steps-list .step-item .step-content p {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}

.city-texte .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.city-texte .features-item + .features-item {
  margin-top: 30px;
}
@media (max-width: 640px) {
  .city-texte .features-item + .features-item {
    margin-top: 40px;
  }
}
.city-texte .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}
.city-texte .features-item ul {
  list-style: none;
  padding: 0;
}
.city-texte .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
.city-texte .features-item ul li:last-child {
  padding-bottom: 0;
}
.city-texte .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}
.city-texte .features-item p:last-child {
  margin-bottom: 0;
}

.city-contact-form .content {
  padding: 30px 0;
}
.city-contact-form .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}
.city-contact-form .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}
.city-contact-form .content p {
  font-size: 14px;
}
.city-contact-form .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}
@media (max-width: 575px) {
  .city-contact-form .php-email-form {
    padding: 20px;
  }
}
.city-contact-form .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.city-contact-form .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}
.city-contact-form .php-email-form input[type=text], .city-contact-form .php-email-form input[type=email], .city-contact-form .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.city-contact-form .php-email-form input[type=text]:focus, .city-contact-form .php-email-form input[type=email]:focus, .city-contact-form .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.city-contact-form .php-email-form input[type=text]::-moz-placeholder, .city-contact-form .php-email-form input[type=email]::-moz-placeholder, .city-contact-form .php-email-form textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.city-contact-form .php-email-form input[type=text]::placeholder, .city-contact-form .php-email-form input[type=email]::placeholder, .city-contact-form .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.city-contact-form .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}
.city-contact-form .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}/*# sourceMappingURL=main.css.map */